diff --git a/nodejs-project/nodejs-project/src/AI/ai_service.mjs b/nodejs-project/nodejs-project/src/AI/ai_service.mjs new file mode 100644 index 00000000..2285f8f7 --- /dev/null +++ b/nodejs-project/nodejs-project/src/AI/ai_service.mjs @@ -0,0 +1,89 @@ +import path from 'path'; +import fs from 'fs'; +import { fileURLToPath } from 'url'; +import express from '../server/node_modules/express/index.js'; +import cors from '../server/node_modules/cors/lib/index.js'; +import { getLlama, LlamaChatSession, LlamaCompletion } from '../server/node_modules/node-llama-cpp/dist/index.js'; + +let getConfig, buildAIContext; +try { + getConfig = (await import('../configs/config-manager.js')).getConfig; +} catch {} + +try { + const mod = await import('./buildAIContext.js'); + buildAIContext = mod.default || mod.buildContext; +} catch {} + +const app = express(); +app.use(cors()); +app.use(express.json()); + +const __filename = fileURLToPath(import.meta.url); +const __dirname = path.dirname(__filename); + +let llamaInstance, model, context, session; +let rawContext, rawCompletion; +let ready = false; +let lastError = null; + +async function initModel() { + if (model) return; + const modelPath = path.join(__dirname, 'oasis-42-1-chat.Q4_K_M.gguf'); + if (!fs.existsSync(modelPath)) { + throw new Error(`Model file not found at: ${modelPath}`); + } + llamaInstance = await getLlama({ gpu: false }); + model = await llamaInstance.loadModel({ modelPath }); + context = await model.createContext(); + session = new LlamaChatSession({ contextSequence: context.getSequence() }); + ready = true; +} + +async function initRaw() { + if (rawCompletion) return; + if (!model) await initModel(); + rawContext = await model.createContext(); + rawCompletion = new LlamaCompletion({ contextSequence: rawContext.getSequence() }); +} + +app.post('/ai', async (req, res) => { + try { + const sanitize = (s) => String(s || '').replace(/[<>"'`]/g, '').replace(/\b(ignore|disregard|forget|system|instruction|prompt)\b/gi, '[$1]').trim(); + const userInput = sanitize(String(req.body.input || '')); + if (req.body.raw === true) { + await initRaw(); + const answer = await rawCompletion.generateCompletion(userInput, { maxTokens: 120 }); + return res.json({ answer: String(answer || '').trim(), snippets: [] }); + } + await initModel(); + + let userContext = ''; + let snippets = []; + try { + userContext = await (buildAIContext ? buildAIContext(120) : ''); + if (userContext) { + userContext = userContext.split('\n').map(l => sanitize(l)).join('\n'); + snippets = userContext.split('\n').slice(0, 50); + } + } catch {} + + const config = getConfig?.() || {}; + const baseContext = 'Context: You are an AI assistant called "42" in Oasis, a distributed, encrypted and federated social network.'; + const userPrompt = [baseContext, config.ai?.prompt?.trim() || 'Provide an informative and precise response.'].join('\n'); + + const prompt = [ + userPrompt, + userContext ? `--- USER DATA START ---\n${userContext}\n--- USER DATA END ---` : '', + `--- QUERY START ---\n${userInput}\n--- QUERY END ---` + ].filter(Boolean).join('\n\n'); + const answer = await session.prompt(prompt); + res.json({ answer: String(answer || '').trim(), snippets }); + } catch {} +}); + +app.post('/ai/train', async (req, res) => { + res.json({ stored: true }); +}); + +app.listen(4001); diff --git a/nodejs-project/nodejs-project/src/AI/buildAIContext.js b/nodejs-project/nodejs-project/src/AI/buildAIContext.js new file mode 100644 index 00000000..31eab226 --- /dev/null +++ b/nodejs-project/nodejs-project/src/AI/buildAIContext.js @@ -0,0 +1,104 @@ +const pull = require('../server/node_modules/pull-stream') +const { getConfig } = require('../configs/config-manager.js') + +const logLimit = getConfig().ssbLogStream?.limit || 1000 + +let cooler = null +let ssb = null +let opening = null + +function getCooler() { + let ssbPath = null + try { ssbPath = require.resolve('../server/SSB_server.js') } catch {} + if (ssbPath && require.cache[ssbPath]) { + if (!cooler) { + const gui = require('../client/gui.js') + cooler = gui({ offline: false }) + } + return cooler + } + return null +} + +async function openSsb() { + const c = getCooler() + if (!c) return null + if (ssb && ssb.closed === false) return ssb + if (!opening) opening = c.open().then(x => (ssb = x)).finally(() => { opening = null }) + await opening + return ssb +} + +const clip = (s, n) => String(s || '').slice(0, n) +const squash = s => String(s || '').replace(/\s+/g, ' ').trim() +const compact = s => squash(clip(s, 160)) +const normalize = s => String(s || '').toLowerCase().replace(/\s+/g, ' ').replace(/[^\p{L}\p{N}\s]+/gu, '').trim() + +function fieldsForSnippet(type, c) { + if (type === 'aiExchange') return [c?.question, clip(squash(c?.answer || ''), 120)] + return [] +} + +async function publishExchange({ q, a, ctx = [], tokens = {} }) { + const s = await openSsb() + if (!s) return null + const content = { + type: 'aiExchange', + question: clip(String(q || ''), 2000), + answer: clip(String(a || ''), 5000), + ctx: ctx.slice(0, 12).map(x => clip(String(x || ''), 800)), + timestamp: Date.now() + } + return new Promise((resolve, reject) => { + s.publish(content, (err, res) => err ? reject(err) : resolve(res)) + }) +} + +async function buildContext(maxItems = 100) { + const s = await openSsb() + if (!s) return '' + return new Promise((resolve) => { + pull( + s.createLogStream({ reverse: true, limit: logLimit }), + pull.collect((err, msgs) => { + if (err || !Array.isArray(msgs)) return resolve('') + const lines = [] + for (const { value } of msgs) { + const c = value && value.content || {} + if (c.type !== 'aiExchange') continue + const d = new Date(value.timestamp || 0).toISOString().slice(0, 10) + const q = compact(c.question) + const a = compact(c.answer) + lines.push(`[${d}] (AIExchange) Q: ${q} | A: ${a}`) + if (lines.length >= maxItems) break + } + if (lines.length === 0) return resolve('') + resolve(`## AIEXCHANGE\n\n${lines.join('\n')}`) + }) + ) + }) +} + +async function getBestTrainedAnswer(question) { + const s = await openSsb() + if (!s) return null + const want = normalize(question) + return new Promise((resolve) => { + pull( + s.createLogStream({ reverse: true, limit: logLimit }), + pull.collect((err, msgs) => { + if (err || !Array.isArray(msgs)) return resolve(null) + for (const { value } of msgs) { + const c = value && value.content || {} + if (c.type !== 'aiExchange') continue + if (normalize(c.question) === want) { + return resolve({ answer: String(c.answer || '').trim(), ctx: Array.isArray(c.ctx) ? c.ctx : [] }) + } + } + resolve(null) + }) + ) + }) +} + +module.exports = { fieldsForSnippet, buildContext, clip, publishExchange, getBestTrainedAnswer } diff --git a/nodejs-project/nodejs-project/src/backend/backend.js b/nodejs-project/nodejs-project/src/backend/backend.js index 4b3f389c..4b1361e5 100644 --- a/nodejs-project/nodejs-project/src/backend/backend.js +++ b/nodejs-project/nodejs-project/src/backend/backend.js @@ -146,6 +146,95 @@ const refreshInboxCount = async (messagesOpt) => { const filtered = messages.filter(m => m && m.key && m.value && m.value.content && m.value.content.type === 'post' && m.value.content.private === true); sharedState.setInboxCount(filtered.filter(isToUser).length); }; +const getUserTribeIds = async (uid) => { + const allTribes = await tribesModel.listAll().catch(() => []); + const memberTribes = allTribes.filter(t => t.members.includes(uid)); + const idSets = await Promise.all(memberTribes.map(t => tribesModel.getChainIds(t.id).catch(() => [t.id]))); + return new Set(idSets.flat()); +}; +const makeCtxMutualCache = () => { + const cache = new Map(); + const frictionActive = viewerFilters.isFrictionActive(); + return async (otherId) => { + if (!otherId) return false; + if (cache.has(otherId)) return cache.get(otherId); + let rel; + try { rel = await friend.getRelationship(otherId); } catch (e) { rel = null; } + const basic = !!(rel && rel.following && rel.followsMe); + const mutual = frictionActive ? (basic && viewerFilters.isAccepted(otherId)) : basic; + cache.set(otherId, mutual); + return mutual; + }; +}; +const extractItemAuthor = (item) => { + if (!item) return null; + if (typeof item === 'string') return null; + if (item.value && item.value.author) return item.value.author; + if (item.author) return item.author; + if (item.feed) return item.feed; + if (item.organizer) return item.organizer; + if (item.proposer) return item.proposer; + if (item.owner) return item.owner; + if (item.id && typeof item.id === 'string' && item.id.startsWith('@')) return item.id; + return null; +}; +const extractItemTribeId = (item) => { + if (!item || typeof item !== 'object') return null; + if (item.tribeId) return item.tribeId; + if (item.value && item.value.content && item.value.content.tribeId) return item.value.content.tribeId; + if (item.content && item.content.tribeId) return item.content.tribeId; + return null; +}; +const getViewerTribeAccessSets = async (userId) => { + if (!userId) return { memberOf: new Set(), createdBy: new Set(), privateNotAccessible: new Set() }; + try { + const all = await tribesModel.listAll(); + const memberOf = new Set(); + const createdBy = new Set(); + const privateNotAccessible = new Set(); + for (const t of all) { + const isMember = Array.isArray(t.members) && t.members.includes(userId); + const isCreator = t.author === userId; + if (isCreator) { createdBy.add(t.id); memberOf.add(t.id); } + else if (isMember) memberOf.add(t.id); + const ancestryPrivate = await (async () => { + try { const eff = await tribesModel.getEffectiveStatus(t.id); return eff.isPrivate; } catch (e) { return !!t.isAnonymous; } + })(); + if (ancestryPrivate && !isMember && !isCreator) privateNotAccessible.add(t.id); + } + return { memberOf, createdBy, privateNotAccessible }; + } catch (e) { + return { memberOf: new Set(), createdBy: new Set(), privateNotAccessible: new Set() }; + } +}; +const applyListFilters = async (items, ctx, opts = {}) => { + if (!Array.isArray(items)) return items; + const cfg = getConfig(); + const viewer = getViewerId(); + const wishMutuals = cfg.wish === 'mutuals'; + let out = items; + if (!opts.skipTribeAccess) { + const { memberOf, createdBy, privateNotAccessible } = await getViewerTribeAccessSets(viewer); + out = out.filter(it => { + const tid = extractItemTribeId(it); + if (!tid) return true; + if (memberOf.has(tid) || createdBy.has(tid)) return true; + if (privateNotAccessible.has(tid)) return false; + return true; + }); + } + if (wishMutuals && !opts.skipMutual) { + const isMutual = makeCtxMutualCache(); + const filtered = []; + for (const it of out) { + const a = extractItemAuthor(it); + if (!a || a === viewer) { filtered.push(it); continue; } + if (await isMutual(a)) filtered.push(it); + } + out = filtered; + } + return out; +}; const mediaFavorites = require("./media-favorites.js"); const customStyleFile = path.join(envPaths("oasis", { suffix: "" }).config, "/custom-style.css"); let haveCustomStyle = false; @@ -241,6 +330,8 @@ const { about, blob, friend, meta, post, vote } = models({ }); const { handleBlobUpload, serveBlob, FileTooLargeError } = require('../backend/blobHandler.js'); const extractBlobId = (md) => md ? (md.match(/\((&[^)]+)\)/)?.[1] ?? null) : null; +const ssbConfig = require('../server/ssb_config'); +const tribeCrypto = require('../models/tribe_crypto')(ssbConfig.path); const exportmodeModel = require('../models/exportmode_model'); const panicmodeModel = require('../models/panicmode_model'); const cipherModel = require('../models/cipher_model'); @@ -254,31 +345,40 @@ const tasksModel = require('../models/tasks_model')({ cooler, isPublic: config.p const votesModel = require('../models/votes_model')({ cooler, isPublic: config.public }); const reportsModel = require('../models/reports_model')({ cooler, isPublic: config.public }); const transfersModel = require('../models/transfers_model')({ cooler, isPublic: config.public }); -const tagsModel = require('../models/tags_model')({ cooler, isPublic: config.public }); +const calendarsModel = require('../models/calendars_model')({ cooler, pmModel }); const cvModel = require('../models/cv_model')({ cooler, isPublic: config.public }); const inhabitantsModel = require('../models/inhabitants_model')({ cooler, isPublic: config.public }); const feedModel = require('../models/feed_model')({ cooler, isPublic: config.public }); const imagesModel = require("../models/images_model")({ cooler, isPublic: config.public }); const audiosModel = require("../models/audios_model")({ cooler, isPublic: config.public }); +const torrentsModel = require("../models/torrents_model")({ cooler, isPublic: config.public }); const videosModel = require("../models/videos_model")({ cooler, isPublic: config.public }); const documentsModel = require("../models/documents_model")({ cooler, isPublic: config.public }); const agendaModel = require("../models/agenda_model")({ cooler, isPublic: config.public }); const trendingModel = require('../models/trending_model')({ cooler, isPublic: config.public }); const statsModel = require('../models/stats_model')({ cooler, isPublic: config.public }); -const tribesModel = require('../models/tribes_model')({ cooler, isPublic: config.public }); -const tribesContentModel = require('../models/tribes_content_model')({ cooler, isPublic: config.public }); -const searchModel = require('../models/search_model')({ cooler, isPublic: config.public }); +const tribesModel = require('../models/tribes_model')({ cooler, isPublic: config.public, tribeCrypto }); +const padsModel = require('../models/pads_model')({ cooler, cipherModel, tribeCrypto, tribesModel }); +const tagsModel = require('../models/tags_model')({ cooler, isPublic: config.public, padsModel, tribesModel }); +const tribesContentModel = require('../models/tribes_content_model')({ cooler, isPublic: config.public, tribeCrypto, tribesModel }); +const searchModel = require('../models/search_model')({ cooler, isPublic: config.public, padsModel }); const activityModel = require('../models/activity_model')({ cooler, isPublic: config.public }); const pixeliaModel = require('../models/pixelia_model')({ cooler, isPublic: config.public }); -const marketModel = require('../models/market_model')({ cooler, isPublic: config.public }); +const marketModel = require('../models/market_model')({ cooler, isPublic: config.public, tribeCrypto }); const forumModel = require('../models/forum_model')({ cooler, isPublic: config.public }); const blockchainModel = require('../models/blockchain_model')({ cooler, isPublic: config.public }); -const jobsModel = require('../models/jobs_model')({ cooler, isPublic: config.public }); +const jobsModel = require('../models/jobs_model')({ cooler, isPublic: config.public, tribeCrypto }); +const shopsModel = require('../models/shops_model')({ cooler, isPublic: config.public, tribeCrypto }); +const chatsModel = require('../models/chats_model')({ cooler, tribeCrypto, tribesModel }); const projectsModel = require("../models/projects_model")({ cooler, isPublic: config.public }); +const mapsModel = require("../models/maps_model")({ cooler, isPublic: config.public }); +const gamesModel = require('../models/games_model')({ cooler }); const bankingModel = require("../models/banking_model")({ services: { cooler }, isPublic: config.public }); -const favoritesModel = require("../models/favorites_model")({services: { cooler }, audiosModel, bookmarksModel, documentsModel, imagesModel, videosModel }); +const logsModel = require("../models/logs_model")({ cooler }); +const favoritesModel = require("../models/favorites_model")({ services: { cooler }, audiosModel, bookmarksModel, documentsModel, imagesModel, videosModel, mapsModel, padsModel, chatsModel, calendarsModel, torrentsModel }); const parliamentModel = require('../models/parliament_model')({ cooler, services: { tribes: tribesModel, votes: votesModel, inhabitants: inhabitantsModel, banking: bankingModel } }); -const courtsModel = require('../models/courts_model')({ cooler, services: { votes: votesModel, inhabitants: inhabitantsModel, tribes: tribesModel, banking: bankingModel } }); +const courtsModel = require('../models/courts_model')({ cooler, services: { votes: votesModel, inhabitants: inhabitantsModel, tribes: tribesModel, banking: bankingModel }, tribeCrypto }); +const viewerFilters = require('../models/viewer_filters'); const getVoteComments = async (voteId) => { const raw = await post.topicComments(voteId); return (raw || []).filter(c => c?.value?.content?.type === 'post' && c.value.content.root === voteId) @@ -290,18 +390,33 @@ const enrichWithComments = async (items, idKey = 'id') => { }; const withCount = (item, comments) => ({ ...item, commentCount: comments.length }); +const resolveMapUrl = async (mapUrl) => { + if (!mapUrl) return null; + try { + const mapKey = decodeURIComponent(String(mapUrl).replace(/^\/maps\//, '')); + return await mapsModel.getMapById(mapKey, null); + } catch (_) { return null; } +}; const mediaResolvers = { images: id => imagesModel.resolveRootId(id), audios: id => audiosModel.resolveRootId(id), videos: id => videosModel.resolveRootId(id), documents: id => documentsModel.resolveRootId(id), - bookmarks: id => bookmarksModel.resolveRootId(id) + bookmarks: id => bookmarksModel.resolveRootId(id), + shops: id => shopsModel.resolveRootId(id), + chats: id => chatsModel.resolveRootId(id), + maps: id => mapsModel.resolveRootId(id), + pads: id => padsModel.resolveRootId(id), + calendars: id => calendarsModel.resolveRootId(id), + torrents: id => torrentsModel.resolveRootId(id) }; -const mediaModCheck = { images: 'imagesMod', audios: 'audiosMod', videos: 'videosMod', documents: 'documentsMod', bookmarks: 'bookmarksMod', market: 'marketMod', jobs: 'jobsMod', projects: 'projectsMod' }; +const mediaModCheck = { images: 'imagesMod', audios: 'audiosMod', videos: 'videosMod', documents: 'documentsMod', bookmarks: 'bookmarksMod', market: 'marketMod', jobs: 'jobsMod', projects: 'projectsMod', shops: 'shopsMod', chats: 'chatsMod', maps: 'mapsMod', pads: 'padsMod', calendars: 'calendarsMod', torrents: 'torrentsMod' }; const favAction = async (ctx, kind, action) => { if (!checkMod(ctx, mediaModCheck[kind])) { ctx.redirect('/modules'); return; } - const rootId = await mediaResolvers[kind](ctx.params.id); - await mediaFavorites[action + 'Favorite'](kind, rootId); + try { + const rootId = await mediaResolvers[kind](ctx.params.id); + if (rootId) await mediaFavorites[action + 'Favorite'](kind, rootId); + } catch (_) {} ctx.redirect(safeReturnTo(ctx, `/${kind}`, [`/${kind}`])); }; const commentAction = async (ctx, kind, idParam) => { @@ -316,8 +431,8 @@ const commentAction = async (ctx, kind, idParam) => { await post.publish({ text, root: itemId, dest: itemId }); ctx.redirect(rt); }; -const opinionModels = { images: imagesModel, audios: audiosModel, videos: videosModel, documents: documentsModel, bookmarks: bookmarksModel }; -const deleteModels = { images: imagesModel, audios: audiosModel, videos: videosModel, documents: documentsModel, bookmarks: bookmarksModel }; +const opinionModels = { images: imagesModel, audios: audiosModel, videos: videosModel, documents: documentsModel, bookmarks: bookmarksModel, torrents: torrentsModel }; +const deleteModels = { images: imagesModel, audios: audiosModel, videos: videosModel, documents: documentsModel, bookmarks: bookmarksModel, torrents: torrentsModel }; const opinionAction = async (ctx, kind, idParam) => { const modKey = mediaModCheck[kind]; if (modKey && !checkMod(ctx, modKey)) { ctx.redirect('/modules'); return; } @@ -336,17 +451,17 @@ const mediaCreateAction = async (ctx, kind) => { const modKey = mediaModCheck[kind]; if (modKey && !checkMod(ctx, modKey)) { ctx.redirect('/modules'); return; } const blob = await handleBlobUpload(ctx, kind.slice(0, -1)); - const { tags, title, description } = ctx.request.body; - await mediaCreateModels[kind][`create${kind.charAt(0).toUpperCase()}${kind.slice(1, -1)}`](blob, stripDangerousTags(tags), stripDangerousTags(title), stripDangerousTags(description)); + const { tags, title, description, mapUrl } = ctx.request.body; + await mediaCreateModels[kind][`create${kind.charAt(0).toUpperCase()}${kind.slice(1, -1)}`](blob, stripDangerousTags(tags), stripDangerousTags(title), stripDangerousTags(description), stripDangerousTags(mapUrl || "")); ctx.redirect(safeReturnTo(ctx, `/${kind}?filter=all`, [`/${kind}`])); }; const mediaUpdateAction = async (ctx, kind) => { const modKey = mediaModCheck[kind]; if (modKey && !checkMod(ctx, modKey)) { ctx.redirect('/modules'); return; } - const { tags, title, description } = ctx.request.body; + const { tags, title, description, mapUrl } = ctx.request.body; const singular = kind.slice(0, -1); const blob = ctx.request.files?.[singular] ? await handleBlobUpload(ctx, singular) : null; - await mediaCreateModels[kind][`update${kind.charAt(0).toUpperCase()}${kind.slice(1, -1)}ById`](ctx.params.id, blob, stripDangerousTags(tags), stripDangerousTags(title), stripDangerousTags(description)); + await mediaCreateModels[kind][`update${kind.charAt(0).toUpperCase()}${kind.slice(1, -1)}ById`](ctx.params.id, blob, stripDangerousTags(tags), stripDangerousTags(title), stripDangerousTags(description), stripDangerousTags(mapUrl || "")); ctx.redirect(safeReturnTo(ctx, `/${kind}?filter=mine`, [`/${kind}`])); }; const qf = (ctx, def = 'all') => ctx.query.filter || def; @@ -622,13 +737,14 @@ const resolveCommentComponents = async function (ctx) { } return { messages, myFeedId, parentMessage, contentWarning }; }; -const { authorView, previewCommentView, commentView, editProfileView, extendedView, latestView, likesView, threadView, hashtagView, mentionsView, popularView, previewView, privateView, publishCustomView, publishView, previewSubtopicView, subtopicView, imageSearchView, setLanguage, topicsView, summaryView, threadsView } = require("../views/main_views"); +const { authorView, previewCommentView, commentView, editProfileView, extendedView, latestView, likesView, threadView, hashtagView, mentionsView, popularView, previewView, privateView, publishCustomView, publishView, previewSubtopicView, subtopicView, imageSearchView, setLanguage, topicsView, summaryView, threadsView, tribeAccessDeniedView, inviteRequiredView } = require("../views/main_views"); const { activityView } = require("../views/activity_view"); const { cvView, createCVView } = require("../views/cv_view"); const { indexingView } = require("../views/indexing_view"); const { pixeliaView } = require("../views/pixelia_view"); +const { gamesView } = require("../views/games_view"); const { statsView } = require("../views/stats_view"); -const { tribesView, tribeView, renderInvitePage } = require("../views/tribes_view"); +const { tribesView, tribeView, renderInvitePage, renderGovernance: renderTribeGovernance } = require("../views/tribes_view"); const { agendaView } = require("../views/agenda_view"); const { documentView, singleDocumentView } = require("../views/document_view"); const { inhabitantsView, inhabitantsProfileView } = require("../views/inhabitants_view"); @@ -637,6 +753,7 @@ const { pmView } = require("../views/pm_view"); const { tagsView } = require("../views/tags_view"); const { videoView, singleVideoView } = require("../views/video_view"); const { audioView, singleAudioView } = require("../views/audio_view"); +const { torrentsView, singleTorrentView } = require("../views/torrents_view"); const { eventView, singleEventView } = require("../views/event_view"); const { invitesView } = require("../views/invites_view"); const { modulesView } = require("../views/modules_view"); @@ -644,7 +761,7 @@ const { reportView, singleReportView } = require("../views/report_view"); const { taskView, singleTaskView } = require("../views/task_view"); const { voteView } = require("../views/vote_view"); const { bookmarkView, singleBookmarkView } = require("../views/bookmark_view"); -const { feedView, feedCreateView } = require("../views/feed_view"); +const { feedView, feedCreateView, singleFeedView } = require("../views/feed_view"); const { legacyView } = require("../views/legacy_view"); const { opinionsView } = require("../views/opinions_view"); const { peersView } = require("../views/peers_view"); @@ -652,6 +769,7 @@ const { searchView } = require("../views/search_view"); const { transferView, singleTransferView } = require("../views/transfer_view"); const { cipherView } = require("../views/cipher_view"); const { imageView, singleImageView } = require("../views/image_view"); +const { mapsView, singleMapView } = require("../views/maps_view"); const { settingsView } = require("../views/settings_view"); const { trendingView } = require("../views/trending_view"); const { marketView, singleMarketView } = require("../views/market_view"); @@ -659,9 +777,15 @@ const { aiView } = require("../views/AI_view"); const { forumView, singleForumView } = require("../views/forum_view"); const { renderBlockchainView, renderSingleBlockView } = require("../views/blockchain_view"); const { jobsView, singleJobsView, renderJobForm } = require("../views/jobs_view"); +const { shopsView, singleShopView, singleProductView, editProductView } = require("../views/shops_view"); +const { chatsView, singleChatView, renderChatInvitePage } = require("../views/chats_view"); +const { padsView, singlePadView, renderPadInvitePage } = require("../views/pads_view"); +const { calendarsView, singleCalendarView } = require("../views/calendars_view"); const { projectsView, singleProjectView } = require("../views/projects_view") const { renderBankingView, renderSingleAllocationView, renderEpochView } = require("../views/banking_views") const { favoritesView } = require("../views/favorites_view"); +const { logsView } = require("../views/logs_view"); +const { buildLogsPdf } = require("./logsPdf"); const { parliamentView } = require("../views/parliament_view"); const { courtsView, courtsCaseView } = require('../views/courts_view'); let sharp; @@ -762,7 +886,18 @@ router if (!checkMod(ctx, 'pixeliaMod')) { ctx.redirect('/modules'); return; } const pixelArt = await pixeliaModel.listPixels(); ctx.body = pixeliaView(pixelArt); - }) + }) + .get('/games', async (ctx) => { + if (!checkMod(ctx, 'gamesMod')) { ctx.redirect('/modules'); return; } + const filter = qf(ctx, 'all'); + const hall = await gamesModel.getHallOfFame(); + ctx.body = gamesView(filter, hall); + }) + .get('/games/:name', async (ctx) => { + if (!checkMod(ctx, 'gamesMod')) { ctx.redirect('/modules'); return; } + const { gameShellView } = require('../views/games_view'); + ctx.body = gameShellView(ctx.params.name); + }) .get('/blockexplorer', async (ctx) => { const userId = getViewerId(); const query = ctx.query || {}; @@ -872,6 +1007,50 @@ router const comments = await getVoteComments(img.key); ctx.body = await singleImageView({ ...img, isFavorite: fav.has(String(img.rootId || img.key)), commentCount: comments.length }, filter, comments, { q, sort, returnTo: safeReturnTo(ctx, `/images?filter=${encodeURIComponent(filter)}`, ['/images']) }); }) + .get("/maps", async (ctx) => { + if (!checkMod(ctx, 'mapsMod')) { ctx.redirect('/modules'); return; } + const { filter = 'all', q = '', lat, lng, zoom, tribeId, title, description, markerLabel, tags, mapType } = ctx.query; + const uid = getViewerId(); + const items = await mapsModel.listAll({ filter: filter === 'favorites' ? 'all' : filter, q, viewerId: uid }); + const fav = await mediaFavorites.getFavoriteSet('maps'); + let enriched = items.map(x => ({ ...x, isFavorite: fav.has(String(x.rootId || x.key)) })); + if (filter === 'favorites') enriched = enriched.filter(x => x.isFavorite); + const myTribeIds = await getUserTribeIds(uid); + enriched = enriched.filter(x => !x.tribeId || myTribeIds.has(x.tribeId)); + enriched = await applyListFilters(enriched, ctx); + try { + ctx.body = await mapsView(enriched, filter, null, { q, lat, lng, zoom, title, description, markerLabel, tags, mapType, ...(tribeId ? { tribeId } : {}) }); + } catch (e) { + console.error("maps render:", e.message); + ctx.body = await mapsView(enriched, filter, null, { q }); + } + }) + .get("/maps/edit/:id", async (ctx) => { + if (!checkMod(ctx, 'mapsMod')) { ctx.redirect('/modules'); return; } + const mapItem = await mapsModel.getMapById(ctx.params.id, getViewerId()); + const fav = await mediaFavorites.getFavoriteSet('maps'); + ctx.body = await mapsView([{ ...mapItem, isFavorite: fav.has(String(mapItem.rootId || mapItem.key)) }], 'edit', mapItem.key, { returnTo: ctx.query.returnTo || '' }); + }) + .get("/maps/:mapId", async (ctx) => { + if (!checkMod(ctx, 'mapsMod')) { ctx.redirect('/modules'); return; } + const { mapId } = ctx.params; const { filter = 'all', q = '', zoom = '0', mkLat = '', mkLng = '', label: mkMarkerLabel = '' } = ctx.query; + const uid = getViewerId(); + const mapItem = await mapsModel.getMapById(mapId, uid); + const fav = await mediaFavorites.getFavoriteSet('maps'); + let tribeMembers = []; + let parentTribe = null; + if (mapItem.tribeId) { + try { + parentTribe = await tribesModel.getTribeById(mapItem.tribeId); + if (!parentTribe.members.includes(uid)) { ctx.body = tribeAccessDeniedView(parentTribe); return; } + tribeMembers = parentTribe.members; + } catch { ctx.redirect('/tribes'); return; } + } + if (String(mapItem.mapType || '').toUpperCase() === 'CLOSED' && mapItem.author !== uid && mapItem.tribeId) { + ctx.body = tribeAccessDeniedView(parentTribe); return; + } + ctx.body = await singleMapView({ ...mapItem, isFavorite: fav.has(String(mapItem.rootId || mapItem.key)) }, filter, { q, zoom, mkLat, mkLng, mkMarkerLabel, tribeMembers, returnTo: safeReturnTo(ctx, `/maps?filter=${encodeURIComponent(filter)}`, ['/maps']) }); + }) .get("/audios", async (ctx) => { if (!checkMod(ctx, 'audiosMod')) { ctx.redirect('/modules'); return; } const { filter = 'all', q = '', sort = 'recent' } = ctx.query; @@ -896,6 +1075,30 @@ router const comments = await getVoteComments(audio.key); ctx.body = await singleAudioView({ ...audio, isFavorite: fav.has(String(audio.rootId || audio.key)), commentCount: comments.length }, filter, comments, { q, sort, returnTo: safeReturnTo(ctx, `/audios?filter=${encodeURIComponent(filter)}`, ['/audios']) }); }) + .get("/torrents", async (ctx) => { + if (!checkMod(ctx, 'torrentsMod')) { ctx.redirect('/modules'); return; } + const { filter = 'all', q = '', sort = 'recent' } = ctx.query; + const items = await torrentsModel.listAll({ filter: filter === 'favorites' ? 'all' : filter, q, sort, viewerId: getViewerId() }); + const fav = await mediaFavorites.getFavoriteSet('torrents'); + let enriched = items.map(x => ({ ...x, isFavorite: fav.has(String(x.rootId || x.key)) })); + if (filter === 'favorites') enriched = enriched.filter(x => x.isFavorite); + enriched = await applyListFilters(enriched, ctx); + ctx.body = await torrentsView(enriched, filter, null, { q, sort }); + }) + .get("/torrents/edit/:id", async (ctx) => { + if (!checkMod(ctx, 'torrentsMod')) { ctx.redirect('/modules'); return; } + const torrent = await torrentsModel.getTorrentById(ctx.params.id, getViewerId()); + const fav = await mediaFavorites.getFavoriteSet('torrents'); + ctx.body = await torrentsView([{ ...torrent, isFavorite: fav.has(String(torrent.rootId || torrent.key)) }], 'edit', torrent.key, { returnTo: ctx.query.returnTo || '' }); + }) + .get("/torrents/:torrentId", async (ctx) => { + if (!checkMod(ctx, 'torrentsMod')) { ctx.redirect('/modules'); return; } + const { torrentId } = ctx.params; const { filter = 'all', q = '', sort = 'recent' } = ctx.query; + const torrent = await torrentsModel.getTorrentById(torrentId, getViewerId()); + const fav = await mediaFavorites.getFavoriteSet('torrents'); + const comments = await getVoteComments(torrent.key); + ctx.body = await singleTorrentView({ ...torrent, isFavorite: fav.has(String(torrent.rootId || torrent.key)), commentCount: comments.length }, filter, comments, { q, sort, returnTo: safeReturnTo(ctx, `/torrents?filter=${encodeURIComponent(filter)}`, ['/torrents']) }); + }) .get("/videos", async (ctx) => { if (!checkMod(ctx, 'videosMod')) { ctx.redirect('/modules'); return; } const { filter = 'all', q = '', sort = 'recent' } = ctx.query; @@ -1470,6 +1673,12 @@ router const tag = typeof ctx.query.tag === "string" ? ctx.query.tag : ""; ctx.body = feedCreateView({ q, tag }); }) + .get("/feed/:feedId", async (ctx) => { + const feed = await feedModel.getFeedById(ctx.params.feedId); + if (!feed) { ctx.redirect('/feed'); return; } + const comments = await feedModel.getComments(ctx.params.feedId).catch(() => []); + ctx.body = singleFeedView(feed, comments); + }) .get('/forum', async ctx => { if (!checkMod(ctx, 'forumMod')) { ctx.redirect('/modules'); return; } const filter = qf(ctx, 'recent'), forums = await forumModel.listAll(filter); @@ -1641,6 +1850,202 @@ router const comments = await getVoteComments(jobId) ctx.body = await singleJobsView(withCount(job, comments), filter, comments, params) }) + .get("/shops", async (ctx) => { + if (!checkMod(ctx, 'shopsMod')) { ctx.redirect('/modules'); return; } + const { filter = 'all', q = '', sort = 'recent' } = ctx.query; + if (filter === 'products' || filter === 'prices') { + const products = await shopsModel.listAllProducts({ filter: 'top', sort, viewerId: getViewerId() }); + const enriched = await Promise.all(products.map(async (prod) => { + try { + const shop = await shopsModel.getShopById(prod.shopId); + return { ...prod, shopTitle: shop ? shop.title : '' }; + } catch (_) { return prod; } + })); + ctx.body = await shopsView(enriched, filter, null, { q, sort }); + return; + } + const items = await shopsModel.listAll({ filter: filter === 'favorites' ? 'all' : filter, q, sort, viewerId: getViewerId() }); + const fav = await mediaFavorites.getFavoriteSet('shops'); + let enriched = items.map(x => ({ ...x, isFavorite: fav.has(String(x.rootId || x.key)) })); + if (filter === 'favorites') enriched = enriched.filter(x => x.isFavorite); + enriched = await applyListFilters(enriched, ctx); + const withFeatured = await Promise.all(enriched.map(async (shop) => { + shop.featuredProducts = await shopsModel.listFeaturedProducts(shop.rootId || shop.key); + return shop; + })); + ctx.body = await shopsView(withFeatured, filter, null, { q, sort }); + }) + .get("/shops/edit/:id", async (ctx) => { + if (!checkMod(ctx, 'shopsMod')) { ctx.redirect('/modules'); return; } + const shop = await shopsModel.getShopById(ctx.params.id); + if (!shop) { ctx.redirect('/shops'); return; } + const fav = await mediaFavorites.getFavoriteSet('shops'); + ctx.body = await shopsView([{ ...shop, isFavorite: fav.has(String(shop.rootId || shop.key)) }], 'edit', shop, { returnTo: ctx.query.returnTo || '' }); + }) + .get("/shops/product/edit/:id", async (ctx) => { + if (!checkMod(ctx, 'shopsMod')) { ctx.redirect('/modules'); return; } + const product = await shopsModel.getProductById(ctx.params.id); + if (!product) { ctx.redirect('/shops'); return; } + ctx.body = await editProductView(product, ctx.query.shopId || product.shopId, { returnTo: ctx.query.returnTo || '' }); + }) + .get("/shops/product/:productId", async (ctx) => { + if (!checkMod(ctx, 'shopsMod')) { ctx.redirect('/modules'); return; } + const product = await shopsModel.getProductById(ctx.params.productId); + if (!product) { ctx.redirect('/shops'); return; } + const shop = await shopsModel.getShopById(product.shopId); + const comments = await getVoteComments(product.key); + ctx.body = await singleProductView(withCount(product, comments), shop, comments, { shopId: product.shopId, returnTo: safeReturnTo(ctx, `/shops/${encodeURIComponent(product.shopId)}`, ['/shops']) }); + }) + .get("/shops/:shopId", async (ctx) => { + if (!checkMod(ctx, 'shopsMod')) { ctx.redirect('/modules'); return; } + const { filter = 'all', q = '', sort = 'recent' } = ctx.query; + const shop = await shopsModel.getShopById(ctx.params.shopId); + if (!shop) { ctx.redirect('/shops'); return; } + const fav = await mediaFavorites.getFavoriteSet('shops'); + const [products, comments, mapData] = await Promise.all([shopsModel.listProducts(shop.rootId || shop.key), getVoteComments(shop.key), resolveMapUrl(shop.mapUrl)]); + ctx.body = await singleShopView({ ...shop, isFavorite: fav.has(String(shop.rootId || shop.key)), commentCount: comments.length }, filter, products, comments, { q, sort, returnTo: safeReturnTo(ctx, `/shops?filter=${encodeURIComponent(filter)}`, ['/shops']), mapData }); + }) + .get("/chats", async (ctx) => { + if (!checkMod(ctx, 'chatsMod')) { ctx.redirect('/modules'); return; } + const { filter = 'all', q = '', tribeId = '' } = ctx.query; + const viewerId = getViewerId(); + if (filter === 'create') { + ctx.body = await chatsView([], 'create', null, { q, ...(tribeId ? { tribeId } : {}) }); + return; + } + const modelFilter = filter === "favorites" ? "all" : filter; + const items = await chatsModel.listAll({ filter: modelFilter, q, viewerId }); + const fav = await mediaFavorites.getFavoriteSet('chats'); + const myTribeIds = await getUserTribeIds(viewerId); + const enriched = items.filter(x => !x.tribeId || myTribeIds.has(x.tribeId)).map(x => ({ ...x, isFavorite: fav.has(String(x.rootId || x.key)) })); + let finalList = filter === "favorites" ? enriched.filter(x => x.isFavorite) : enriched; + finalList = await applyListFilters(finalList, ctx); + ctx.body = await chatsView(finalList, filter, null, { q }); + }) + .get("/chats/edit/:id", async (ctx) => { + if (!checkMod(ctx, 'chatsMod')) { ctx.redirect('/modules'); return; } + const chat = await chatsModel.getChatById(ctx.params.id); + if (!chat) { ctx.redirect('/chats'); return; } + ctx.body = await chatsView([], 'edit', chat, { returnTo: ctx.query.returnTo || '' }); + }) + .get("/chats/:chatId", async (ctx) => { + if (!checkMod(ctx, 'chatsMod')) { ctx.redirect('/modules'); return; } + const { filter = 'all', q = '' } = ctx.query; + const uid = getViewerId(); + let chat = await chatsModel.getChatById(ctx.params.chatId); + if (!chat) { ctx.redirect('/chats'); return; } + let parentTribe = null; + if (chat.tribeId) { + try { + parentTribe = await tribesModel.getTribeById(chat.tribeId); + if (!parentTribe.members.includes(uid)) { ctx.body = tribeAccessDeniedView(parentTribe); return; } + await tribesModel.processIncomingKeys().catch(() => {}); + chat = await chatsModel.getChatById(ctx.params.chatId); + } catch { ctx.redirect('/tribes'); return; } + } + if (String(chat.status || '').toUpperCase() === 'INVITE-ONLY' && chat.author !== uid) { + const invited = Array.isArray(chat.invites) && chat.invites.includes(uid); + if (!invited) { ctx.body = inviteRequiredView('chat', parentTribe); return; } + } + const fav = await mediaFavorites.getFavoriteSet('chats'); + const messages = await chatsModel.listMessages(chat.rootId || chat.key); + ctx.body = await singleChatView({ ...chat, isFavorite: fav.has(String(chat.rootId || chat.key)) }, filter, messages, { q, returnTo: safeReturnTo(ctx, `/chats?filter=${encodeURIComponent(filter)}`, ['/chats']) }); + }) + .get("/pads", async (ctx) => { + if (!checkMod(ctx, 'padsMod')) { ctx.redirect('/modules'); return; } + const filter = String(ctx.query.filter || "all").toLowerCase(); + const uid = getViewerId(); + if (filter === "edit") { + const id = ctx.query.id; + if (!id) { ctx.redirect('/pads'); return; } + const pad = await padsModel.getPadById(id); + if (!pad || pad.author !== uid) { ctx.redirect('/pads'); return; } + ctx.body = await padsView([], "edit", pad, {}); + return; + } + const q = String(ctx.query.q || "").trim(); + const tribeId = ctx.query.tribeId || ""; + const pads = await padsModel.listAll({ filter, viewerId: uid }); + const fav = await mediaFavorites.getFavoriteSet('pads'); + let enriched = pads.filter(p => !p.tribeId).map(p => ({ ...p, isFavorite: fav.has(String(p.rootId)) })); + enriched = await applyListFilters(enriched, ctx); + ctx.body = await padsView(enriched, filter, null, { q, ...(tribeId ? { tribeId } : {}) }); + }) + .get("/pads/:padId", async (ctx) => { + if (!checkMod(ctx, 'padsMod')) { ctx.redirect('/modules'); return; } + const uid = getViewerId(); + let pad = await padsModel.getPadById(ctx.params.padId); + if (!pad) { ctx.redirect('/pads'); return; } + let parentTribe = null; + if (pad.tribeId) { + try { + parentTribe = await tribesModel.getTribeById(pad.tribeId); + if (!parentTribe.members.includes(uid)) { ctx.body = tribeAccessDeniedView(parentTribe); return; } + await tribesModel.processIncomingKeys().catch(() => {}); + pad = await padsModel.getPadById(ctx.params.padId); + } catch { ctx.redirect('/tribes'); return; } + } + if (String(pad.status || '').toUpperCase() === 'INVITE-ONLY' && pad.author !== uid) { + const invited = Array.isArray(pad.invites) && pad.invites.includes(uid); + if (!invited) { ctx.body = inviteRequiredView('pad', parentTribe); return; } + } + const fav = await mediaFavorites.getFavoriteSet('pads'); + const entries = await padsModel.getEntries(pad.rootId); + const versionKey = ctx.query.version || null; + const selectedVersion = versionKey + ? (entries.find(e => e.key === versionKey) || entries[parseInt(versionKey)] || null) + : null; + const baseUrl = `${ctx.protocol}://${ctx.host}`; + ctx.body = await singlePadView({ ...pad, isFavorite: fav.has(String(pad.rootId)) }, entries, { baseUrl, selectedVersion }); + }) + .get("/calendars", async (ctx) => { + if (!checkMod(ctx, 'calendarsMod')) { ctx.redirect('/modules'); return; } + const filter = String(ctx.query.filter || "all").toLowerCase(); + const uid = getViewerId(); + if (filter === "edit") { + const id = ctx.query.id; + if (!id) { ctx.redirect('/calendars'); return; } + const cal = await calendarsModel.getCalendarById(id); + if (!cal || cal.author !== uid) { ctx.redirect('/calendars'); return; } + ctx.body = await calendarsView([], "edit", cal, {}); + return; + } + const q = String(ctx.query.q || "").trim(); + const tribeId = ctx.query.tribeId || ""; + const modelFilter = filter === "favorites" ? "all" : filter; + const calendars = await calendarsModel.listAll({ filter: modelFilter, viewerId: uid }); + const fav = await mediaFavorites.getFavoriteSet('calendars'); + const myTribeIds = await getUserTribeIds(uid); + const enriched = calendars.filter(c => !c.tribeId || myTribeIds.has(c.tribeId)).map(c => ({ ...c, isFavorite: fav.has(String(c.rootId)) })); + let finalList = filter === "favorites" ? enriched.filter(c => c.isFavorite) : enriched; + finalList = await applyListFilters(finalList, ctx); + ctx.body = await calendarsView(finalList, filter, null, { q, ...(tribeId ? { tribeId } : {}) }); + }) + .get("/calendars/:calId", async (ctx) => { + if (!checkMod(ctx, 'calendarsMod')) { ctx.redirect('/modules'); return; } + const uid = getViewerId(); + const cal = await calendarsModel.getCalendarById(ctx.params.calId); + if (!cal) { ctx.redirect('/calendars'); return; } + let parentTribe = null; + if (cal.tribeId) { + try { + parentTribe = await tribesModel.getTribeById(cal.tribeId); + if (!parentTribe.members.includes(uid)) { ctx.body = tribeAccessDeniedView(parentTribe); return; } + } catch { ctx.redirect('/tribes'); return; } + } + if (String(cal.status || '').toUpperCase() === 'CLOSED' && cal.author !== uid) { + ctx.body = tribeAccessDeniedView(parentTribe); return; + } + const dates = await calendarsModel.getDatesForCalendar(cal.rootId); + const notesByDate = {}; + for (const d of dates) { + notesByDate[d.key] = await calendarsModel.getNotesForDate(cal.rootId, d.key); + } + const fav = await mediaFavorites.getFavoriteSet('calendars'); + const month = String(ctx.query.month || "").trim() || null; + const day = String(ctx.query.day || "").trim() || null; + ctx.body = await singleCalendarView({ ...cal, isFavorite: fav.has(String(cal.rootId)) }, dates, notesByDate, { month, day }); + }) .get("/projects", async (ctx) => { if (!checkMod(ctx, 'projectsMod')) { ctx.redirect('/modules'); return; } const filter = String(ctx.query.filter || "ALL").toUpperCase() @@ -1709,6 +2114,60 @@ router const filter = qf(ctx), data = await favoritesModel.listAll({ filter }); ctx.body = await favoritesView(data.items, filter, data.counts); }) + .get("/logs", async (ctx) => { + if (!checkMod(ctx, 'logsMod')) { ctx.redirect('/modules'); return; } + const view = String(ctx.query.view || 'list'); + const aiModOn = logsModel.isAImodOn(); + if (view === 'create') { + const mode = ctx.query.mode === 'ai' ? 'ai' : 'manual'; + ctx.body = logsView([], 'today', mode, { view: 'create', aiModOn }); + return; + } + if (view === 'edit') { + const id = String(ctx.query.id || ''); + const entry = id ? await logsModel.getLogById(id) : null; + if (!entry) { ctx.redirect('/logs'); return; } + ctx.body = logsView([], 'today', entry.mode, { view: 'edit', aiModOn, entry }); + return; + } + const filter = qf(ctx, 'today'); + const q = String(ctx.query.q || '').trim().toLowerCase(); + const typeQ = String(ctx.query.type || '').trim().toLowerCase(); + const dateQ = String(ctx.query.date || '').trim(); + let items = await logsModel.listLogs(filter); + if (q) items = items.filter(i => String(i.text || '').toLowerCase().includes(q) || String(i.label || '').toLowerCase().includes(q)); + if (typeQ === 'ai' || typeQ === 'manual') items = items.filter(i => (i.mode === 'ai' ? 'ai' : 'manual') === typeQ); + if (/^\d{4}-\d{2}-\d{2}$/.test(dateQ)) { + const start = new Date(dateQ + 'T00:00:00').getTime(); + const end = start + 24 * 60 * 60 * 1000; + items = items.filter(i => i.ts >= start && i.ts < end); + } + ctx.body = logsView(items, filter, null, { view: 'list', aiModOn, search: { q: ctx.query.q || '', type: typeQ, date: dateQ } }); + }) + .get("/logs/view/:id", async (ctx) => { + if (!checkMod(ctx, 'logsMod')) { ctx.redirect('/modules'); return; } + const entry = await logsModel.getLogById(ctx.params.id); + if (!entry) { ctx.redirect('/logs'); return; } + const aiModOn = logsModel.isAImodOn(); + ctx.body = logsView([], 'today', entry.mode, { view: 'detail', aiModOn, entry }); + }) + .get("/logs/export", async (ctx) => { + if (!checkMod(ctx, 'logsMod')) { ctx.redirect('/modules'); return; } + const items = await logsModel.listLogs('always'); + const pdf = await buildLogsPdf(items, getViewerId()); + ctx.set('Content-Type', 'application/pdf'); + ctx.set('Content-Disposition', `attachment; filename="oasis-logs-${Date.now()}.pdf"`); + ctx.body = pdf; + }) + .get("/logs/export/:id", async (ctx) => { + if (!checkMod(ctx, 'logsMod')) { ctx.redirect('/modules'); return; } + const entry = await logsModel.getLogById(ctx.params.id); + if (!entry) { ctx.redirect('/logs'); return; } + const pdf = await buildLogsPdf([entry], getViewerId()); + ctx.set('Content-Type', 'application/pdf'); + ctx.set('Content-Disposition', `attachment; filename="oasis-log-${Date.now()}.pdf"`); + ctx.body = pdf; + }) .get('/cipher', async (ctx) => { if (!checkMod(ctx, 'cipherMod')) { ctx.redirect('/modules'); return; } try { @@ -1981,6 +2440,12 @@ router await pixeliaModel.paintPixel(x, y, color); ctx.redirect('/pixelia'); }) + .post('/games/submit-score', koaBody(), async (ctx) => { + if (!checkMod(ctx, 'gamesMod')) { ctx.redirect('/modules'); return; } + const { game, score } = ctx.request.body; + try { await gamesModel.submitScore(game, score); } catch (_) {} + ctx.redirect('/games?filter=scoring'); + }) .post('/pm', koaBody(), async ctx => { const { recipients, subject, text } = ctx.request.body; const recipientsArr = (recipients || '').split(',').map(s => s.trim()).filter(Boolean); @@ -2232,6 +2697,43 @@ router .post("/images/favorites/add/:id", koaBody(), async ctx => favAction(ctx, 'images', 'add')) .post("/images/favorites/remove/:id", koaBody(), async ctx => favAction(ctx, 'images', 'remove')) .post("/images/:imageId/comments", koaBodyMiddleware, async ctx => commentAction(ctx, 'images', 'imageId')) + .post("/maps/create", koaBody(multipartOpts()), async (ctx) => { + if (!checkMod(ctx, 'mapsMod')) { ctx.redirect('/modules'); return; } + const b = ctx.request.body; + const imageId = extractBlobId(await handleBlobUpload(ctx, 'image')) || ""; + const newMap = await mapsModel.createMap(b.lat, b.lng, stripDangerousTags(b.description), b.mapType, b.tags, stripDangerousTags(b.title), b.tribeId || null, stripDangerousTags(b.markerLabel), imageId); + const redir = b.tribeId ? `/tribe/${encodeURIComponent(b.tribeId)}?section=maps` : safeReturnTo(ctx, '/maps?filter=all', ['/maps']); + ctx.redirect(redir); + }) + .post("/maps/update/:id", koaBody(multipartOpts()), async (ctx) => { + if (!checkMod(ctx, 'mapsMod')) { ctx.redirect('/modules'); return; } + const b = ctx.request.body; + const imageId = ctx.request.files?.image ? extractBlobId(await handleBlobUpload(ctx, 'image')) || "" : ""; + await mapsModel.updateMapById(ctx.params.id, b.lat, b.lng, stripDangerousTags(b.description), b.mapType, b.tags, stripDangerousTags(b.title), imageId || undefined); + ctx.redirect(safeReturnTo(ctx, '/maps?filter=mine', ['/maps'])); + }) + .post("/maps/delete/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'mapsMod')) { ctx.redirect('/modules'); return; } + await mapsModel.deleteMapById(ctx.params.id); + ctx.redirect(safeReturnTo(ctx, '/maps?filter=mine', ['/maps'])); + }) + .post("/maps/favorites/add/:id", koaBody(), async ctx => favAction(ctx, 'maps', 'add')) + .post("/maps/favorites/remove/:id", koaBody(), async ctx => favAction(ctx, 'maps', 'remove')) + .post("/maps/:mapId/marker", koaBody(multipartOpts()), async (ctx) => { + if (!checkMod(ctx, 'mapsMod')) { ctx.redirect('/modules'); return; } + const uid = getViewerId(); + const mapItem = await mapsModel.getMapById(ctx.params.mapId, uid); + if (mapItem.tribeId) { + try { + const t = await tribesModel.getTribeById(mapItem.tribeId); + if (!t.members.includes(uid)) { ctx.status = 403; ctx.body = "Forbidden"; return; } + } catch { ctx.status = 403; ctx.body = "Forbidden"; return; } + } + const b = ctx.request.body; + const imageBlobId = extractBlobId(await handleBlobUpload(ctx, 'image')) || ""; + await mapsModel.addMarker(ctx.params.mapId, b.mkLat, b.mkLng, stripDangerousTags(b.label), imageBlobId); + ctx.redirect(safeReturnTo(ctx, `/maps/${encodeURIComponent(ctx.params.mapId)}`, ['/maps'])); + }) .post("/audios/create", koaBody(multipartOpts()), async ctx => mediaCreateAction(ctx, 'audios')) .post("/audios/update/:id", koaBody(multipartOpts()), async ctx => mediaUpdateAction(ctx, 'audios')) .post("/audios/delete/:id", koaBody(), async ctx => deleteAction(ctx, 'audios')) @@ -2239,6 +2741,26 @@ router .post("/audios/favorites/add/:id", koaBody(), async ctx => favAction(ctx, 'audios', 'add')) .post("/audios/favorites/remove/:id", koaBody(), async ctx => favAction(ctx, 'audios', 'remove')) .post("/audios/:audioId/comments", koaBodyMiddleware, async ctx => commentAction(ctx, 'audios', 'audioId')) + .post("/torrents/create", koaBody(multipartOpts()), async (ctx) => { + if (!checkMod(ctx, 'torrentsMod')) { ctx.redirect('/modules'); return; } + const blob = await handleBlobUpload(ctx, 'torrent'); + const fileSize = ctx.request.files?.torrent?.size || 0; + const { tags, title, description } = ctx.request.body; + await torrentsModel.createTorrent(blob, stripDangerousTags(tags), stripDangerousTags(title), stripDangerousTags(description), fileSize); + ctx.redirect(safeReturnTo(ctx, '/torrents?filter=all', ['/torrents'])); + }) + .post("/torrents/update/:id", koaBody(multipartOpts()), async (ctx) => { + if (!checkMod(ctx, 'torrentsMod')) { ctx.redirect('/modules'); return; } + const { tags, title, description } = ctx.request.body; + const blob = ctx.request.files?.torrent ? await handleBlobUpload(ctx, 'torrent') : null; + await torrentsModel.updateTorrentById(ctx.params.id, blob, stripDangerousTags(tags), stripDangerousTags(title), stripDangerousTags(description)); + ctx.redirect(safeReturnTo(ctx, '/torrents?filter=mine', ['/torrents'])); + }) + .post("/torrents/delete/:id", koaBody(), async ctx => deleteAction(ctx, 'torrents')) + .post("/torrents/opinions/:torrentId/:category", koaBody(), async ctx => opinionAction(ctx, 'torrents', 'torrentId')) + .post("/torrents/favorites/add/:id", koaBody(), async ctx => favAction(ctx, 'torrents', 'add')) + .post("/torrents/favorites/remove/:id", koaBody(), async ctx => favAction(ctx, 'torrents', 'remove')) + .post("/torrents/:torrentId/comments", koaBodyMiddleware, async ctx => commentAction(ctx, 'torrents', 'torrentId')) .post("/videos/create", koaBody(multipartOpts()), async ctx => mediaCreateAction(ctx, 'videos')) .post("/videos/update/:id", koaBody(multipartOpts()), async ctx => mediaUpdateAction(ctx, 'videos')) .post("/videos/delete/:id", koaBody(), async ctx => deleteAction(ctx, 'videos')) @@ -2849,6 +3371,362 @@ router ctx.redirect(safeReturnTo(ctx, '/jobs', ['/jobs'])); }) .post('/jobs/:jobId/comments', koaBodyMiddleware, async ctx => commentAction(ctx, 'jobs', 'jobId')) + .post("/shops/create", koaBody(multipartOpts()), async (ctx) => { + if (!checkMod(ctx, 'shopsMod')) { ctx.redirect('/modules'); return; } + const b = ctx.request.body, imageBlob = ctx.request.files?.image ? await handleBlobUpload(ctx, 'image') : null; + await shopsModel.createShop(stripDangerousTags(b.title), stripDangerousTags(b.shortDescription), stripDangerousTags(b.description), imageBlob, stripDangerousTags(b.url), stripDangerousTags(b.location), b.tags, b.visibility, stripDangerousTags(b.mapUrl)); + ctx.redirect(safeReturnTo(ctx, '/shops?filter=mine', ['/shops'])); + }) + .post("/shops/update/:id", koaBody(multipartOpts()), async (ctx) => { + if (!checkMod(ctx, 'shopsMod')) { ctx.redirect('/modules'); return; } + const b = ctx.request.body, imageBlob = ctx.request.files?.image ? await handleBlobUpload(ctx, 'image') : undefined; + const patch = { title: stripDangerousTags(b.title), shortDescription: stripDangerousTags(b.shortDescription), description: stripDangerousTags(b.description), url: stripDangerousTags(b.url), location: stripDangerousTags(b.location), tags: b.tags, visibility: b.visibility, mapUrl: stripDangerousTags(b.mapUrl) }; + if (imageBlob !== undefined) patch.image = imageBlob; + await shopsModel.updateShopById(ctx.params.id, patch); + ctx.redirect(safeReturnTo(ctx, '/shops?filter=mine', ['/shops'])); + }) + .post("/shops/delete/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'shopsMod')) { ctx.redirect('/modules'); return; } + await shopsModel.deleteShopById(ctx.params.id); + ctx.redirect(safeReturnTo(ctx, '/shops?filter=mine', ['/shops'])); + }) + .post("/shops/visibility/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'shopsMod')) { ctx.redirect('/modules'); return; } + await shopsModel.updateShopById(ctx.params.id, { visibility: ctx.request.body.visibility }); + ctx.redirect(safeReturnTo(ctx, `/shops/${encodeURIComponent(ctx.params.id)}`, ['/shops'])); + }) + .post("/shops/favorites/add/:id", koaBody(), async ctx => favAction(ctx, 'shops', 'add')) + .post("/shops/favorites/remove/:id", koaBody(), async ctx => favAction(ctx, 'shops', 'remove')) + .post("/shops/opinions/:shopId/:category", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'shopsMod')) { ctx.redirect('/modules'); return; } + await shopsModel.createOpinion(ctx.params.shopId, ctx.params.category); + ctx.redirect(safeReturnTo(ctx, `/shops/${encodeURIComponent(ctx.params.shopId)}`, ['/shops'])); + }) + .post("/shops/product/create", koaBody(multipartOpts()), async (ctx) => { + if (!checkMod(ctx, 'shopsMod')) { ctx.redirect('/modules'); return; } + const b = ctx.request.body, imageBlob = ctx.request.files?.image ? await handleBlobUpload(ctx, 'image') : null; + const productMsg = await shopsModel.createProduct(b.shopId, stripDangerousTags(b.title), stripDangerousTags(b.description), imageBlob, b.price, b.stock, [].concat(b.featured).includes("1")); + if ([].concat(b.sendToMarket).includes("1") && checkMod(ctx, 'marketMod')) { + const shop = await shopsModel.getShopById(b.shopId); + const deadline = new Date(Date.now() + 365 * 24 * 60 * 60 * 1000).toISOString(); + const stock = parseInt(String(b.stock || '0'), 10) || 1; + try { + await marketModel.createItem('exchange', stripDangerousTags(b.title), stripDangerousTags(b.description), imageBlob, b.price, [], 'NEW', deadline, false, stock, '', { shopProductId: productMsg.key, shopId: b.shopId, shopTitle: shop ? shop.title : '' }); + } catch (e) { console.error("market-from-shop:", e.message) } + } + ctx.redirect(safeReturnTo(ctx, `/shops/${encodeURIComponent(b.shopId)}`, ['/shops'])); + }) + .post("/shops/product/update/:id", koaBody(multipartOpts()), async (ctx) => { + if (!checkMod(ctx, 'shopsMod')) { ctx.redirect('/modules'); return; } + const b = ctx.request.body, imageBlob = ctx.request.files?.image ? await handleBlobUpload(ctx, 'image') : undefined; + const patch = { title: stripDangerousTags(b.title), description: stripDangerousTags(b.description), price: b.price, stock: b.stock, featured: [].concat(b.featured).includes("1") }; + if (imageBlob !== undefined) patch.image = imageBlob; + await shopsModel.updateProductById(ctx.params.id, patch); + ctx.redirect(safeReturnTo(ctx, `/shops/${encodeURIComponent(b.shopId || '')}`, ['/shops'])); + }) + .post("/shops/product/delete/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'shopsMod')) { ctx.redirect('/modules'); return; } + const product = await shopsModel.getProductById(ctx.params.id); + await shopsModel.deleteProductById(ctx.params.id); + ctx.redirect(safeReturnTo(ctx, `/shops/${encodeURIComponent(product?.shopId || '')}`, ['/shops'])); + }) + .post("/shops/product/buy/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'shopsMod')) { ctx.redirect('/modules'); return; } + await shopsModel.buyProduct(ctx.params.id); + if (checkMod(ctx, 'marketMod')) { + try { const mi = await marketModel.getItemByShopProductId(ctx.params.id); if (mi) await marketModel.decrementStock(mi.id); } catch (_) {} + } + ctx.redirect(safeReturnTo(ctx, `/shops/product/${encodeURIComponent(ctx.params.id)}`, ['/shops'])); + }) + .post("/shops/product/opinions/:productId/:category", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'shopsMod')) { ctx.redirect('/modules'); return; } + await shopsModel.createOpinion(ctx.params.productId, ctx.params.category); + ctx.redirect(safeReturnTo(ctx, `/shops/product/${encodeURIComponent(ctx.params.productId)}`, ['/shops'])); + }) + .post("/shops/:shopId/comments", koaBodyMiddleware, async ctx => commentAction(ctx, 'shops', 'shopId')) + .post("/chats/create", koaBody(multipartOpts()), async (ctx) => { + if (!checkMod(ctx, 'chatsMod')) { ctx.redirect('/modules'); return; } + const b = ctx.request.body; + const tribeId = b.tribeId || null; + const imageBlob = ctx.request.files?.image ? extractBlobId(await handleBlobUpload(ctx, 'image')) : null; + if (tribeId) await tribesModel.ensureTribeKeyDistribution(tribeId).catch(() => {}); + await chatsModel.createChat(stripDangerousTags(b.title), stripDangerousTags(b.description), imageBlob, b.category, b.status, b.tags, tribeId); + ctx.redirect(tribeId ? `/tribe/${encodeURIComponent(tribeId)}?section=chats` : safeReturnTo(ctx, '/chats?filter=mine', ['/chats'])); + }) + .post("/chats/update/:id", koaBody(multipartOpts()), async (ctx) => { + if (!checkMod(ctx, 'chatsMod')) { ctx.redirect('/modules'); return; } + const b = ctx.request.body; + const imageBlob = ctx.request.files?.image ? extractBlobId(await handleBlobUpload(ctx, 'image')) : undefined; + const patch = { title: stripDangerousTags(b.title), description: stripDangerousTags(b.description), category: b.category, status: b.status, tags: b.tags }; + if (imageBlob !== undefined) patch.image = imageBlob; + await chatsModel.updateChatById(ctx.params.id, patch); + ctx.redirect(safeReturnTo(ctx, '/chats?filter=mine', ['/chats'])); + }) + .post("/chats/delete/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'chatsMod')) { ctx.redirect('/modules'); return; } + await chatsModel.deleteChatById(ctx.params.id); + ctx.redirect(safeReturnTo(ctx, '/chats?filter=mine', ['/chats'])); + }) + .post("/chats/close/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'chatsMod')) { ctx.redirect('/modules'); return; } + await chatsModel.closeChatById(ctx.params.id); + ctx.redirect(safeReturnTo(ctx, `/chats/${encodeURIComponent(ctx.params.id)}`, ['/chats'])); + }) + .post("/chats/generate-invite", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'chatsMod')) { ctx.redirect('/modules'); return; } + const chatId = ctx.request.body.chatId; + const code = await chatsModel.generateInvite(chatId); + ctx.body = renderChatInvitePage(code); + }) + .post("/chats/join-code", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'chatsMod')) { ctx.redirect('/modules'); return; } + const code = String(ctx.request.body.code || '').trim(); + try { + const chatKey = await chatsModel.joinByInvite(code); + ctx.redirect(safeReturnTo(ctx, `/chats/${encodeURIComponent(chatKey)}`, ['/chats'])); + } catch (_) { + ctx.redirect(safeReturnTo(ctx, '/chats', ['/chats'])); + } + }) + .post("/chats/join/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'chatsMod')) { ctx.redirect('/modules'); return; } + try { + await chatsModel.joinChat(ctx.params.id); + } catch (_) {} + ctx.redirect(safeReturnTo(ctx, `/chats/${encodeURIComponent(ctx.params.id)}`, ['/chats'])); + }) + .post("/chats/leave/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'chatsMod')) { ctx.redirect('/modules'); return; } + try { + await chatsModel.leaveChat(ctx.params.id); + } catch (_) {} + ctx.redirect(safeReturnTo(ctx, '/chats?filter=all', ['/chats'])); + }) + .post("/chats/favorites/add/:id", koaBody(), async ctx => favAction(ctx, 'chats', 'add')) + .post("/chats/favorites/remove/:id", koaBody(), async ctx => favAction(ctx, 'chats', 'remove')) + .post("/chats/:chatId/message", koaBody({ multipart: true }), async (ctx) => { + if (!checkMod(ctx, 'chatsMod')) { ctx.redirect('/modules'); return; } + const uid = getViewerId(); + const chat = await chatsModel.getChatById(ctx.params.chatId); + if (chat && chat.tribeId) { + try { + const t = await tribesModel.getTribeById(chat.tribeId); + if (!t.members.includes(uid)) { ctx.status = 403; ctx.body = "Forbidden"; return; } + } catch { ctx.status = 403; ctx.body = "Forbidden"; return; } + } + const text = stripDangerousTags(String(ctx.request.body.text || '').trim()); + const imageBlob = ctx.request.files?.image ? extractBlobId(await handleBlobUpload(ctx, 'image')) : null; + if (!text && !imageBlob) { ctx.redirect(`/chats/${encodeURIComponent(ctx.params.chatId)}`); return; } + await chatsModel.sendMessage(ctx.params.chatId, text, imageBlob); + ctx.redirect(safeReturnTo(ctx, `/chats/${encodeURIComponent(ctx.params.chatId)}`, ['/chats'])); + }) + .post("/pads/create", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'padsMod')) { ctx.redirect('/modules'); return; } + const b = ctx.request.body || {}; + const tribeId = b.tribeId || null; + if (tribeId) await tribesModel.ensureTribeKeyDistribution(tribeId).catch(() => {}); + const msg = await padsModel.createPad( + stripDangerousTags(b.title || ""), + b.status || "OPEN", + b.deadline || "", + b.tags || "", + tribeId + ); + ctx.redirect(tribeId ? `/tribe/${encodeURIComponent(tribeId)}?section=pads` : `/pads/${encodeURIComponent(msg.key)}`); + }) + .post("/pads/update/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'padsMod')) { ctx.redirect('/modules'); return; } + const b = ctx.request.body || {}; + await padsModel.updatePadById(ctx.params.id, { + title: stripDangerousTags(b.title || ""), + status: b.status || "OPEN", + deadline: b.deadline || "", + tags: b.tags || "" + }); + ctx.redirect(`/pads/${encodeURIComponent(ctx.params.id)}`); + }) + .post("/pads/close/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'padsMod')) { ctx.redirect('/modules'); return; } + try { await padsModel.closePadById(ctx.params.id); } catch (_) {} + ctx.redirect(`/pads/${encodeURIComponent(ctx.params.id)}`); + }) + .post("/pads/delete/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'padsMod')) { ctx.redirect('/modules'); return; } + await padsModel.deletePadById(ctx.params.id); + ctx.redirect('/pads'); + }) + .post("/pads/generate-invite/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'padsMod')) { ctx.redirect('/modules'); return; } + const code = await padsModel.generateInvite(ctx.params.id); + ctx.body = renderPadInvitePage(code); + }) + .post("/pads/join-code", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'padsMod')) { ctx.redirect('/modules'); return; } + const code = String((ctx.request.body || {}).code || "").trim(); + try { + const padId = await padsModel.joinByInvite(code); + ctx.redirect(`/pads/${encodeURIComponent(padId)}`); + } catch (_) { + ctx.redirect('/pads'); + } + }) + .post("/pads/join/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'padsMod')) { ctx.redirect('/modules'); return; } + const uid = getViewerId(); + await padsModel.addMemberToPad(ctx.params.id, uid); + ctx.redirect(`/pads/${encodeURIComponent(ctx.params.id)}`); + }) + .post("/pads/entry/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'padsMod')) { ctx.redirect('/modules'); return; } + const uid = getViewerId(); + const pad = await padsModel.getPadById(ctx.params.id); + if (pad && pad.tribeId) { + try { + const t = await tribesModel.getTribeById(pad.tribeId); + if (!t.members.includes(uid)) { ctx.status = 403; ctx.body = "Forbidden"; return; } + } catch { ctx.status = 403; ctx.body = "Forbidden"; return; } + } + const b = ctx.request.body || {}; + const text = stripDangerousTags(String(b.text || "").trim()); + if (text) await padsModel.addEntry(ctx.params.id, text); + ctx.redirect(`/pads/${encodeURIComponent(ctx.params.id)}`); + }) + .post("/pads/favorites/add/:id", koaBody(), async ctx => favAction(ctx, 'pads', 'add')) + .post("/pads/favorites/remove/:id", koaBody(), async ctx => favAction(ctx, 'pads', 'remove')) + .post("/calendars/create", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'calendarsMod')) { ctx.redirect('/modules'); return; } + const b = ctx.request.body || {}; + const tribeId = b.tribeId || null; + const intervalWeekly = [].concat(b.intervalWeekly).includes("1"); + const intervalMonthly = [].concat(b.intervalMonthly).includes("1"); + const intervalYearly = [].concat(b.intervalYearly).includes("1"); + try { + const msg = await calendarsModel.createCalendar({ + title: stripDangerousTags(b.title || ""), + status: b.status || "OPEN", + deadline: b.deadline || "", + tags: b.tags || "", + firstDate: b.firstDate || "", + firstDateLabel: stripDangerousTags(b.firstDateLabel || ""), + firstNote: stripDangerousTags(b.firstNote || ""), + intervalWeekly, intervalMonthly, intervalYearly, + tribeId + }); + ctx.redirect(tribeId ? `/tribe/${encodeURIComponent(tribeId)}?section=calendars` : `/calendars/${encodeURIComponent(msg.key)}`); + } catch (e) { + console.error("[calendars/create]", e && e.message ? e.message : e) + ctx.redirect(tribeId ? `/tribe/${encodeURIComponent(tribeId)}?section=calendars` : '/calendars'); + } + }) + .post("/calendars/update/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'calendarsMod')) { ctx.redirect('/modules'); return; } + const b = ctx.request.body || {}; + try { + await calendarsModel.updateCalendarById(ctx.params.id, { + title: stripDangerousTags(b.title || ""), + status: b.status || "OPEN", + deadline: b.deadline || "", + tags: b.tags || "" + }); + } catch (_) {} + ctx.redirect(`/calendars/${encodeURIComponent(ctx.params.id)}`); + }) + .post("/calendars/delete/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'calendarsMod')) { ctx.redirect('/modules'); return; } + try { await calendarsModel.deleteCalendarById(ctx.params.id); } catch (_) {} + ctx.redirect('/calendars'); + }) + .post("/calendars/join/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'calendarsMod')) { ctx.redirect('/modules'); return; } + try { await calendarsModel.joinCalendar(ctx.params.id); } catch (_) {} + ctx.redirect(`/calendars/${encodeURIComponent(ctx.params.id)}`); + }) + .post("/calendars/leave/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'calendarsMod')) { ctx.redirect('/modules'); return; } + try { await calendarsModel.leaveCalendar(ctx.params.id); } catch (_) {} + ctx.redirect(`/calendars/${encodeURIComponent(ctx.params.id)}`); + }) + .post("/calendars/add-date/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'calendarsMod')) { ctx.redirect('/modules'); return; } + const uid = getViewerId(); + const calForGate = await calendarsModel.getCalendarById(ctx.params.id).catch(() => null); + if (calForGate && calForGate.tribeId) { + try { + const t = await tribesModel.getTribeById(calForGate.tribeId); + if (!t.members.includes(uid)) { ctx.status = 403; ctx.body = "Forbidden"; return; } + } catch { ctx.status = 403; ctx.body = "Forbidden"; return; } + } + const b = ctx.request.body || {}; + const intervalWeekly = [].concat(b.intervalWeekly).includes("1"); + const intervalMonthly = [].concat(b.intervalMonthly).includes("1"); + const intervalYearly = [].concat(b.intervalYearly).includes("1"); + try { + const dateMsgs = await calendarsModel.addDate(ctx.params.id, b.date || "", stripDangerousTags(b.label || ""), intervalWeekly, intervalMonthly, intervalYearly, b.intervalDeadline || ""); + const noteText = stripDangerousTags(String(b.text || "").trim()); + if (noteText && Array.isArray(dateMsgs)) { + for (const msg of dateMsgs) { + if (msg && msg.key) { + try { await calendarsModel.addNote(ctx.params.id, msg.key, noteText); } catch (_) {} + } + } + } + } catch (e) { + console.error("[calendars/add-date]", e && e.message ? e.message : e) + } + ctx.redirect(`/calendars/${encodeURIComponent(ctx.params.id)}`); + }) + .post("/calendars/add-note/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'calendarsMod')) { ctx.redirect('/modules'); return; } + const uid = getViewerId(); + const calForGate = await calendarsModel.getCalendarById(ctx.params.id).catch(() => null); + if (calForGate && calForGate.tribeId) { + try { + const t = await tribesModel.getTribeById(calForGate.tribeId); + if (!t.members.includes(uid)) { ctx.status = 403; ctx.body = "Forbidden"; return; } + } catch { ctx.status = 403; ctx.body = "Forbidden"; return; } + } + const b = ctx.request.body || {}; + const text = stripDangerousTags(String(b.text || "").trim()); + if (text) { + try { await calendarsModel.addNote(ctx.params.id, b.dateId || "", text); } catch (_) {} + } + ctx.redirect(`/calendars/${encodeURIComponent(ctx.params.id)}`); + }) + .post("/calendars/delete-note/:noteId", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'calendarsMod')) { ctx.redirect('/modules'); return; } + const calendarId = (ctx.request.body || {}).calendarId || ""; + try { await calendarsModel.deleteNote(ctx.params.noteId); } catch (_) {} + ctx.redirect(calendarId ? `/calendars/${encodeURIComponent(calendarId)}` : '/calendars'); + }) + .post("/calendars/delete-date/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'calendarsMod')) { ctx.redirect('/modules'); return; } + const calendarId = (ctx.request.body || {}).calendarId || ""; + try { await calendarsModel.deleteDate(ctx.params.id, calendarId); } catch (_) {} + ctx.redirect(calendarId ? `/calendars/${encodeURIComponent(calendarId)}` : '/calendars'); + }) + .post("/calendars/favorites/add/:id", koaBody(), async ctx => favAction(ctx, 'calendars', 'add')) + .post("/calendars/favorites/remove/:id", koaBody(), async ctx => favAction(ctx, 'calendars', 'remove')) + .post("/logs/create", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'logsMod')) { ctx.redirect('/modules'); return; } + const b = ctx.request.body || {}; + const mode = b.mode === 'ai' ? 'ai' : 'manual'; + try { + if (mode === 'ai') { startAI(); await logsModel.createAI(); } + else await logsModel.createManual(b.label || '', b.text || ''); + } catch (_) {} + ctx.redirect('/logs'); + }) + .post("/logs/edit/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'logsMod')) { ctx.redirect('/modules'); return; } + const b = ctx.request.body || {}; + try { await logsModel.updateLog(ctx.params.id, { label: b.label || '', text: b.text || '' }); } catch (_) {} + ctx.redirect('/logs'); + }) + .post("/logs/delete/:id", koaBody(), async (ctx) => { + if (!checkMod(ctx, 'logsMod')) { ctx.redirect('/modules'); return; } + try { await logsModel.deleteLog(ctx.params.id); } catch (_) {} + ctx.redirect('/logs'); + }) .post("/projects/create", koaBody(multipartOpts()), async (ctx) => { if (!checkMod(ctx, 'projectsMod')) { ctx.redirect('/modules'); return; } const b = ctx.request.body || {}, image = ctx.request.files?.image ? await handleBlobUpload(ctx, "image") : null; diff --git a/nodejs-project/nodejs-project/src/backend/logsPdf.js b/nodejs-project/nodejs-project/src/backend/logsPdf.js new file mode 100644 index 00000000..ca25ec3d --- /dev/null +++ b/nodejs-project/nodejs-project/src/backend/logsPdf.js @@ -0,0 +1,206 @@ +const fs = require('fs'); +const path = require('path'); + +const LOGO_PATH = path.join(__dirname, '..', 'client', 'assets', 'images', 'snh-oasis.jpg'); + +const escapePdf = s => String(s || '').replace(/\\/g, '\\\\').replace(/\(/g, '\\(').replace(/\)/g, '\\)'); + +const linkPattern = /(?:https?:\/\/[^\s]+|www\.[^\s]+|@[A-Za-z0-9+/=.\-]+\.ed25519|[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,})/g; + +const splitSegments = (line) => { + const segs = []; + let last = 0; + const re = new RegExp(linkPattern.source, 'g'); + let m; + while ((m = re.exec(line)) !== null) { + if (m.index > last) segs.push({ t: line.slice(last, m.index), l: false }); + segs.push({ t: m[0], l: true }); + last = m.index + m[0].length; + } + if (last < line.length) segs.push({ t: line.slice(last), l: false }); + return segs; +}; + +const wrap = (txt, max = 82) => { + const out = []; + for (const raw of String(txt || '').split('\n')) { + let line = raw; + while (line.length > max) { + let cut = line.lastIndexOf(' ', max); + if (cut <= 0) cut = max; + out.push(line.slice(0, cut)); + line = line.slice(cut).replace(/^\s+/, ''); + } + out.push(line); + } + return out; +}; + +const readJpegDims = (buf) => { + let i = 2; + while (i < buf.length) { + if (buf[i] !== 0xFF) return null; + const marker = buf[i + 1]; + if (marker === 0xD8 || marker === 0xD9) { i += 2; continue; } + const len = buf.readUInt16BE(i + 2); + if (marker >= 0xC0 && marker <= 0xCF && marker !== 0xC4 && marker !== 0xC8 && marker !== 0xCC) { + const h = buf.readUInt16BE(i + 5); + const w = buf.readUInt16BE(i + 7); + const c = buf[i + 9]; + return { w, h, c }; + } + i += 2 + len; + } + return null; +}; + +function buildLogsPdf(entries, oasisId, opts = {}) { + const pageW = 612; + const pageH = 792; + const marginX = 50; + const headerH = 90; + const footerH = 40; + const bodyTop = pageH - headerH - 22; + const bodyBottom = footerH + 10; + const lineH = 12; + const maxBodyLines = Math.floor((bodyTop - bodyBottom) / lineH); + + let logoBuf = null; + let logoDims = null; + try { + logoBuf = fs.readFileSync(LOGO_PATH); + logoDims = readJpegDims(logoBuf); + } catch (_) {} + + const allLines = []; + for (const e of entries) { + const ts = new Date(e.ts); + const when = ts.toISOString().replace('T', ' ').slice(0, 19); + allLines.push({ kind: 'header', text: `[${when}]:` }); + allLines.push({ kind: 'blank', text: '' }); + for (const l of wrap(e.text, 82)) allLines.push({ kind: 'text', text: l }); + allLines.push({ kind: 'blank', text: '' }); + } + if (!allLines.length) allLines.push({ kind: 'text', text: '(no entries)' }); + + const pages = []; + for (let i = 0; i < allLines.length; i += maxBodyLines) { + pages.push(allLines.slice(i, i + maxBodyLines)); + } + if (!pages.length) pages.push([{ kind: 'text', text: '(no entries)' }]); + + const objects = []; + const addObj = body => { objects.push(body); return objects.length; }; + + const catalogId = addObj(null); + const pagesId = addObj(null); + const fontId = addObj('<< /Type /Font /Subtype /Type1 /BaseFont /Courier >>'); + const fontBoldId = addObj('<< /Type /Font /Subtype /Type1 /BaseFont /Courier-Bold >>'); + + let logoXObjId = null; + if (logoBuf && logoDims) { + const colorSpace = logoDims.c === 1 ? '/DeviceGray' : '/DeviceRGB'; + const dict = `<< /Type /XObject /Subtype /Image /Width ${logoDims.w} /Height ${logoDims.h} /ColorSpace ${colorSpace} /BitsPerComponent 8 /Filter /DCTDecode /Length ${logoBuf.length} >>`; + logoXObjId = addObj({ dict, stream: logoBuf }); + } + + const exportDate = new Date().toISOString().replace('T', ' ').slice(0, 19) + ' UTC'; + const footerLeft = `Generated: ${exportDate}`; + + const pageIds = []; + const contentIds = []; + + pages.forEach((pg, pgIdx) => { + const parts = []; + + if (logoXObjId) { + const logoH = 60; + const logoW = Math.round((logoDims.w / logoDims.h) * logoH); + const logoX = marginX; + const logoY = pageH - headerH + 15; + parts.push(`q\n${logoW} 0 0 ${logoH} ${logoX} ${logoY} cm\n/Logo Do\nQ`); + } + + const titleX = (logoXObjId ? marginX + 80 : marginX); + const titleY = pageH - 45; + parts.push(`BT\n/F2 16 Tf\n${titleX} ${titleY} Td\n(${escapePdf('OASIS - Experience logs')}) Tj\nET`); + const inhabitantPrefix = 'Inhabitant: '; + const inhabitantPrefixW = inhabitantPrefix.length * 5.4; + parts.push(`BT\n/F1 9 Tf\n${titleX} ${titleY - 16} Td\n(${escapePdf(inhabitantPrefix)}) Tj\nET`); + parts.push(`BT\n/F2 9 Tf\n${titleX + inhabitantPrefixW} ${titleY - 16} Td\n(${escapePdf(String(oasisId || ''))}) Tj\nET`); + + parts.push(`q\n0.6 0.6 0.6 RG\n0.5 w\n${marginX} ${pageH - headerH} m\n${pageW - marginX} ${pageH - headerH} l\nS\nQ`); + + let y = bodyTop; + const charW = 6; + for (const ln of pg) { + if (ln.kind === 'header') { + parts.push(`BT\n/F2 10 Tf\n1 0.647 0 rg\n${marginX} ${y} Td\n(${escapePdf(ln.text)}) Tj\nET`); + } else if (ln.text) { + const segs = splitSegments(ln.text); + let x = marginX; + for (const s of segs) { + if (!s.t) continue; + const color = s.l ? '0 0 1 rg' : '0 0 0 rg'; + parts.push(`BT\n/F1 10 Tf\n${color}\n${x} ${y} Td\n(${escapePdf(s.t)}) Tj\nET`); + x += s.t.length * charW; + } + } + y -= lineH; + } + + parts.push(`q\n0.6 0.6 0.6 RG\n0.5 w\n${marginX} ${footerH + 5} m\n${pageW - marginX} ${footerH + 5} l\nS\nQ`); + parts.push(`BT\n/F1 8 Tf\n${marginX} ${footerH - 10} Td\n(${escapePdf(footerLeft)}) Tj\nET`); + const pageLabel = `Page ${pgIdx + 1} of ${pages.length}`; + const pageLabelW = pageLabel.length * 4.8; + parts.push(`BT\n/F1 8 Tf\n${pageW - marginX - pageLabelW} ${footerH - 10} Td\n(${escapePdf(pageLabel)}) Tj\nET`); + + const content = parts.join('\n'); + const stream = `<< /Length ${Buffer.byteLength(content)} >>\nstream\n${content}\nendstream`; + const cid = addObj(stream); + contentIds.push(cid); + const pid = addObj(null); + pageIds.push(pid); + }); + + for (let i = 0; i < pageIds.length; i++) { + const resources = logoXObjId + ? `<< /Font << /F1 ${fontId} 0 R /F2 ${fontBoldId} 0 R >> /XObject << /Logo ${logoXObjId} 0 R >> >>` + : `<< /Font << /F1 ${fontId} 0 R /F2 ${fontBoldId} 0 R >> >>`; + objects[pageIds[i] - 1] = `<< /Type /Page /Parent ${pagesId} 0 R /MediaBox [0 0 ${pageW} ${pageH}] /Contents ${contentIds[i]} 0 R /Resources ${resources} >>`; + } + + objects[catalogId - 1] = `<< /Type /Catalog /Pages ${pagesId} 0 R >>`; + objects[pagesId - 1] = `<< /Type /Pages /Kids [${pageIds.map(id => `${id} 0 R`).join(' ')}] /Count ${pageIds.length} >>`; + + const chunks = []; + const offsets = [0]; + let byteLen = 0; + const push = (buf) => { chunks.push(buf); byteLen += buf.length; }; + + push(Buffer.from('%PDF-1.4\n%\xE2\xE3\xCF\xD3\n', 'binary')); + + for (let i = 0; i < objects.length; i++) { + offsets.push(byteLen); + const obj = objects[i]; + if (obj && typeof obj === 'object' && obj.dict && obj.stream) { + push(Buffer.from(`${i + 1} 0 obj\n${obj.dict}\nstream\n`, 'binary')); + push(obj.stream); + push(Buffer.from('\nendstream\nendobj\n', 'binary')); + } else { + push(Buffer.from(`${i + 1} 0 obj\n${obj}\nendobj\n`, 'binary')); + } + } + + const xrefStart = byteLen; + let xref = `xref\n0 ${objects.length + 1}\n0000000000 65535 f \n`; + for (let i = 1; i <= objects.length; i++) { + xref += `${String(offsets[i]).padStart(10, '0')} 00000 n \n`; + } + xref += `trailer\n<< /Size ${objects.length + 1} /Root ${catalogId} 0 R >>\nstartxref\n${xrefStart}\n%%EOF`; + push(Buffer.from(xref, 'binary')); + + return Buffer.concat(chunks); +} + +module.exports = { buildLogsPdf }; diff --git a/nodejs-project/nodejs-project/src/client/assets/translations/oasis_de.js b/nodejs-project/nodejs-project/src/client/assets/translations/oasis_de.js index 498cbcb1..bc0b171e 100644 --- a/nodejs-project/nodejs-project/src/client/assets/translations/oasis_de.js +++ b/nodejs-project/nodejs-project/src/client/assets/translations/oasis_de.js @@ -6,7 +6,7 @@ module.exports = { extendedDescription: [ "Wenn du jemanden unterstützt, kannst du Beiträge von dessen unterstützten Bewohnern herunterladen. Diese erscheinen hier, nach Aktualität sortiert.", ], - popular: "Highlights", + popular: "Höhepunkte", popularDescription: [ "Beiträge von Bewohnern in deinem Netzwerk, ", strong("nach Verbreitung sortiert"), @@ -63,10 +63,10 @@ module.exports = { inReplyTo: "ALS ANTWORT AUF", pmPreview: "Vorschau", pmPreviewTitle: "Nachrichtenvorschau", - noPrivateMessages: "Du hast noch keine privaten Nachrichten erhalten.", - peers: "Peers", + noPrivateMessages: "Keine privaten Nachrichten.", + peers: "Verbindungen", privateDescription: ["Private Nachrichten sind ",strong("für deinen öffentlichen Schlüssel verschlüsselt")," und haben maximal 7 Empfänger."], - search: "Suche", + search: "Suchen!", searchDescription: "Beschreibung", imageSearch: "Bildersuche", searchPlaceholder: "Suche nach @Bewohnern, #Tags und Stichwörtern...", @@ -74,29 +74,27 @@ module.exports = { continueReading: "Weiterlesen", moreComments: "weitere Kommentare", readThread: "den Rest des Threads lesen", - // pixelia pixeliaTitle: 'Pixelia', - pixeliaDescription: 'Draw pixels on the grid and collaborARTe with others in your network.', - coordLabel: 'Coordinate (e.g., A3)', - coordPlaceholder: 'Enter coordinate', + pixeliaDescription: 'Zeichne Pixel auf dem Raster und kollaboriere mit anderen in deinem Netzwerk.', + coordLabel: 'Koordinate (z.B. A3)', + coordPlaceholder: 'Koordinate eingeben', contributorsTitle: "Mitwirkende", pixeliaBy: "von", - colorLabel: 'Pick a color', - paintButton: 'Paint it!', - invalidCoordinate: 'Incorrect coordinate', + colorLabel: 'Farbe wählen', + paintButton: 'Malen!', + invalidCoordinate: 'Ungültige Koordinate', goToMuralButton: "Wandbild anzeigen", - totalPixels: 'Total Pixels', - // modules + totalPixels: 'Pixel gesamt', modules: "Module", modulesViewTitle: "Module", modulesViewDescription: "Konfiguriere deine Umgebung durch Aktivieren oder Deaktivieren von Modulen.", inbox: "Posteingang", multiverse: "Multiversum", - popularLabel: "Highlights", + popularLabel: "Höhepunkte", topicsLabel: "Themen", latestLabel: "Neueste", summariesLabel: "Zusammenfassungen", - threadsLabel: "Threads", + threadsLabel: "Diskussionen", multiverseLabel: "Multiversum", inboxLabel: "Posteingang", invitesLabel: "Einladungen", @@ -117,858 +115,849 @@ module.exports = { transfersTitle: "Überweisungen", marketTitle: "Markt", opinionsTitle: "Meinungen", - saveSettings: "Save configuration", + saveSettings: "Konfiguration speichern", apply: "Anwenden", - // menu categories - menuPersonal: "Personal", + menuPersonal: "Persönlich", menuContent: "Inhalt", - menuGovernance: "Governance", - menuOffice: "Office", + menuGovernance: "Regierung", + menuOffice: "Büro", menuMultiverse: "Multiversum", - menuNetwork: "Network", - menuCreative: "Creative", - menuEconomy: "Economy", - menuMedia: "Media", - menuTools: "Tools", - // post actions + menuNetwork: "Netzwerk", + menuCreative: "Kreativ", + menuEconomy: "Wirtschaft", + menuMedia: "Medien", + menuTools: "Werkzeuge", comment: "Kommentar", - subtopic: "Subtopic", + subtopic: "Unterthema", json: "JSON", - createdAt: "Created At", + createdAt: "Erstellt am", createdBy: "von", - // relationships - unfollow: "Unsupport", + unfollow: "Nicht mehr unterstützen", follow: "Unterstützen", block: "Blockieren", - unblock: "Unblock", - newerPosts: "Newer posts", - olderPosts: "Older posts", - feedRangeEmpty: "The given range is empty for this feed. Try viewing the ", - seeFullFeed: "full feed", - feedEmpty: "The Oasis network has never seen posts from this account.", - beginningOfFeed: "This is the beginning of the feed", - noNewerPosts: "No newer posts have been received yet.", - relationshipNotFollowing: "You are not supported", - relationshipTheyFollow: "Supports you", - relationshipMutuals: "Mutual support", - relationshipFollowing: "You are supporting", - relationshipYou: "You", - relationshipBlocking: "You are blocking", - relationshipBlockedBy: "You are blocked", - relationshipMutualBlock: "Mutual block", - relationshipNone: "You are not supporting", - relationshipConflict: "Conflict", - relationshipBlockingPost: "Blocked post", - // spreads view - viewLikes: "View spreads", - spreadedDescription: "List of posts spread by the inhabitant.", - totalspreads: "Total spreads", - // composer - attachFiles: "Attach files", + unblock: "Entsperren", + newerPosts: "Neuere Beiträge", + olderPosts: "Ältere Beiträge", + feedRangeEmpty: "Der angegebene Bereich ist leer für diesen Feed. Versuchen Sie den ", + seeFullFeed: "gesamten Feed", + feedEmpty: "Das Oasis-Netzwerk hat nie Beiträge von diesem Konto gesehen.", + beginningOfFeed: "Dies ist der Anfang des Feeds", + noNewerPosts: "Es wurden noch keine neueren Beiträge empfangen.", + relationshipNotFollowing: "Du wirst nicht unterstützt", + relationshipTheyFollow: "Unterstützt dich", + relationshipMutuals: "Gegenseitige Unterstützung", + relationshipFollowing: "Du unterstützt", + relationshipYou: "Du", + relationshipBlocking: "Du blockierst", + relationshipBlockedBy: "Du bist blockiert", + relationshipMutualBlock: "Gegenseitige Blockierung", + relationshipNone: "Du unterstützt nicht", + relationshipConflict: "Konflikt", + relationshipBlockingPost: "Blockierter Beitrag", + viewLikes: "Verbreitungen ansehen", + spreadedDescription: "Liste der vom Bewohner verbreiteten Beiträge.", + totalspreads: "Verbreitungen gesamt", + attachFiles: "Dateien anhängen", preview: "Vorschau", - publish: "Write", - contentWarningPlaceholder: "Add a subject to the post (optional)", - privateWarningPlaceholder: "Add inhabitants to send a private post (optional)", + publish: "Schreiben", + contentWarningPlaceholder: "Betreff zum Beitrag hinzufügen (optional)", + privateWarningPlaceholder: "Bewohner hinzufügen, um einen privaten Beitrag zu senden (optional)", publishWarningPlaceholder: "...", publishCustomDescription: [ - "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.", + "ACHTUNG: Aufgrund der Blockchain-Technologie kann ein veröffentlichter Beitrag nicht bearbeitet oder gelöscht werden.", ], commentWarning: [ - "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.", + "ACHTUNG: Aufgrund der Blockchain-Technologie kann ein veröffentlichter Beitrag nicht bearbeitet oder gelöscht werden.", ], - commentPublic: "public", - commentPrivate: "private", + commentPublic: "öffentlich", + commentPrivate: "privat", commentLabel: ({ publicOrPrivate, markdownUrl }) => [ ], publishLabel: ({ markdownUrl, linkTarget }) => [ - "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.", + "ACHTUNG: Aufgrund der Blockchain-Technologie kann ein veröffentlichter Beitrag nicht bearbeitet oder gelöscht werden.", ], replyLabel: ({ markdownUrl }) => [ - "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.", + "ACHTUNG: Aufgrund der Blockchain-Technologie kann ein veröffentlichter Beitrag nicht bearbeitet oder gelöscht werden.", ], publishCustomInfo: ({ href }) => [ - "If you have experience, you can also ", - a({ href }, "write an advanced post"), + "Wenn Sie Erfahrung haben, können Sie auch ", + a({ href }, "einen erweiterten Beitrag schreiben"), ".", ], publishBasicInfo: ({ href }) => [ - "If you have not experience, you should ", - a({ href }, "write a post"), + "Wenn Sie keine Erfahrung haben, sollten Sie ", + a({ href }, "einen Beitrag schreiben"), ".", ], - publishCustom: "Write advanced post", - subtopicLabel: "Create a subtopic of this post", - //mentions - messagePreview: "Post Preview", + publishCustom: "Erweiterten Beitrag schreiben", + subtopicLabel: "Ein Unterthema dieses Beitrags erstellen", + messagePreview: "Beitragsvorschau", mentionsMatching: "Passende Erwähnungen", mentionsName: "Name", mentionsRelationship: "Beziehung", - //settings - updateit: "GET UPDATES!", - updateBannerText: "A new version of Oasis is available.", - updateBannerAction: "Update now →", + updateit: "UPDATES HOLEN!", + updateBannerText: "Eine neue Version von Oasis ist verfügbar.", + updateBannerAction: "Jetzt aktualisieren →", info: "Info", settingsIntro: ({ version }) => [ `[SNH] ꖒ OASIS [ v.${version} ]`, ], - timeAgo: "ago", - sendTime: "about ", - theme: "Theme", + timeAgo: "her", + sendTime: "etwa ", + theme: "Design", legacy: "Schlüssel", legacyTitle: "Schlüssel", - legacyDescription: "Manage your secret (private key) quickly and safely.", - legacyExportButton: "Export", - legacyImportButton: "Import", - ssbLogStream: "Blokchain", - ssbLogStreamDescription: "Configure the message limit for Blockchain streams.", - saveSettings: "Save settings", - exportTitle: "Export data", - exportDescription: "Set password (min 32 characters long) to encrypt your key", - exportDataTitle: "Backup", - exportDataDescription: "Download your data (secret key excluded!)", - exportDataButton: "Download database", - pubWallet: "PUB Wallet", - pubWalletDescription: "Set the PUB wallet URL. This will be used for PUB transactions (including the UBI).", - pubWalletConfiguration: "Save configuration", - importTitle: "Import data", - importDescription: "Import your encrypted secret (private key) to enable your avatar", - importAttach: "Attach encrypted file (.enc)", - passwordLengthInfo: "Password must be at least 32 characters long.", - passwordImport: "Write your password to decrypt data that will be saved at your system home (name: secret)", - randomPassword: "Random password", - exportPasswordPlaceholder: "Use lowercase, uppercase, numbers & symbols", - fileInfo: "Your encrypted secret key will be saved at your system home (name: oasis.enc)", - themeIntro: - "Choose a theme.", - setTheme: "Set theme", + legacyDescription: "Verwalte deinen geheimen Schlüssel (privater Schlüssel) schnell und sicher.", + legacyExportButton: "Exportieren", + legacyImportButton: "Importieren", + ssbLogStream: "Blockchain", + ssbLogStreamDescription: "Konfiguriere das Nachrichtenlimit für Blockchain-Streams.", + saveSettings: "Einstellungen speichern", + exportTitle: "Daten exportieren", + exportDescription: "Passwort festlegen (mind. 32 Zeichen), um deinen Schlüssel zu verschlüsseln", + exportDataTitle: "Sicherung", + exportDataDescription: "Lade deine Daten herunter (geheimer Schlüssel ausgeschlossen!)", + exportDataButton: "Datenbank herunterladen", + pubWallet: "PUB-Wallet", + pubWalletDescription: "Setze die PUB-Wallet-URL. Diese wird für PUB-Transaktionen (einschließlich UBI) verwendet.", + pubWalletConfiguration: "Konfiguration speichern", + importTitle: "Daten importieren", + importDescription: "Importiere deinen verschlüsselten geheimen Schlüssel, um deinen Avatar zu aktivieren", + importAttach: "Verschlüsselte Datei anhängen (.enc)", + passwordLengthInfo: "Das Passwort muss mindestens 32 Zeichen lang sein.", + passwordImport: "Gib dein Passwort ein, um die Daten zu entschlüsseln", + randomPassword: "Zufälliges Passwort", + exportPasswordPlaceholder: "Klein-, Großbuchstaben, Zahlen und Symbole verwenden", + fileInfo: "Dein verschlüsselter Schlüssel wird im Systemverzeichnis gespeichert (Name: oasis.enc)", + themeIntro: "Wähle ein Design.", + setTheme: "Design festlegen", language: "Sprache", - languageDescription: - "If you'd like to use another language, select it here.", - setLanguage: "Set language", + languageDescription: "Wenn du eine andere Sprache verwenden möchtest, wähle sie hier aus.", + setLanguage: "Sprache festlegen", status: "Status", - peerConnections: "Peers", - peerConnectionsIntro: "Manage all your connections with other peers.", + peerConnections: "Verbindungen", + peerConnectionsIntro: "Verwalte alle Verbindungen mit anderen Peers.", online: "Online", offline: "Offline", - discovered: 'Discovered', - unknown: 'Unknown', + discovered: 'Entdeckt', + unknown: 'Unbekannt', pub: 'PUB', - supported: "Supported", - recommended: "Recommended", + supported: "Unterstützt", + recommended: "Empfohlen", blocked: "Blockiert", - noConnections: "No peers connected.", - noDiscovered: "No peers discovered.", - noSupportedConnections: "No peers supported.", - noBlockedConnections: "No peers blocked.", - noRecommendedConnections: "No peers recommended.", + noConnections: "Keine Peers verbunden.", + noDiscovered: "Keine Peers entdeckt.", + noSupportedConnections: "Keine Peers unterstützt.", + noBlockedConnections: "Keine Peers blockiert.", + noRecommendedConnections: "Keine Peers empfohlen.", connectionActionIntro: "", startNetworking: "Netzwerk starten", stopNetworking: "Netzwerk stoppen", restartNetworking: "Netzwerk neu starten", - sync: "Sync network", - indexes: "Indexes", - indexesDescription: - "Rebuilding your indexes is safe, and may fix some types of bugs.", - homePageTitle: "Home", - homePageDescription: "Select which module you want as your home page.", - saveHomePage: "Set home", - //invites + sync: "Netzwerk synchronisieren", + indexes: "Indizes", + indexesDescription: "Das Neuerstellen deiner Indizes ist sicher und kann einige Fehlerarten beheben.", + homePageTitle: "Startseite", + homePageDescription: "Wähle, welches Modul deine Startseite sein soll.", + saveHomePage: "Startseite festlegen", invites: "Einladungen", invitesTitle: "Einladungen", - invitesInvites: "Invitations", - invitesDescription: "Manage and apply invite codes in your network.", - invitesTribesTitle: "Tribes", - invitesTribeInviteCodePlaceholder: "Enter tribe invite code", - invitesTribeJoinButton: "Join Tribe", + invitesInvites: "Einladungen", + invitesDescription: "Verwalte und verwende Einladungscodes in deinem Netzwerk.", + invitesTribesTitle: "Stämme", + invitesTribeInviteCodePlaceholder: "Stamm-Einladungscode eingeben", + invitesTribeJoinButton: "Stamm beitreten", invitesPubsTitle: "PUBs", - invitesPubInviteCodePlaceholder: "Enter PUB invite code", - invitesAcceptInvite: "Join PUB", - invitesAcceptedInvites: "Federated Networks", - invitesNoInvites: "No invitations accepted, yet.", + invitesPubInviteCodePlaceholder: "PUB-Einladungscode eingeben", + invitesAcceptInvite: "PUB beitreten", + invitesAcceptedInvites: "Föderierte Netzwerke", + invitesNoInvites: "Noch keine Einladungen angenommen.", invitesUnfollow: "Entfolgen", invitesFollow: "Folgen", - invitesUnfollowedInvites: "Unfederated Networks", - invitesNoFederatedPubs: "No federated networks.", - invitesNoUnfollowed: "No unfederated networks.", - invitesUnreachablePubs: "Unreachable Networks", - invitesNoUnreachablePubs: "No unreachable networks.", - currentlyUnreachable: "ERROR!", - errorDetails: "Error Details", - genericError: "An error occurred.", - //panic - panicMode: "Panic Mode!", - //cipher - encryptData: "Set password (min 32 characters long) to encrypt your blockchain", - decryptData: "Enter password to decrypt your blockchain", - panicModeDescription: "Encrypt/Decrypt or DELETE your blockchain", - removeDataDescription: "WARNING: This process cannot be undone.", - encryptPanicButton: "Encrypt blockchain", - decryptPanicButton: "Decrypt blockchain", - removePanicButton: "DELETE ALL YOUR DATA!", - //search + invitesUnfollowedInvites: "Nicht-föderierte Netzwerke", + invitesNoFederatedPubs: "Keine föderierten Netzwerke.", + invitesNoUnfollowed: "Keine nicht-föderierten Netzwerke.", + invitesUnreachablePubs: "Nicht erreichbare Netzwerke", + invitesNoUnreachablePubs: "Keine nicht erreichbaren Netzwerke.", + currentlyUnreachable: "FEHLER!", + errorDetails: "Fehlerdetails", + genericError: "Ein Fehler ist aufgetreten.", + panicMode: "Panikmodus!", + encryptData: "Passwort festlegen (mind. 32 Zeichen), um deine Blockchain zu verschlüsseln", + decryptData: "Passwort eingeben, um deine Blockchain zu entschlüsseln", + panicModeDescription: "Verschlüssele/Entschlüssele oder LÖSCHE deine Blockchain", + removeDataDescription: "WARNUNG: Dieser Vorgang kann nicht rückgängig gemacht werden.", + encryptPanicButton: "Blockchain verschlüsseln", + decryptPanicButton: "Blockchain entschlüsseln", + removePanicButton: "ALLE DEINE DATEN LÖSCHEN!", searchTitle: "Suche", - searchDescriptionLabel: "Search for content in your network.", - searchLanguagesLabel: "Languages", + searchDescriptionLabel: "Suche nach Inhalten in deinem Netzwerk.", + searchLanguagesLabel: "Sprachen", searchSkillsLabel: "Fähigkeiten", - searchPlaceholder:"Search for content...", - searchSubmit:"Search!", + searchPlaceholder:"Nach Inhalten suchen...", + searchSubmit: "Suchen!", tribeLocationLabel:"Ort", - tribeModeLabel:"Invite Mode", - tribeMembersCount:"Members Count", + tribeModeLabel:"Einladungsmodus", + tribeMembersCount:"Mitgliederzahl", searchDateLabel:"Datum", searchLocationLabel:"Ort", searchPriceLabel:"Preis", - searchUrlLabel:"URL", + searchUrlLabel: "URL", searchCategoryLabel:"Kategorie", - searchStartLabel:"Start Time", - searchEndLabel:"End Time", + searchStartLabel: "Startzeit", + searchEndLabel: "Endzeit", searchPriorityLabel:"Priorität", - searchStatusLabel:"Status", - statusLabel:"Status", - totalVotesLabel:"Total Votes", + searchStatusLabel: "Status", + statusLabel: "Status", + totalVotesLabel: "Stimmen gesamt", votesLabel:"Abstimmungen", - noResultsFound:"No results found.", + noResultsFound: "Keine Ergebnisse gefunden.", author:"Autor", createdAtLabel:"Erstellt am", - hashtagDescription:"Explore the content associated with this hashtag", + hashtagDescription: "Erkunde die Inhalte zu diesem Hashtag", tribeDescriptionLabel:"Beschreibung", - votesOption:"Vote Options", + votesOption: "Abstimmungsoptionen", voteYesLabel:"Ja", voteNoLabel:"Nein", - allTypesLabel: "UNLIMITED", - ABSTENTIONLabel:"ABSTENTION", - YESLabel:"YES", - NOLabel:"NO", - FOLLOW_MAJORITYLabel: "FOLLOW MAJORITY", - CONFUSEDLabel: "CONFUSED", - NOT_INTERESTEDLabel: "NOT INTERESTED", - voteOptionYes:"Ja", - voteOptionNo:"Nein", - voteOptionAbstention:"Abstention", - StatusLabel:"Status", + allTypesLabel: "UNBEGRENZT", + ABSTENTIONLabel: "ENTHALTUNG", + YESLabel: "JA", + NOLabel: "NEIN", + FOLLOW_MAJORITYLabel: "MEHRHEIT FOLGEN", + CONFUSEDLabel: "VERWIRRT", + NOT_INTERESTEDLabel: "NICHT INTERESSIERT", + voteOptionYes:"JA", + voteOptionNo:"NEIN", + voteOptionAbstention: "Enthaltung", + StatusLabel: "Status", votesOptionYesLabel:"Ja", votesOptionNoLabel:"Nein", - votesOptionAbstentionLabel:"Abstention", - votesQuestionLabel:"Question", - votesCreatedByLabel:"Created by", - voteStatusOpen:"OPEN", - voteStatusClosed:"CLOSED", - //image search page - imageSearchLabel: "Enter words to search for images labelled with them.", - //posts and comments + votesOptionAbstentionLabel: "Enthaltung", + votesQuestionLabel: "Frage", + votesCreatedByLabel: "Erstellt von", + voteStatusOpen: "OFFEN", + voteStatusClosed: "GESCHLOSSEN", + imageSearchLabel: "Gib Wörter ein, um nach Bildern zu suchen.", commentDescription: ({ parentUrl }) => [ - " commented on ", - a({ href: parentUrl }, " thread"), + " hat kommentiert in ", + a({ href: parentUrl }, " Thread"), ], - commentTitle: ({ authorName }) => [`Comment on @${authorName}'s post`], + commentTitle: ({ authorName }) => [`Kommentar zu @${authorName}s Beitrag`], subtopicDescription: ({ parentUrl }) => [ - " created a subtopic from ", - a({ href: parentUrl }, " a post"), + " hat ein Unterthema erstellt aus ", + a({ href: parentUrl }, " einem Beitrag"), ], - subtopicTitle: ({ authorName }) => [`Subtopic on @${authorName}'s post`], - mysteryDescription: "posted a mysterious post", - // misc + search - oasisDescription: "OASIS Project Network", - searchSubmit: "Let's Search...", - hashtagDescription: "Posts tagged with this hashtag.", - postLabel: "POSTS", - aboutLabel: "INHABITANTS", + subtopicTitle: ({ authorName }) => [`Unterthema zu @${authorName}s Beitrag`], + mysteryDescription: "hat einen geheimnisvollen Beitrag veröffentlicht", + oasisDescription: "OASIS Projekt-Netzwerk", + searchSubmit: "Suchen...", + hashtagDescription: "Beiträge mit diesem Hashtag.", + postLabel: "BEITRÄGE", + aboutLabel: "BEWOHNER", feedLabel: "FEEDS", - votesLabel: "VOTATIONS", - reportLabel: "REPORTS", - imageLabel: "IMAGES", + votesLabel: "ABSTIMMUNGEN", + reportLabel: "BERICHTE", + imageLabel: "BILDER", videoLabel: "VIDEOS", audioLabel: "AUDIOS", - documentLabel: "DOCUMENTS", + documentLabel: "DOKUMENTE", + torrentLabel: "TORRENTS", pdfFallbackLabel: "PDF-Dokument", - eventLabel: "EVENTS", - taskLabel: "TASKS", - transferLabel: "TRANSFERS", - curriculumLabel: "CURRICULUM", - bookmarkLabel: "BOOKMARKS", - tribeLabel: "TRIBES", - marketLabel: "MARKET", + eventLabel: "VERANSTALTUNGEN", + taskLabel: "AUFGABEN", + transferLabel: "ÜBERWEISUNGEN", + curriculumLabel: "LEBENSLAUF", + bookmarkLabel: "LESEZEICHEN", + tribeLabel: "STÄMME", + marketLabel: "MARKT", + shopLabel: "SHOPS", + shopProductLabel: "SHOP PRODUCTS", + mapLabel: "MAPS", + jobLabel: "JOBS", + forumLabel: "FORUMS", + projectLabel: "PROJECTS", + bankWalletLabel: "GELDBÖRSEN", + bankClaimLabel: "UBI CLAIMS", + voteLabel: "VOTES", + contactLabel: "CONTACTS", + pubLabel: "PUBS", cvLabel: "CVs", submit: "Absenden", - subjectLabel: "Subject", - editProfile: "Edit Avatar", + subjectLabel: "Betreff", + editProfile: "Avatar bearbeiten", editProfileDescription: "", profileName: "Name", profileImage: "Avatar-Bild", profileDescription: "Beschreibung", hashtagDescription: - "Posts from inhabitants in your network that reference this #hashtag, sorted by recency.", - rebuildName: "Rebuild database", + "Beiträge von Bewohnern in deinem Netzwerk, die diesen #Hashtag referenzieren, nach Aktualität sortiert.", + rebuildName: "Datenbank neu erstellen", wallet: "Geldbörse", walletAddress: "Adresse", walletAmount: "Betrag", - walletAddressLine: ({ address }) => `Address: ${address}`, - walletAmountLine: ({ amount }) => `Amount: ${amount} ECO`, + walletAddressLine: ({ address }) => `Adresse: ${address}`, + walletAmountLine: ({ amount }) => `Betrag: ${amount} ECO`, walletBack: "Zurück", - walletBalanceTitle: "Balance", + walletBalanceTitle: "Kontostand", walletWalletSendTitle: "Senden", walletReceiveTitle: "Empfangen", - walletHistoryTitle: "History", + walletHistoryTitle: "Verlauf", walletBalanceLine: ({ balance }) => `${balance} ECO`, - walletCnfrs: "Cnfrs", + walletCnfrs: "Best.", walletConfirm: "Bestätigen", - walletDescription: "Manage your digital assets, including sending and receiving ECOin, viewing your balance, and accessing your transaction history.", + walletDescription: "Verwalte deine digitalen Vermögenswerte.", walletDate: "Datum", - walletFee: "Fee (The higher the fee, the faster your transaction will be processed)", - walletFeeLine: ({ fee }) => `Fee: ECO ${fee}`, - walletHistory: "History", + walletFee: "Gebühr (Je höher, desto schneller)", + walletFeeLine: ({ fee }) => `Gebühr: ECO ${fee}`, + walletHistory: "Verlauf", walletReceive: "Empfangen", walletReset: "Zurücksetzen", walletSend: "Senden", - walletStatus: "Status", + walletStatus: "Status", walletDisconnected: [ "ECOin ", - strong("wallet disconnected"), - ". Check ", - a({ href: '/settings' }, "your settings"), - " or connection status.", - ], - walletSentToLine: ({ destination, amount }) => `Sent ECO ${amount} to ${destination}`, + strong("Wallet getrennt"), + ". Überprüfe ", + a({ href: '/settings' }, "deine Einstellungen"), + " oder den Verbindungsstatus.", + ], + walletSentToLine: ({ destination, amount }) => `ECO ${amount} gesendet an ${destination}`, walletSettingsTitle: "Geldbörse", - walletSettingsDescription: "Integrate Oasis with your ECOin wallet.", - walletSettingsDocLink: "ECOin installation guide", + walletSettingsDescription: "Integriere Oasis mit deiner ECOin-Wallet.", + walletSettingsDocLink: "ECOin-Installationsanleitung", walletStatusMessages: { - invalid_amount: "Invalid amount", - invalid_dest: "Invalid destination address", - invalid_fee: "Invalid fee", - validation_errors: "Validation errors", - send_tx_success: "Transaction successful", + invalid_amount: "Ungültiger Betrag", + invalid_dest: "Ungültige Zieladresse", + invalid_fee: "Ungültige Gebühr", + validation_errors: "Validierungsfehler", + send_tx_success: "Transaktion erfolgreich", }, walletTitle: "Geldbörse", - walletTotalCostLine: ({ totalCost }) => `Total cost: ECO ${totalCost}`, - walletTransactionId: "Transaction ID", + walletTotalCostLine: ({ totalCost }) => `Gesamtkosten: ECO ${totalCost}`, + walletTransactionId: "Transaktions-ID", walletTxId: "Tx ID", walletType: "Typ", - walletUser: "Username", - walletPass: "Password", - walletConfiguration: "Set wallet", - //cipher + walletUser: "Benutzername", + walletPass: "Passwort", + walletConfiguration: "Wallet konfigurieren", cipher: "Verschlüsselung", cipherTitle: "Verschlüsselung", - cipherDescription: "Encrypt and decrypt your text symmetrically (using a shared password).", - randomPassword: "Random Password", - cipherEncryptTitle: "Encrypt Text", - cipherEncryptDescription: "Enter text to encrypt", - cipherTextLabel: "Text to Encrypt", - cipherTextPlaceholder: "Enter text to encrypt...", - cipherPasswordLabel: "Set password (min 32 characters long) to encrypt your text", - cipherPasswordPlaceholder: "Enter a password...", - cipherEncryptButton: "Encrypt", - cipherDecryptTitle: "Decrypt Text", - cipherDecryptDescription: "Enter text to decrypt", - cipherEncryptedMessageLabel: "Encrypted Text", - cipherDecryptedMessageLabel: "Decrypted Text", - cipherPasswordUsedLabel: "Password used to encrypt (keep it!)", - cipherEncryptedTextPlaceholder: "Enter the encrypted text...", + cipherDescription: "Verschlüssele und entschlüssele Text symmetrisch.", + randomPassword: "Zufälliges Passwort", + cipherEncryptTitle: "Text verschlüsseln", + cipherEncryptDescription: "Text zum Verschlüsseln eingeben", + cipherTextLabel: "Zu verschlüsselnder Text", + cipherTextPlaceholder: "Text eingeben...", + cipherPasswordLabel: "Passwort (mind. 32 Zeichen)", + cipherPasswordPlaceholder: "Passwort eingeben...", + cipherEncryptButton: "Verschlüsseln", + cipherDecryptTitle: "Text entschlüsseln", + cipherDecryptDescription: "Text zum Entschlüsseln eingeben", + cipherEncryptedMessageLabel: "Verschlüsselter Text", + cipherDecryptedMessageLabel: "Entschlüsselter Text", + cipherPasswordUsedLabel: "Verwendetes Passwort (aufbewahren!)", + cipherEncryptedTextPlaceholder: "Verschlüsselten Text eingeben...", cipherIvLabel: "IV", - cipherIvPlaceholder: "Enter the initialization vector...", - cipherDecryptButton: "Decrypt", - password: "Password", + cipherIvPlaceholder: "Initialisierungsvektor eingeben...", + cipherDecryptButton: "Entschlüsseln", + password: "Passwort", text: "Text", - encryptedText: "Encrypted Text", - iv: "Initialization Vector (IV)", - encryptTitle: "Encrypt your text", - encryptDescription: "Enter the text you want to encrypt and provide a password.", - encryptButton: "Encrypt", - decryptTitle: "Decrypt your text", - decryptDescription: "Enter the encrypted text and provide the same password used for encryption.", - decryptButton: "Decrypt", - passwordLengthError: "Password must be at least 32 characters long.", - missingFieldsError: "Text, password or IV not provided.", - encryptionError: "Error encrypting text.", - decryptionError: "Error decrypting text.", - //bookmarking + encryptedText: "Verschlüsselter Text", + iv: "Initialisierungsvektor (IV)", + encryptTitle: "Text verschlüsseln", + encryptDescription: "Text und Passwort eingeben.", + encryptButton: "Verschlüsseln", + decryptTitle: "Text entschlüsseln", + decryptDescription: "Verschlüsselten Text und Passwort eingeben.", + decryptButton: "Entschlüsseln", + passwordLengthError: "Passwort muss mind. 32 Zeichen lang sein.", + missingFieldsError: "Text, Passwort oder IV fehlt.", + encryptionError: "Fehler beim Verschlüsseln.", + decryptionError: "Fehler beim Entschlüsseln.", bookmarkTitle: "Lesezeichen", - bookmarkDescription: "Discover and manage bookmarks in your network.", + bookmarkDescription: "Lesezeichen in deinem Netzwerk entdecken und verwalten.", bookmarkAllSectionTitle: "Lesezeichen", - bookmarkMineSectionTitle: "Your Bookmarks", - bookmarkRecentSectionTitle: "Recent Bookmarks", - bookmarkTopSectionTitle: "Top Bookmarks", + bookmarkMineSectionTitle: "Deine Lesezeichen", + bookmarkRecentSectionTitle: "Neueste Lesezeichen", + bookmarkTopSectionTitle: "Top-Lesezeichen", bookmarkFavoritesSectionTitle: "Favoriten", - bookmarkCreateSectionTitle: "Create Bookmark", - bookmarkUpdateSectionTitle: "Update Bookmark", - bookmarkFilterAll: "ALL", - bookmarkFilterMine: "MINE", + bookmarkCreateSectionTitle: "Lesezeichen erstellen", + bookmarkUpdateSectionTitle: "Lesezeichen aktualisieren", + bookmarkFilterAll: "ALLE", + bookmarkFilterMine: "MEINE", bookmarkFilterTop: "TOP", - bookmarkFilterFavorites: "FAVORITES", - bookmarkFilterRecent: "RECENT", - bookmarkCreateButton: "Create Bookmark", + bookmarkFilterFavorites: "FAVORITEN", + bookmarkFilterRecent: "NEUESTE", + bookmarkCreateButton: "Lesezeichen erstellen", bookmarkUpdateButton: "Aktualisieren", bookmarkDeleteButton: "Löschen", - bookmarkAddFavoriteButton: "Add favorite", - bookmarkRemoveFavoriteButton: "Remove favorite", + bookmarkAddFavoriteButton: "Favorit hinzufügen", + bookmarkRemoveFavoriteButton: "Favorit entfernen", bookmarkUrlLabel: "Link", bookmarkUrlPlaceholder: "https://example.com", bookmarkDescriptionLabel: "Beschreibung", bookmarkDescriptionPlaceholder: "Optional", bookmarkTagsLabel: "Tags", - bookmarkTagsPlaceholder: "Enter tags separated by commas", + bookmarkTagsPlaceholder: "Tags durch Kommas getrennt eingeben", bookmarkCategoryLabel: "Kategorie", bookmarkCategoryPlaceholder: "Optional", - bookmarkLastVisitLabel: "Last Visit", - bookmarkSearchPlaceholder: "Search URL, tags, category, author...", - bookmarkSortRecent: "Most recent", - bookmarkSortOldest: "Oldest", - bookmarkSortTop: "Most voted", + bookmarkLastVisitLabel: "Letzter Besuch", + bookmarkSearchPlaceholder: "URL, Tags, Kategorie, Autor suchen...", + bookmarkSortRecent: "Neueste zuerst", + bookmarkSortOldest: "Älteste zuerst", + bookmarkSortTop: "Meistgewählt", bookmarkSearchButton: "Suche", - bookmarkUpdatedAt: "Updated", - bookmarkNoMatch: "No bookmarks match your search.", - noBookmarks: "No bookmarks available.", - noUrl: "No link", - noCategory: "No category", - noLastVisit: "No last visit", - //videos + bookmarkUpdatedAt: "Aktualisiert", + bookmarkNoMatch: "Keine Lesezeichen gefunden.", + noBookmarks: "Keine Lesezeichen vorhanden.", + noUrl: "Kein Link", + noCategory: "Keine Kategorie", + noLastVisit: "Kein letzter Besuch", videoTitle: "Videos", - videoDescription: "Explore and manage video content in your network.", + videoDescription: "Videoinhalte in deinem Netzwerk entdecken und verwalten.", videoPluginTitle: "Titel", videoPluginDescription: "Beschreibung", - videoMineSectionTitle: "Your Videos", - videoCreateSectionTitle: "Upload Video", - videoUpdateSectionTitle: "Update Video", + videoMineSectionTitle: "Deine Videos", + videoCreateSectionTitle: "Video hochladen", + videoUpdateSectionTitle: "Video aktualisieren", videoAllSectionTitle: "Videos", - videoRecentSectionTitle: "Recent Videos", - videoTopSectionTitle: "Top Videos", + videoRecentSectionTitle: "Neueste Videos", + videoTopSectionTitle: "Top-Videos", videoFavoritesSectionTitle: "Favoriten", - videoFilterAll: "ALL", - videoFilterMine: "MINE", - videoFilterRecent: "RECENT", + videoFilterAll: "ALLE", + videoFilterMine: "MEINE", + videoFilterRecent: "NEUESTE", videoFilterTop: "TOP", - videoFilterFavorites: "FAVORITES", - videoCreateButton: "Upload Video", + videoFilterFavorites: "FAVORITEN", + videoCreateButton: "Video hochladen", videoUpdateButton: "Aktualisieren", videoDeleteButton: "Löschen", - videoAddFavoriteButton: "Add favorite", - videoRemoveFavoriteButton: "Remove favorite", - videoFileLabel: "Select a video file (.mp4, .webm, .ogv, .mov)", + videoAddFavoriteButton: "Favorit hinzufügen", + videoRemoveFavoriteButton: "Favorit entfernen", + videoFileLabel: "Videodatei auswählen (.mp4, .webm, .ogv, .mov)", videoTagsLabel: "Tags", - videoTagsPlaceholder: "Enter tags separated by commas", + videoTagsPlaceholder: "Tags durch Kommas getrennt eingeben", videoTitleLabel: "Titel", videoTitlePlaceholder: "Optional", videoDescriptionLabel: "Beschreibung", videoDescriptionPlaceholder: "Optional", - videoNoFile: "No video file provided", - noVideos: "No videos available.", - videoSearchPlaceholder: "Search title, tags, author...", - videoSortRecent: "Most recent", - videoSortOldest: "Oldest", - videoSortTop: "Most voted", + videoNoFile: "Keine Videodatei angegeben", + noVideos: "Keine Videos vorhanden.", + videoSearchPlaceholder: "Titel, Tags, Autor suchen...", + videoSortRecent: "Neueste zuerst", + videoSortOldest: "Älteste zuerst", + videoSortTop: "Meistgewählt", videoSearchButton: "Suche", - videoMessageAuthorButton: "PM", - videoUpdatedAt: "Updated", - videoNoMatch: "No videos match your search.", - //documents + videoMessageAuthorButton: "PN", + videoUpdatedAt: "Aktualisiert", + videoNoMatch: "Keine Videos gefunden.", documentTitle: "Dokumente", - documentDescription: "Discover and manage documents in your network.", + documentDescription: "Dokumente in deinem Netzwerk entdecken und verwalten.", documentAllSectionTitle: "Dokumente", - documentMineSectionTitle: "Your Documents", - documentRecentSectionTitle: "Recent Documents", - documentTopSectionTitle: "Top Documents", + documentMineSectionTitle: "Deine Dokumente", + documentRecentSectionTitle: "Neueste Dokumente", + documentTopSectionTitle: "Top-Dokumente", documentFavoritesSectionTitle: "Favoriten", - documentCreateSectionTitle: "Upload Document", - documentUpdateSectionTitle: "Edit Document", - documentFilterAll: "ALL", - documentFilterMine: "MINE", - documentFilterRecent: "RECENT", + documentCreateSectionTitle: "Dokument hochladen", + documentUpdateSectionTitle: "Dokument bearbeiten", + documentFilterAll: "ALLE", + documentFilterMine: "MEINE", + documentFilterRecent: "NEUESTE", documentFilterTop: "TOP", - documentFilterFavorites: "FAVORITES", - documentCreateButton: "Upload Document", + documentFilterFavorites: "FAVORITEN", + documentCreateButton: "Dokument hochladen", documentUpdateButton: "Aktualisieren", documentDeleteButton: "Löschen", - documentAddFavoriteButton: "Add favorite", - documentRemoveFavoriteButton: "Remove from favorites", - documentMessageAuthorButton: "PM", - documentFileLabel: "Upload Document (.pdf)", + documentAddFavoriteButton: "Favorit hinzufügen", + documentRemoveFavoriteButton: "Aus Favoriten entfernen", + documentMessageAuthorButton: "PN", + documentFileLabel: "Dokument hochladen (.pdf)", documentTagsLabel: "Tags", - documentTagsPlaceholder: "Enter tags separated by commas", + documentTagsPlaceholder: "Tags durch Kommas getrennt eingeben", documentTitleLabel: "Titel", documentTitlePlaceholder: "Optional", documentDescriptionLabel: "Beschreibung", documentDescriptionPlaceholder: "Optional", - documentNoFile: "No file.", - noDocuments: "No documents available.", - documentSearchPlaceholder: "Search title, tags, description, author...", - documentSortRecent: "Most recent", - documentSortOldest: "Oldest", - documentSortTop: "Most voted", + documentNoFile: "Keine Datei.", + noDocuments: "Keine Dokumente vorhanden.", + documentSearchPlaceholder: "Titel, Tags, Beschreibung, Autor suchen...", + documentSortRecent: "Neueste zuerst", + documentSortOldest: "Älteste zuerst", + documentSortTop: "Meistgewählt", documentSearchButton: "Suche", - documentNoMatch: "No documents match your search.", - documentUpdatedAt: "Updated", - //audios + documentNoMatch: "Keine Dokumente gefunden.", + documentUpdatedAt: "Aktualisiert", audioTitle: "Audios", - audioDescription: "Explore and manage audio content in your network.", + audioDescription: "Audioinhalte in deinem Netzwerk entdecken und verwalten.", audioPluginTitle: "Titel", audioPluginDescription: "Beschreibung", - audioMineSectionTitle: "Your Audios", - audioCreateSectionTitle: "Upload Audio", - audioUpdateSectionTitle: "Update Audio", + audioMineSectionTitle: "Deine Audios", + audioCreateSectionTitle: "Audio hochladen", + audioUpdateSectionTitle: "Audio aktualisieren", audioAllSectionTitle: "Audios", - audioRecentSectionTitle: "Recent Audios", - audioTopSectionTitle: "Top Audios", - audioFilterAll: "ALL", - audioFilterMine: "MINE", - audioFilterRecent: "RECENT", + audioRecentSectionTitle: "Neueste Audios", + audioTopSectionTitle: "Top-Audios", + audioFilterAll: "ALLE", + audioFilterMine: "MEINE", + audioFilterRecent: "NEUESTE", audioFilterTop: "TOP", - audioCreateButton: "Upload Audio", + audioCreateButton: "Audio hochladen", audioUpdateButton: "Aktualisieren", audioDeleteButton: "Löschen", - audioAddFavoriteButton: "Add favorite", - audioRemoveFavoriteButton: "Remove favorite", - audioFileLabel: "Select an audio file (.mp3, .wav, .ogg)", + audioAddFavoriteButton: "Favorit hinzufügen", + audioRemoveFavoriteButton: "Favorit entfernen", + audioFileLabel: "Audiodatei auswählen (.mp3, .wav, .ogg)", audioTagsLabel: "Tags", - audioTagsPlaceholder: "Enter tags separated by commas", + audioTagsPlaceholder: "Tags durch Kommas getrennt eingeben", audioTitleLabel: "Titel", audioTitlePlaceholder: "Optional", audioDescriptionLabel: "Beschreibung", audioDescriptionPlaceholder: "Optional", - audioNoFile: "No audio file provided", - noAudios: "No audios available.", - audioSearchPlaceholder: "Search title, tags, author...", - audioSortRecent: "Most recent", - audioSortOldest: "Oldest", - audioSortTop: "Most voted", + audioNoFile: "Keine Audiodatei angegeben", + noAudios: "Keine Audios vorhanden.", + audioSearchPlaceholder: "Titel, Tags, Autor suchen...", + audioSortRecent: "Neueste zuerst", + audioSortOldest: "Älteste zuerst", + audioSortTop: "Meistgewählt", audioSearchButton: "Suche", - audioMessageAuthorButton: "PM", - audioUpdatedAt: "Updated", - audioNoMatch: "No audios match your search.", + audioMessageAuthorButton: "PN", + audioUpdatedAt: "Aktualisiert", + audioNoMatch: "Keine Audios gefunden.", audioFavoritesSectionTitle: "Favoriten", - audioFilterFavorites: "FAVORITES", - //favorites + audioFilterFavorites: "FAVORITEN", favoritesTitle: "Favoriten", - favoritesDescription: "All your favorited media in one place.", - favoritesFilterAll: "ALL", - favoritesFilterRecent: "RECENT", + favoritesDescription: "Alle deine favorisierten Medien an einem Ort.", + favoritesFilterAll: "ALLE", + favoritesFilterRecent: "NEUESTE", favoritesFilterAudios: "AUDIOS", - favoritesFilterBookmarks: "BOOKMARKS", - favoritesFilterDocuments: "DOCUMENTS", - favoritesFilterImages: "IMAGES", + favoritesFilterBookmarks: "LESEZEICHEN", + favoritesFilterDocuments: "DOKUMENTE", + favoritesFilterImages: "BILDER", + favoritesFilterMaps: "KARTEN", + favoritesFilterPads: "PADS", + favoritesFilterChats: "CHATS", + favoritesFilterCalendars: "KALENDER", favoritesFilterVideos: "VIDEOS", - favoritesRemoveButton: "Remove from favorites", - favoritesNoItems: "No favorites yet.", - //inhabitants + favoritesRemoveButton: "Aus Favoriten entfernen", + favoritesNoItems: "Noch keine Favoriten.", yourContacts: "Deine Kontakte", allInhabitants: "Bewohner", - allCVs: "All CVs", - discoverPeople: "Discover inhabitants in your network.", - allInhabitantsButton: "ALL", - contactsButton: "SUPPORTS", + allCVs: "Alle Lebensläufe", + discoverPeople: "Entdecke Bewohner in deinem Netzwerk.", + allInhabitantsButton: "ALLE", + contactsButton: "UNTERSTÜTZT", CVsButton: "CVs", matchSkills: "Fähigkeiten abgleichen", - matchSkillsButton: "MATCH SKILLS", - suggestedButton: "SUGGESTED", - searchInhabitantsPlaceholder: "FILTER inhabitants BY NAME …", - filterLocation: "FILTER inhabitants BY LOCATION …", - filterLanguage: "FILTER inhabitants BY LANGUAGE …", - filterSkills: "FILTER inhabitants BY SKILLS …", + matchSkillsButton: "FÄHIGKEITEN ABGLEICHEN", + suggestedButton: "VORGESCHLAGEN", + searchInhabitantsPlaceholder: "BEWOHNER NACH NAME FILTERN …", + filterLocation: "BEWOHNER NACH ORT FILTERN …", + filterLanguage: "BEWOHNER NACH SPRACHE FILTERN …", + filterSkills: "BEWOHNER NACH FÄHIGKEITEN FILTERN …", applyFilters: "Filter anwenden", locationLabel: "Ort", - languagesLabel: "Languages", + languagesLabel: "Sprachen", skillsLabel: "Fähigkeiten", commonSkills: "Gemeinsame Fähigkeiten", mutualFollowers: "Gemeinsame Follower", - latestInteractions: "Latest Interactions", - viewAvatar: "View Avatar", - viewCV: "View CV", + latestInteractions: "Letzte Interaktionen", + viewAvatar: "Avatar anzeigen", + viewCV: "Lebenslauf anzeigen", suggestedSectionTitle: "Vorgeschlagen", topkarmaSectionTitle: "Top Karma", topactivitySectionTitle: "Top Aktivität", blockedSectionTitle: "Blockiert", - gallerySectionTitle: "GALLERY", - blockedButton: "BLOCKED", - blockedLabel: "Blocked User", - inhabitantviewDetails: "View Details", - viewDetails: "View Details", + gallerySectionTitle: "GALERIE", + blockedButton: "BLOCKIERT", + blockedLabel: "Blockierter Bewohner", + inhabitantviewDetails: "Details anzeigen", + viewDetails: "Details anzeigen", keepReading: "Weiterlesen...", oasisId: "ID", - noInhabitantsFound: "No inhabitants found, yet.", + noInhabitantsFound: "Noch keine Bewohner gefunden.", inhabitantActivityLevel: "Aktivitätsstufe", - //parliament + deviceLabel: "Gerät", parliamentTitle: "Parlament", - parliamentDescription: "Explore forms of government and collective management laws.", - parliamentFilterGovernment: "GOVERMENT", - parliamentFilterCandidatures: "CANDIDATURES", - parliamentFilterProposals: "PROPOSALS", - parliamentFilterLaws: "LAWS", - parliamentFilterHistorical: "HISTORICAL", - parliamentFilterLeaders: "LEADERS", - parliamentFilterRules: "RULES", - parliamentGovernmentCard: "Current Government", - parliamentGovMethod: "GOVERMENT METHOD", - parliamentActorInPowerInhabitant: 'INHABITANT RULING', - parliamentActorInPowerTribe: 'TRIBE RULING', - parliamentHistoricalGovernmentsTitle: 'GOVERMENTS', - parliamentHistoricalElectionsTitle: 'ELECTION CYCLES', - parliamentHistoricalLawsTitle: 'HISTORICAL', - parliamentHistoricalLeadersTitle: 'LEADERS', - parliamentThCycles: 'CYCLES', - parliamentThTimesInPower: 'RULING', - parliamentThTotalCandidatures: 'CANDIDATURES', - parliamentThProposed: 'LAWS PROPOSED', - parliamentThApproved: 'LAWS APPROVED', - parliamentThDeclined: 'LAWS DECLINED', - parliamentThDiscarded: 'LAWS DISCARDED', - parliamentVotesReceived: "VOTES RECIEVED", - parliamentMembers: "MEMBERS", - parliamentLegSince: "CYCLE SINCE", - parliamentLegEnd: "CYCLE END", - parliamentPoliciesProposal: "LAWS PROPOSAL", - parliamentPoliciesApproved: "LAWS APPROVED", - parliamentPoliciesDeclined: "LAWS DECLINED", - parliamentPoliciesDiscarded: "LAWS DISCARDED", - parliamentEfficiency: "% EFFICIENCY", - parliamentFilterRevocations: 'REVOCATIONS', - parliamentRevocationFormTitle: 'Revocate Law', - parliamentRevocationLaw: 'Law', - parliamentRevocationTitle: 'Title', - parliamentRevocationReasons: 'Reasons', - parliamentRevocationPublish: 'Publish Revocation', - parliamentCurrentRevocationsTitle: 'Current Revocations', - parliamentFutureRevocationsTitle: 'Future Revocations', - parliamentPoliciesRevocated: 'LAWS REVOCATED', - parliamentPoliciesTitle: 'HISTORICAL', - parliamentLawsTitle: 'LAWS APPROVED', - parliamentRulesRevocations: 'Any approved law can be revocate using current goverment method ruling.', - parliamentNoStableGov: "No goverment choosen, yet.", - parliamentNoGovernments: "There are not governments, yet.", - parliamentCandidatureFormTitle: "Propose Candidature", - parliamentCandidatureId: "Candidature", - parliamentCandidatureIdPh: "Oasis ID (@...) or Tribe name", - parliamentCandidatureSlogan: "Slogan (max 140 chars)", - parliamentCandidatureSloganPh: "A short motto", - parliamentCandidatureMethod: "Method", - parliamentCandidatureProposeBtn: "Publish Candidature", + parliamentDescription: "Regierungsformen und kollektive Gesetzesverwaltung erkunden.", + parliamentFilterGovernment: "REGIERUNG", + parliamentFilterCandidatures: "KANDIDATUREN", + parliamentFilterProposals: "VORSCHLÄGE", + parliamentFilterLaws: "GESETZE", + parliamentFilterHistorical: "HISTORISCH", + parliamentFilterLeaders: "ANFÜHRER", + parliamentFilterRules: "REGELN", + parliamentGovernmentCard: "Aktuelle Regierung", + parliamentGovMethod: "REGIERUNGSMETHODE", + parliamentActorInPowerInhabitant: 'REGIERENDER BEWOHNER', + parliamentActorInPowerTribe: 'REGIERENDER STAMM', + parliamentHistoricalGovernmentsTitle: 'REGIERUNGEN', + parliamentHistoricalElectionsTitle: 'WAHLZYKLEN', + parliamentHistoricalLawsTitle: 'HISTORISCH', + parliamentHistoricalLeadersTitle: 'ANFÜHRER', + parliamentThCycles: 'ZYKLEN', + parliamentThTimesInPower: 'REGIERUNGSZEITEN', + parliamentThTotalCandidatures: 'KANDIDATUREN', + parliamentThProposed: 'VORGESCHLAGENE GESETZE', + parliamentThApproved: 'GENEHMIGTE GESETZE', + parliamentThDeclined: 'ABGELEHNTE GESETZE', + parliamentThDiscarded: 'VERWORFENE GESETZE', + parliamentVotesReceived: "STIMMEN ERHALTEN", + parliamentMembers: "MITGLIEDER", + parliamentLegSince: "ZYKLUS SEIT", + parliamentLegEnd: "ZYKLUS ENDE", + parliamentPoliciesProposal: "GESETZESVORSCHLÄGE", + parliamentPoliciesApproved: "GESETZE GENEHMIGT", + parliamentPoliciesDeclined: "GESETZE ABGELEHNT", + parliamentPoliciesDiscarded: "GESETZE VERWORFEN", + parliamentEfficiency: "% EFFIZIENZ", + parliamentFilterRevocations: 'WIDERRUFE', + parliamentRevocationFormTitle: 'Gesetz widerrufen', + parliamentRevocationLaw: 'Gesetz', + parliamentRevocationTitle: 'Titel', + parliamentRevocationReasons: 'Begründung', + parliamentRevocationPublish: 'Widerruf veröffentlichen', + parliamentCurrentRevocationsTitle: 'Aktuelle Widerrufe', + parliamentFutureRevocationsTitle: 'Zukünftige Widerrufe', + parliamentPoliciesRevocated: 'WIDERRUFENE GESETZE', + parliamentPoliciesTitle: 'HISTORISCH', + parliamentLawsTitle: 'GENEHMIGTE GESETZE', + parliamentRulesRevocations: 'Jedes genehmigte Gesetz kann mit der aktuellen Regierungsmethode widerrufen werden.', + parliamentNoStableGov: "Noch keine Regierung gewählt.", + parliamentNoGovernments: "Noch keine Regierungen vorhanden.", + parliamentCandidatureFormTitle: "Kandidatur vorschlagen", + parliamentCandidatureId: "Kandidatur", + parliamentCandidatureIdPh: "Oasis-ID (@...) oder Stammname", + parliamentCandidatureSlogan: "Slogan (max. 140 Zeichen)", + parliamentCandidatureSloganPh: "Ein kurzes Motto", + parliamentCandidatureMethod: "Methode", + parliamentCandidatureProposeBtn: "Kandidatur veröffentlichen", parliamentThType: "Typ", parliamentThId: "ID", - parliamentThDate: "Proposal date", + parliamentThDate: "Vorschlagsdatum", parliamentThSlogan: "Slogan", - parliamentThMethod: "Method", + parliamentThMethod: "Methode", parliamentThKarma: "Karma", - parliamentThSince: "Profile since", - parliamentThVotes: "Votes recieved", - parliamentThVoteAction: "Vote", - parliamentTypeUser: "Inhabitant", - parliamentTypeTribe: "Tribe", - parliamentVoteBtn: "Vote", - parliamentProposalFormTitle: "Propose Law", + parliamentThSince: "Profil seit", + parliamentThVotes: "Erhaltene Stimmen", + parliamentThVoteAction: "Abstimmen", + parliamentTypeUser: "Bewohner", + parliamentTypeTribe: "Stamm", + parliamentVoteBtn: "Abstimmen", + parliamentProposalFormTitle: "Gesetz vorschlagen", parliamentProposalTitle: "Titel", - parliamentProposalDescription: "Description (≤1000)", - parliamentProposalPublish: "Publish Proposal", - parliamentOpenVote: "Open vote", - parliamentFinalize: "Finalize", - parliamentDeadline: "Deadline", + parliamentProposalDescription: "Beschreibung (≤1000)", + parliamentProposalPublish: "Vorschlag veröffentlichen", + parliamentOpenVote: "Abstimmung eröffnen", + parliamentFinalize: "Abschließen", + parliamentDeadline: "Frist", parliamentStatus: "Status", - parliamentNoProposals: "There are not law proposals, yet.", - parliamentNoLaws: "There are not laws approved, yet.", - parliamentLawMethod: "Method", - parliamentLawProposer: "Proposed by", - parliamentLawVotes: "YES/Total", - parliamentLawEnacted: "Enacted at", - parliamentMethodDEMOCRACY: "Democracy", - parliamentMethodMAJORITY: "Majority (80%)", - parliamentMethodMINORITY: "Minority (20%)", - parliamentMethodDICTATORSHIP: "Dictatorship", - parliamentMethodKARMATOCRACY: "Karmatocracy", - parliamentMethodANARCHY: "Anarchy", + parliamentNoProposals: "Noch keine Gesetzesvorschläge vorhanden.", + parliamentNoLaws: "Noch keine Gesetze genehmigt.", + parliamentLawMethod: "Methode", + parliamentLawProposer: "Vorgeschlagen von", + parliamentLawVotes: "JA/Gesamt", + parliamentLawEnacted: "Inkraftgetreten am", + parliamentMethodDEMOCRACY: "Demokratie", + parliamentMethodMAJORITY: "Mehrheit (80%)", + parliamentMethodMINORITY: "Minderheit (20%)", + parliamentMethodDICTATORSHIP: "Diktatur", + parliamentMethodKARMATOCRACY: "Karmatokratie", + parliamentMethodANARCHY: "Anarchie", parliamentThId: "ID", - parliamentThProposalDate: "Proposal date", - parliamentThMethod: "Method", + parliamentThProposalDate: "Vorschlagsdatum", + parliamentThMethod: "Methode", parliamentThKarma: "Karma", - parliamentThSupports: "Supports", - parliamentThVote: "Vote", - parliamentCurrentProposalsTitle: "Current Proposals", - parliamentVotesSlashTotal: "Votes/Total", - parliamentVotesNeeded: "Votes Needed", - parliamentFutureLawsTitle: "Future Laws", - parliamentNoFutureLaws: "No future laws, yet.", - parliamentVoteAction: "Vote", - parliamentLeadersTitle: "Leaders", + parliamentThSupports: "Unterstützungen", + parliamentThVote: "Abstimmen", + parliamentCurrentProposalsTitle: "Aktuelle Vorschläge", + parliamentVotesSlashTotal: "Stimmen/Gesamt", + parliamentVotesNeeded: "Benötigte Stimmen", + parliamentFutureLawsTitle: "Zukünftige Gesetze", + parliamentNoFutureLaws: "Noch keine zukünftigen Gesetze.", + parliamentVoteAction: "Abstimmen", + parliamentLeadersTitle: "Anführer", parliamentThLeader: "AVATAR", - parliamentPopulation: "Population", + parliamentPopulation: "Bevölkerung", parliamentThType: "Typ", - parliamentThInPower: "In power", - parliamentThPresented: "CANDIDATURES", - parliamentNoLeaders: "No leaders, yet.", - typeParliament: "PARLIAMENT", - typeParliamentCandidature: "Parliament · Candidature", - typeParliamentTerm: "Parliament · Term", - typeParliamentProposal: "Parliament · Proposal", - typeParliamentLaw: "Parliament · New Law", + parliamentThInPower: "An der Macht", + parliamentThPresented: "KANDIDATUREN", + parliamentNoLeaders: "Noch keine Anführer.", + typeParliament: "PARLAMENT", + typeParliamentCandidature: "Parlament · Kandidatur", + typeParliamentTerm: "Parlament · Amtszeit", + typeParliamentProposal: "Parlament · Vorschlag", + typeParliamentLaw: "Parlament · Neues Gesetz", typeCourts: "Gerichte", - parliamentLawQuestion: "Question", + parliamentLawQuestion: "Frage", parliamentStatus: "Status", - parliamentCandidaturesListTitle: "List of Candidatures", - parliamentElectionsEnd: "Election end", - parliamentTimeRemaining: "Time remaining", - parliamentCurrentLeader: "Winning candidature", - parliamentNoLeader: "No winning candidature, yet.", - parliamentElectionsStatusTitle: "Next Government", - parliamentElectionsStart: "Election start", - parliamentProposalDeadlineLabel: "Deadline", - parliamentProposalTimeLeft: "Time left", - parliamentProposalOnTrack: "On track to pass", - parliamentProposalOffTrack: "Not enough support yet", - parliamentRulesTitle: "How Parliament works", - parliamentRulesIntro: "Election resolve every 2 months; candidatures are continuous and reset when a government is chosen.", - parliamentRulesCandidates: "Any inhabitant may propose themself, another inhabitant, or any tribe. Each inhabitant can propose up to 3 candidatures per cycle; duplicates in the same cycle are rejected.", - parliamentRulesElection: "The winner is the candidature with the most votes at resolution time.", - parliamentRulesTies: "Tie-break order: highest inhabitant karma; if tied, oldest profile; if still tied, earliest proposal; then lexicographic by ID.", - parliamentRulesFallback: "If no one votes, the latest proposed candidature wins. If there are no candidatures, a random tribe is selected.", - parliamentRulesTerm: "The Government tab shows the current government and stats.", - parliamentRulesMethods: "Forms: Anarchy (simple majority), Democracy (50%+1), Majority (80%), Minority (20%), Karmatocracy (highest-karma proposals), Dictatorship (instant approval).", - parliamentRulesAnarchy: "Anarchy is the default mode: if no candidature is elected at resolution, Anarchy is proclaimed. Under Anarchy, any inhabitant can propose laws.", - parliamentRulesProposals: "If you are the ruling inhabitant or a member of the ruling tribe, you can publish law proposals. Non-dictatorship methods create a public vote.", - parliamentRulesLimit: "Each inhabitant may publish at most 3 law proposals per cycle.", - parliamentRulesLaws: "When a proposal meets its threshold, it becomes a Law and appears in the Laws tab with its enactment date.", - parliamentRulesHistorical: "In the Historical tab you can see every government cycle that has occurred and data about its management.", - parliamentRulesLeaders: "In the Leaders tab you can see a ranking of inhabitants/tribes that have governed (or stood as candidates), ordered by efficiency.", - parliamentProposalVoteStatusLabel: "Vote status", - parliamentProposalOnTrackYes: "Threshold reached", - parliamentProposalOnTrackNo: "Below threshold", - //courts + parliamentCandidaturesListTitle: "Liste der Kandidaturen", + parliamentElectionsEnd: "Wahlende", + parliamentTimeRemaining: "Verbleibende Zeit", + parliamentCurrentLeader: "Führende Kandidatur", + parliamentNoLeader: "Noch keine führende Kandidatur.", + parliamentElectionsStatusTitle: "Nächste Regierung", + parliamentElectionsStart: "Wahlbeginn", + parliamentProposalDeadlineLabel: "Frist", + parliamentProposalTimeLeft: "Verbleibende Zeit", + parliamentProposalOnTrack: "Auf Kurs zur Annahme", + parliamentProposalOffTrack: "Noch nicht genügend Unterstützung", + parliamentRulesTitle: "Wie das Parlament funktioniert", + parliamentRulesIntro: "Wahlen werden alle 2 Monate aufgelöst; Kandidaturen laufen durchgehend und werden zurückgesetzt, wenn eine Regierung gewählt wird.", + parliamentRulesCandidates: "Jeder Bewohner kann sich selbst, einen anderen Bewohner oder einen Stamm vorschlagen. Jeder Bewohner kann bis zu 3 Kandidaturen pro Zyklus einreichen; Duplikate im selben Zyklus werden abgelehnt.", + parliamentRulesElection: "Der Gewinner ist die Kandidatur mit den meisten Stimmen zum Zeitpunkt der Auflösung.", + parliamentRulesTies: "Stichwahl-Reihenfolge: höchstes Bewohner-Karma; bei Gleichstand ältestes Profil; bei weiterem Gleichstand frühester Vorschlag; dann lexikographisch nach ID.", + parliamentRulesFallback: "Wenn niemand abstimmt, gewinnt die zuletzt vorgeschlagene Kandidatur. Wenn keine Kandidaturen vorliegen, wird ein zufälliger Stamm ausgewählt.", + parliamentRulesTerm: "Der Regierungs-Tab zeigt die aktuelle Regierung und Statistiken.", + parliamentRulesMethods: "Formen: Anarchie (einfache Mehrheit), Demokratie (50%+1), Mehrheit (80%), Minderheit (20%), Karmatokratie (Vorschläge mit höchstem Karma), Diktatur (sofortige Genehmigung).", + parliamentRulesAnarchy: "Anarchie ist der Standardmodus: Wenn bei der Auflösung keine Kandidatur gewählt wird, wird Anarchie ausgerufen. Unter Anarchie kann jeder Bewohner Gesetze vorschlagen.", + parliamentRulesProposals: "Wenn du der regierende Bewohner oder Mitglied des regierenden Stammes bist, kannst du Gesetzesvorschläge veröffentlichen. Nicht-diktatorische Methoden erzeugen eine öffentliche Abstimmung.", + parliamentRulesLimit: "Jeder Bewohner darf höchstens 3 Gesetzesvorschläge pro Zyklus veröffentlichen.", + parliamentRulesLaws: "Wenn ein Vorschlag seine Schwelle erreicht, wird er zum Gesetz und erscheint im Gesetze-Tab mit seinem Inkrafttretungsdatum.", + parliamentRulesHistorical: "Im Historisch-Tab kannst du jeden Regierungszyklus sehen, der stattgefunden hat, und Daten über dessen Verwaltung.", + parliamentRulesLeaders: "Im Anführer-Tab kannst du ein Ranking der Bewohner/Stämme sehen, die regiert (oder kandidiert) haben, sortiert nach Effizienz.", + parliamentProposalVoteStatusLabel: "Abstimmungsstatus", + parliamentProposalOnTrackYes: "Schwelle erreicht", + parliamentProposalOnTrackNo: "Unter der Schwelle", courtsTitle: "Gerichte", - courtsDescription: "Explore forms of conflict resolution and collective justice management.", - courtsFilterCases: "CASES", - courtsFilterMyCases: "MINE", - courtsFilterJudges: "JUDGES", - courtsFilterHistory: "HISTORY", - courtsFilterRules: "RULES", - courtsFilterOpenCase: "OPEN CASE", - courtsCaseFormTitle: "Open Case", - courtsCaseTitle: "Titel", - courtsCaseRespondent: "Accused / Respondent", - courtsCaseRespondentPh: "Oasis ID (@...) or Tribe name", - courtsCaseMediatorsAccuser: "Mediators (accuser)", - courtsCaseMediatorsPh: "Oasis IDs, separated by comma", - courtsCaseMethod: "Resolution method", - courtsCaseDescription: "Description (max 1000 chars.)", - courtsCaseEvidenceTitle: "Case evidence", - courtsCaseEvidenceHelp: "Attach images, audios, documents (PDF) or videos that support your case.", - courtsCaseSubmit: "File Case", - courtsNominateJudge: "Nominate Judge", - courtsJudgeId: "Judge", - courtsJudgeIdPh: "Oasis ID (@...) or Inhabitant name", - courtsNominateBtn: "Nominate", - courtsAddEvidence: "Add evidence", + courtsDescription: "Formen der Konfliktlösung und kollektiven Justizverwaltung erkunden.", + courtsFilterCases: "FÄLLE", + courtsFilterMyCases: "MEINE", + courtsFilterJudges: "RICHTER", + courtsFilterHistory: "VERLAUF", + courtsFilterRules: "REGELN", + courtsFilterOpenCase: "FALL ERÖFFNEN", + courtsCaseFormTitle: "Fall eröffnen", + courtsCaseTitle: "Fall", + courtsCaseRespondent: "Angeklagter / Beklagter", + courtsCaseRespondentPh: "Oasis-ID (@...) oder Stammname", + courtsCaseMediatorsAccuser: "Mediatoren (Ankläger)", + courtsCaseMediatorsPh: "Oasis-IDs, durch Komma getrennt", + courtsCaseMethod: "Lösungsmethode", + courtsCaseDescription: "Beschreibung (max. 1000 Zeichen)", + courtsCaseEvidenceTitle: "Fallbeweise", + courtsCaseEvidenceHelp: "Bilder, Audios, Dokumente (PDF) oder Videos anhängen, die deinen Fall unterstützen.", + courtsCaseSubmit: "Fall einreichen", + courtsNominateJudge: "Richter nominieren", + courtsJudgeId: "Richter", + courtsJudgeIdPh: "Oasis-ID (@...) oder Bewohnername", + courtsNominateBtn: "Nominieren", + courtsAddEvidence: "Beweis hinzufügen", courtsEvidenceText: "Text", courtsEvidenceLink: "Link", courtsEvidenceLinkPh: "https://…", - courtsEvidenceSubmit: "Attach", - courtsAnswerTitle: "Answer the claim", - courtsAnswerText: "Response brief", - courtsAnswerSubmit: "Send response", - courtsStanceDENY: "Deny", - courtsStanceADMIT: "Admit", - courtsStancePARTIAL: "Partial", - courtsVerdictTitle: "Issue verdict", - courtsVerdictResult: "Result", - courtsVerdictOrders: "Orders", - courtsVerdictOrdersPh: "Actions, deadlines, restorative steps ...", - courtsIssueVerdict: "Issue verdict", - courtsMediationPropose: "Propose settlement", - courtsSettlementText: "Terms", - courtsSettlementProposeBtn: "Propose", - courtsNominationsTitle: "Judiciary nominations", - courtsThJudge: "Judge", - courtsThSupports: "Supports", + courtsEvidenceSubmit: "Anhängen", + courtsAnswerTitle: "Auf die Klage antworten", + courtsAnswerText: "Antwortschrift", + courtsAnswerSubmit: "Antwort senden", + courtsStanceDENY: "Bestreiten", + courtsStanceADMIT: "Zugeben", + courtsStancePARTIAL: "Teilweise", + courtsVerdictTitle: "Urteil erlassen", + courtsVerdictResult: "Ergebnis", + courtsVerdictOrders: "Anordnungen", + courtsVerdictOrdersPh: "Maßnahmen, Fristen, wiedergutmachende Schritte ...", + courtsIssueVerdict: "Urteil erlassen", + courtsMediationPropose: "Vergleich vorschlagen", + courtsSettlementText: "Bedingungen", + courtsSettlementProposeBtn: "Vorschlagen", + courtsNominationsTitle: "Richternominierungen", + courtsThJudge: "Richter", + courtsThSupports: "Unterstützungen", courtsThDate: "Datum", - courtsThVote: "Vote", - courtsNoNominations: "No nominations yet.", - courtsAccuser: "Accuser", - courtsRespondent: "Respondent", + courtsThVote: "Stimme", + courtsNoNominations: "Noch keine Nominierungen.", + courtsAccuser: "Ankläger", + courtsRespondent: "Beklagter", courtsThStatus: "Status", - courtsThAnswerBy: "Answer by", - courtsThEvidenceBy: "Evidence by", - courtsThDecisionBy: "Decision by", - courtsThCase: "Case", - courtsThCreatedAt: "Start date", - courtsThActions: "Actions", - courtsCaseMediatorsRespondentTitle: "Add defence mediators", - courtsCaseMediatorsRespondent: "Mediators (defence)", - courtsMediatorsAccuserLabel: "Mediators (accuser)", - courtsMediatorsRespondentLabel: "Mediators (defence)", - courtsMediatorsSubmit: "Save mediators", - courtsVotesNeeded: "Votes needed", - courtsVotesSlashTotal: "YES / TOTAL", - courtsOpenVote: "Open vote", - courtsPublicPrefLabel: "Visibility after resolution", - courtsPublicPrefYes: "I agree this case can be fully public", - courtsPublicPrefNo: "I prefer to keep the details private", - courtsPublicPrefSubmit: "Save visibility preference", - courtsNoCases: "No cases.", - courtsNoMyCases: "You have no conflicts yet.", - courtsNoHistory: "No recorded trials yet.", - courtsMethodJUDGE: "Judge", - courtsMethodDICTATOR: "Dictator", - courtsMethodPOPULAR: "Popular", + courtsThAnswerBy: "Antwort von", + courtsThEvidenceBy: "Beweis von", + courtsThDecisionBy: "Entscheidung von", + courtsThCase: "Fall", + courtsThCreatedAt: "Startdatum", + courtsThActions: "Aktionen", + courtsCaseMediatorsRespondentTitle: "Verteidigungsmediatoren hinzufügen", + courtsCaseMediatorsRespondent: "Mediatoren (Verteidigung)", + courtsMediatorsAccuserLabel: "Mediatoren (Ankläger)", + courtsMediatorsRespondentLabel: "Mediatoren (Verteidigung)", + courtsMediatorsSubmit: "Mediatoren speichern", + courtsVotesNeeded: "Benötigte Stimmen", + courtsVotesSlashTotal: "JA / GESAMT", + courtsOpenVote: "Abstimmung eröffnen", + courtsPublicPrefLabel: "Sichtbarkeit nach Klärung", + courtsPublicPrefYes: "Ich stimme zu, dass dieser Fall vollständig öffentlich sein kann", + courtsPublicPrefNo: "Ich bevorzuge, die Details privat zu halten", + courtsPublicPrefSubmit: "Sichtbarkeitseinstellung speichern", + courtsNoCases: "Keine Fälle.", + courtsNoMyCases: "Du hast noch keine Konflikte.", + courtsNoHistory: "Noch keine aufgezeichneten Verhandlungen.", + courtsMethodJUDGE: "Richter", + courtsMethodDICTATOR: "Diktator", + courtsMethodPOPULAR: "Volksabstimmung", courtsMethodMEDIATION: "Mediation", - courtsMethodKARMATOCRACY: "Karmatocracy", - courtsMethod: "Method", - courtsRulesTitle: "How Courts work", - courtsRulesIntro: "Courts are a community-run process to resolve conflicts and promote restorative justice. Dialogue, clear evidence, and proportional remedies are prioritized.", - courtsRulesLifecycle: "Process: 1) Open case 2) Select method 3) Submit evidence 4) Hearing and deliberation 5) Verdict and remedy 6) Compliance and closure 7) Appeal (if applicable).", - courtsRulesRoles: "Accuser: opens the case. Defence: accused person or tribe. Method: mechanism chosen by the community to facilitate, assess evidence, and issue a verdict. Witness: provides testimony or evidence. Mediators: neutral people invited by the accuser and/or the defence, with access to all details, who help de-escalate the conflict and co-create agreements.", - courtsRulesEvidence: "Description up to 1000 characters. Attach relevant and lawful images, audio, video, and PDF documents. Do not share sensitive private data without consent.", - courtsRulesDeliberation: "Hearings may be public or private. Judges ensure respect, request clarifications, and may discard irrelevant or unlawful material.", - courtsRulesVerdict: "Restoration is prioritized: apologies, mediation agreements, content moderation, temporary restrictions, or other proportional measures. The reasoning must be recorded.", - courtsRulesAppeals: "Appeal: allowed when there is new evidence or a clear procedural error. Must be filed within 7 days unless otherwise stated.", - courtsRulesPrivacy: "Respect privacy and safety. Doxing, hate, or threats are removed. Judges may edit or seal parts of the record to protect people at risk.", - courtsRulesMisconduct: "Harassment, manipulation, or fabricated evidence may lead to immediate negative resolution.", - courtsRulesGlossary: "Case: record of a conflict. Evidence: materials that support claims. Verdict: decision with remedy. Appeal: request to review the verdict.", - courtsFilterActions: "ACTIONS", - courtsNoActions: "No pending actions for your role.", - courtsCaseTitlePlaceholder: "Short description of the conflict", - courtsCaseSeverity: "Severity", - courtsCaseSeverityNone: "No severity tag", + courtsMethodKARMATOCRACY: "Karmatokratie", + courtsMethod: "Methode", + courtsRulesTitle: "Wie Gerichte funktionieren", + courtsRulesIntro: "Gerichte sind ein gemeinschaftlich geführter Prozess zur Konfliktlösung und Förderung restaurativer Gerechtigkeit. Dialog, klare Beweise und verhältnismäßige Maßnahmen werden priorisiert.", + courtsRulesLifecycle: "Ablauf: 1) Fall eröffnen 2) Methode wählen 3) Beweise einreichen 4) Anhörung und Beratung 5) Urteil und Maßnahme 6) Einhaltung und Abschluss 7) Berufung (falls zutreffend).", + courtsRulesRoles: "Ankläger: eröffnet den Fall. Verteidigung: angeklagte Person oder Stamm. Methode: von der Gemeinschaft gewählter Mechanismus zur Erleichterung, Beweiswürdigung und Urteilsfindung. Zeuge: liefert Aussagen oder Beweise. Mediatoren: neutrale Personen, eingeladen vom Ankläger und/oder der Verteidigung, mit Zugang zu allen Details, die helfen, den Konflikt zu deeskalieren und Vereinbarungen zu schaffen.", + courtsRulesEvidence: "Beschreibung bis zu 1000 Zeichen. Relevante und rechtmäßige Bilder, Audios, Videos und PDF-Dokumente anhängen. Keine sensiblen privaten Daten ohne Einwilligung teilen.", + courtsRulesDeliberation: "Anhörungen können öffentlich oder privat sein. Richter sorgen für Respekt, fordern Klarstellungen an und können irrelevantes oder rechtswidriges Material verwerfen.", + courtsRulesVerdict: "Wiederherstellung wird priorisiert: Entschuldigungen, Mediationsvereinbarungen, Inhaltsmoderation, vorübergehende Einschränkungen oder andere verhältnismäßige Maßnahmen. Die Begründung muss protokolliert werden.", + courtsRulesAppeals: "Berufung: zulässig bei neuen Beweisen oder einem klaren Verfahrensfehler. Muss innerhalb von 7 Tagen eingereicht werden, sofern nicht anders angegeben.", + courtsRulesPrivacy: "Privatsphäre und Sicherheit respektieren. Doxxing, Hass oder Drohungen werden entfernt. Richter können Teile der Akte bearbeiten oder versiegeln, um gefährdete Personen zu schützen.", + courtsRulesMisconduct: "Belästigung, Manipulation oder gefälschte Beweise können zu einer sofortigen negativen Lösung führen.", + courtsRulesGlossary: "Fall: Aufzeichnung eines Konflikts. Beweis: Materialien, die Ansprüche unterstützen. Urteil: Entscheidung mit Maßnahme. Berufung: Antrag auf Überprüfung des Urteils.", + courtsFilterActions: "AKTIONEN", + courtsNoActions: "Keine ausstehenden Aktionen für deine Rolle.", + courtsCaseTitlePlaceholder: "Kurze Beschreibung des Konflikts", + courtsCaseSeverity: "Schweregrad", + courtsCaseSeverityNone: "Kein Schweregrad", courtsCaseSeverityLOW: "Niedrig", courtsCaseSeverityMEDIUM: "Mittel", courtsCaseSeverityHIGH: "Hoch", - courtsCaseSeverityCRITICAL: "Critical", - courtsCaseSubject: "Topic", - courtsCaseSubjectNone: "No topic tag", - courtsCaseSubjectBEHAVIOUR: "Behaviour", + courtsCaseSeverityCRITICAL: "Kritisch", + courtsCaseSubject: "Thema", + courtsCaseSubjectNone: "Kein Thema-Tag", + courtsCaseSubjectBEHAVIOUR: "Verhalten", courtsCaseSubjectCONTENT: "Inhalt", - courtsCaseSubjectGOVERNANCE: "Governance / rules", - courtsCaseSubjectFINANCIAL: "Financial / resources", - courtsCaseSubjectOTHER: "Other", - courtsHiddenRespondent: "Hidden (only visible to involved roles).", - courtsThRole: "Role", - courtsRoleAccuser: "Accuser", - courtsRoleDefence: "Defence", + courtsCaseSubjectGOVERNANCE: "Regierung / Regeln", + courtsCaseSubjectFINANCIAL: "Finanzen / Ressourcen", + courtsCaseSubjectOTHER: "Sonstiges", + courtsHiddenRespondent: "Verborgen (nur für beteiligte Rollen sichtbar).", + courtsThRole: "Rolle", + courtsRoleAccuser: "Ankläger", + courtsRoleDefence: "Verteidigung", courtsRoleMediator: "Mediator", - courtsRoleJudge: "Judge", - courtsRoleDictator: "Dictator", - courtsAssignJudgeTitle: "Choose judge", - courtsAssignJudgeBtn: "Choose judge", - //trending + courtsRoleJudge: "Richter", + courtsRoleDictator: "Diktator", + courtsAssignJudgeTitle: "Richter auswählen", + courtsAssignJudgeBtn: "Richter auswählen", trendingTitle: "Trends", - exploreTrending: "Explore the most popular content in your network.", - ALLButton: "ALL", - MINEButton: "MINE", - RECENTButton: "RECENT", + exploreTrending: "Entdecke die beliebtesten Inhalte in deinem Netzwerk.", + ALLButton: "ALLE", + MINEButton: "MEINE", + RECENTButton: "NEUESTE", TOPButton: "TOP", - bookmarkButton: "BOOKMARKS", - transferButton: "TRANSFERS", - eventButton: "EVENTS", - taskButton: "TASKS", - votesButton: "VOTATIONS", - reportButton: "REPORTS", + bookmarkButton: "LESEZEICHEN", + transferButton: "ÜBERWEISUNGEN", + eventButton: "TERMINE", + taskButton: "AUFGABEN", + votesButton: "ABSTIMMUNGEN", + reportButton: "BERICHTE", feedButton: "FEED", - marketButton: "MARKET", - imageButton: "IMAGES", + marketButton: "MARKT", + imageButton: "BILDER", audioButton: "AUDIOS", videoButton: "VIDEOS", - documentButton: "DOCUMENTS", + documentButton: "DOKUMENTE", + torrentButton: "TORRENTS", author: "Von", createdAtLabel: "Erstellt am", - totalVotes: "Total Votes", - noTrendingFound: "No trending content found.", - noContentMessage: "No trending content available, yet.", + totalVotes: "Stimmen gesamt", + noTrendingFound: "Keine Trendinhalte gefunden.", + noContentMessage: "Noch keine Trendinhalte vorhanden.", trendingDescription: "Beschreibung", trendingDate: "Datum", trendingLocation: "Ort", @@ -981,765 +970,757 @@ module.exports = { trendingStatus: "Status", trendingFrom: "Von", trendingTo: "An", - trendingConcept: "Concept", + trendingConcept: "Konzept", trendingAmount: "Betrag", - trendingDeadline: "Deadline", - trendingItemStatus: "Item Status", - trendingTotalVotes: "Total Votes", - trendingTotalOpinions: "Total Opinions", - trendingNoContentMessage: "No trending content available, yet.", - trendingAuthor: "By", - trendingCreatedAtLabel: "Created At", - trendingTotalCount: "Total Count", - //tasks + trendingDeadline: "Frist", + trendingItemStatus: "Status", + trendingTotalVotes: "Stimmen gesamt", + trendingTotalOpinions: "Meinungen gesamt", + trendingNoContentMessage: "Noch keine Trendinhalte vorhanden.", + trendingAuthor: "Von", + trendingCreatedAtLabel: "Erstellt am", + trendingTotalCount: "Gesamtzahl", tasksTitle: "Aufgaben", - tasksDescription: "Discover and manage tasks in your network.", + tasksDescription: "Aufgaben in deinem Netzwerk entdecken und verwalten.", taskTitleLabel: "Titel", taskDescriptionLabel: "Beschreibung", - taskStartTimeLabel: "Start Time", - taskEndTimeLabel: "End Time", + taskStartTimeLabel: "Startzeit", + taskEndTimeLabel: "Endzeit", taskPriorityLabel: "Priorität", - taskPrioritySelect: "Select priority", - taskPriorityUrgent: "Urgent", + taskPrioritySelect: "Priorität auswählen", + taskPriorityUrgent: "Dringend", taskPriorityHigh: "Hoch", taskPriorityMedium: "Mittel", taskPriorityLow: "Niedrig", taskLocationLabel: "Ort", taskTagsLabel: "Tags", - taskVisibilityLabel: "Visibility", - taskPublic: "public", - taskPrivate: "private", - taskCreatedAt: "Created At", - taskBy: "By", + taskVisibilityLabel: "Sichtbarkeit", + taskPublic: "öffentlich", + taskPrivate: "privat", + taskCreatedAt: "Erstellt am", + taskBy: "Von", taskStatus: "Status", taskStatusOpen: "Öffnen", - taskStatusInProgress: "In Progress", - taskStatusClosed: "Closed", - taskAssignedTo: "Assigned to", - taskAssignees: "Assignees", - taskAssignButton: "Assign to Me", - taskUnassignButton: "Unassign", - taskCreateButton: "Create Task", + taskStatusInProgress: "In Bearbeitung", + taskStatusClosed: "Geschlossen", + taskAssignedTo: "Zugewiesen an", + taskAssignees: "Zugewiesene", + taskAssignButton: "Mir zuweisen", + taskUnassignButton: "Zuweisung aufheben", + taskCreateButton: "Aufgabe erstellen", taskUpdateButton: "Aktualisieren", taskDeleteButton: "Löschen", - taskFilterAll: "ALL", - taskFilterMine: "MINE", - taskFilterOpen: "OPEN", - taskFilterInProgress: "IN-PROGRESS", - taskFilterClosed: "CLOSED", - taskFilterAssigned: "ASSIGNED", - taskFilterArchived: "ARCHIVED", - taskFilterUrgent: "URGENT", - taskFilterHigh: "HIGH", - taskFilterMedium: "MEDIUM", - taskFilterLow: "LOW", + taskFilterAll: "ALLE", + taskFilterMine: "MEINE", + taskFilterOpen: "OFFEN", + taskFilterInProgress: "IN BEARBEITUNG", + taskFilterClosed: "GESCHLOSSEN", + taskFilterAssigned: "ZUGEWIESEN", + taskFilterArchived: "ARCHIVIERT", + taskFilterUrgent: "DRINGEND", + taskFilterHigh: "HOCH", + taskFilterMedium: "MITTEL", + taskFilterLow: "NIEDRIG", taskAllSectionTitle: "Aufgaben", - taskMineSectionTitle: "Your Tasks", - taskCreateSectionTitle: "Create Task", + taskMineSectionTitle: "Deine Aufgaben", + taskCreateSectionTitle: "Aufgabe erstellen", taskUpdateSectionTitle: "Aktualisieren", - taskOpenTitle: "Open Tasks", - taskInProgressTitle: "In Progress Tasks", - taskClosedTitle: "Closed Tasks", - taskAssignedTitle: "Assigned Tasks", - taskArchivedTitle: "Archived Tasks", - taskPublicTitle: "Public Tasks", - taskPrivateTitle: "Private Tasks", - notasks: "No tasks available.", - noLocation: "No location specified", - taskSetStatus: "Set Status", - //events + taskOpenTitle: "Offene Aufgaben", + taskInProgressTitle: "Aufgaben in Bearbeitung", + taskClosedTitle: "Geschlossene Aufgaben", + taskAssignedTitle: "Zugewiesene Aufgaben", + taskArchivedTitle: "Archivierte Aufgaben", + taskPublicTitle: "Öffentliche Aufgaben", + taskPrivateTitle: "Private Aufgaben", + notasks: "Keine Aufgaben vorhanden.", + noLocation: "Kein Ort angegeben", + taskSetStatus: "Status setzen", eventTitle: "Termine", eventDateLabel: "Datum", eventsTitle: "Termine", - eventsDescription: "Discover and manage events in your network.", + eventsDescription: "Termine in deinem Netzwerk entdecken und verwalten.", eventDescription: "Beschreibung", eventPrice: "Preis", eventStatus: "Status", - eventOrganizer: "Organizer", + eventOrganizer: "Veranstalter", eventAllSectionTitle: "Termine", - eventMineSectionTitle: "Your Events", - eventArchivedTitle: "Archived Events", - eventCreateSectionTitle: "Create Event", - eventUpdateSectionTitle: "Update Event", + eventMineSectionTitle: "Deine Termine", + eventArchivedTitle: "Archivierte Termine", + eventCreateSectionTitle: "Termin erstellen", + eventUpdateSectionTitle: "Termin aktualisieren", eventDeleteButton: "Löschen", - eventCreateButton: "Create Event", + eventCreateButton: "Termin erstellen", eventTitleLabel: "Titel", eventDescriptionLabel: "Beschreibung", - eventDescriptionPlaceholder: "Enter event description...", + eventDescriptionPlaceholder: "Terminbeschreibung eingeben...", eventUpdateButton: "Aktualisieren", - eventAttendeesLabel: "Attendees", - eventAttendeesPlaceholder: "Enter attendees, separated by commas...", + eventAttendeesLabel: "Teilnehmer", + eventAttendeesPlaceholder: "Teilnehmer eingeben, durch Kommas getrennt...", eventTagsLabel: "Tags", - eventTagsPlaceholder: "Enter event tags, separated by commas...", + eventTagsPlaceholder: "Termin-Tags eingeben, durch Kommas getrennt...", eventTags: "Tags", eventPriceLabel: "Preis", eventUrlLabel: "URL", - eventAttendees: "Attendees", - noAttendees: "No attendees yet", - eventCreatedAt: "Created At", + eventAttendees: "Teilnehmer", + noAttendees: "Noch keine Teilnehmer", + eventCreatedAt: "Erstellt am", eventLocation: "Ort", eventLocationLabel: "Ort", - eventNoLocation: "No location specified", - eventNoURL: "No URL specified", - eventBy: "By", - noevents: "No events available.", + eventNoLocation: "Kein Ort angegeben", + eventNoURL: "Keine URL angegeben", + eventBy: "Von", + noevents: "Keine Termine vorhanden.", eventDate: "Datum", eventDateFormat: "DD:MM:YYYY HH:mm", - eventAttendButton: "Attend Event", - eventUnattendButton: "Unattend Event", - eventCreatedBy: "Created By", - eventAttendeesCount: "Attendees Count", - eventCreatedByYou: "You created this event", - eventAttendConfirmation: "You are now attending this event", - eventUnattendConfirmation: "You are no longer attending this event", - eventFilterAll: "ALL", - eventFilterMine: "MINE", - eventFilterToday: "TODAY", - eventFilterWeek: "THIS WEEK", - eventFilterMonth: "THIS MONTH", - eventFilterYear: "THIS YEAR", - eventFilterArchived: "ARCHIVED", - eventTodayTitle: "Today's Events", - eventThisWeekTitle: "This Week's Events", - eventThisMonthTitle: "This Month's Events", - eventThisYearTitle: "This Year's Events", - eventPrivacyLabel: "Visibility", + eventAttendButton: "Teilnehmen", + eventUnattendButton: "Nicht mehr teilnehmen", + eventCreatedBy: "Erstellt von", + eventAttendeesCount: "Teilnehmerzahl", + eventCreatedByYou: "Du hast diesen Termin erstellt", + eventAttendConfirmation: "Du nimmst jetzt an diesem Termin teil", + eventUnattendConfirmation: "Du nimmst nicht mehr an diesem Termin teil", + eventFilterAll: "ALLE", + eventFilterMine: "MEINE", + eventFilterToday: "HEUTE", + eventFilterWeek: "DIESE WOCHE", + eventFilterMonth: "DIESER MONAT", + eventFilterYear: "DIESES JAHR", + eventFilterArchived: "ARCHIVIERT", + eventTodayTitle: "Heutige Termine", + eventThisWeekTitle: "Termine dieser Woche", + eventThisMonthTitle: "Termine dieses Monats", + eventThisYearTitle: "Termine dieses Jahres", + eventPrivacyLabel: "Sichtbarkeit", eventPublic: "Öffentlich", eventPrivate: "Privat", - eventPublicTitle: "Public Events", - eventNoPrice: "Free Event", - eventNoImage: "No image uploaded", - eventAttendConfirmation: "You are now attending this event", - eventUnattendConfirmation: "You are no longer attending this event", - eventAttended: "Attended", - eventUnattended: "Unattended", + eventPublicTitle: "Öffentliche Termine", + eventNoPrice: "Kostenloser Termin", + eventNoImage: "Kein Bild hochgeladen", + eventAttendConfirmation: "Du nimmst jetzt an diesem Termin teil", + eventUnattendConfirmation: "Du nimmst nicht mehr an diesem Termin teil", + eventAttended: "Teilgenommen", + eventUnattended: "Nicht teilgenommen", eventStatusOpen: "Öffnen", - eventStatusClosed: "Closed", - //tags + eventStatusClosed: "Geschlossen", tagsTitle: "Tags", - tagsDescription: "Discover and explore taxonomy patterns in your network.", + tagsDescription: "Taxonomiemuster in deinem Netzwerk entdecken und erkunden.", tagsAllSectionTitle: "Tags", - tagsTopSectionTitle: "Top Tags", - tagsCloudSectionTitle: "Tags Cloud", - tagsFilterAll: "ALL", + tagsTopSectionTitle: "Top-Tags", + tagsCloudSectionTitle: "Tag-Wolke", + tagsFilterAll: "ALLE", tagsFilterTop: "TOP", - tagsFilterCloud: "CLOUD", - tagsNoItems: "No tags available.", + tagsFilterCloud: "WOLKE", + tagsNoItems: "Keine Tags vorhanden.", tagsTableHeaderTag: "TAG/LINK:", - tagsTableHeaderCount: "COUNTER:", - //transfers + tagsTableHeaderCount: "ANZAHL:", transfersTitle: "Überweisungen", - transfersDescription: "Discover and manage transfers in your network.", + transfersDescription: "Überweisungen in deinem Netzwerk entdecken und verwalten.", transfersFrom: "Von", transfersTo: "An", - transfersFilterAll: "ALL", - transfersFilterMine: "MINE", - transfersFilterMarket: "MARKET", + transfersFilterAll: "ALLE", + transfersFilterMine: "MEINE", + transfersFilterUBI: "UBI", + transfersFilterMarket: "MARKT", transfersFilterTop: "TOP", - transfersFilterPending: "PENDING", - transfersFilterUnconfirmed: "UNCONFIRMED", - transfersFilterClosed: "CLOSED", - transfersFilterDiscarded: "DISCARDED", - transfersCreateButton: "Create Transfer", + transfersFilterPending: "AUSSTEHEND", + transfersFilterUnconfirmed: "UNBESTÄTIGT", + transfersFilterClosed: "GESCHLOSSEN", + transfersFilterDiscarded: "VERWORFEN", + transfersCreateButton: "Überweisung erstellen", transfersUpdateButton: "Aktualisieren", transfersDeleteButton: "Löschen", transfersToUser: "Oasis ID", - transfersToUserValidation: "Valid Oasis ID, e.g. @…=.ed25519", - transfersConcept: "Concept", + transfersToUserValidation: "Gültige Oasis-ID, z.B. @…=.ed25519", + transfersConcept: "Konzept", transfersAmount: "Betrag", - transfersDeadline: "Deadline", + transfersDeadline: "Frist", transfersTags: "Tags", transfersStatus: "Status", - transfersStatusUnconfirmed: "UNCONFIRMED", - transfersStatusClosed: "CLOSED", - transfersStatusDiscarded: "DISCARDED", - transfersCreatedAt: "Created At", - transfersConfirmations: "CONFIRMATIONS", - transfersConfirmButton: "Confirm Transfer", - transfersNoItems: "No transfers found.", - transfersMineSectionTitle: "Your Transfers", - transfersMarketSectionTitle: "Market Transfers", - transfersTopSectionTitle: "Top Transfers", - transfersPendingSectionTitle: "Pending Transfers", - transfersUnconfirmedSectionTitle: "Unconfirmed Transfers", - transfersClosedSectionTitle: "Closed Transfers", - transfersDiscardedSectionTitle: "Discarded Transfers", + transfersStatusUnconfirmed: "UNBESTÄTIGT", + transfersStatusClosed: "GESCHLOSSEN", + transfersStatusDiscarded: "VERWORFEN", + transfersCreatedAt: "Erstellt am", + transfersConfirmations: "BESTÄTIGUNGEN", + transfersConfirmButton: "Überweisung bestätigen", + transfersNoItems: "Keine Überweisungen gefunden.", + transfersMineSectionTitle: "Deine Überweisungen", + transfersUBISectionTitle: "UBI Überweisungen", + transfersMarketSectionTitle: "Markt-Überweisungen", + transfersTopSectionTitle: "Top-Überweisungen", + transfersPendingSectionTitle: "Ausstehende Überweisungen", + transfersUnconfirmedSectionTitle: "Unbestätigte Überweisungen", + transfersClosedSectionTitle: "Geschlossene Überweisungen", + transfersDiscardedSectionTitle: "Verworfene Überweisungen", + transfersCreateSectionTitle: "Transfer erstellen", transfersAllSectionTitle: "Überweisungen", transfersFilterFavs: "Favoriten", - transfersFavsSectionTitle: "Favorite transfers", + transfersFavsSectionTitle: "Favorisierte Überweisungen", transfersSearchLabel: "Suche", - transfersSearchPlaceholder: "Search concept, tags, users...", - transfersMinAmountLabel: "Min amount", - transfersMaxAmountLabel: "Max amount", - transfersSortLabel: "Sort by", - transfersSortRecent: "Most recent", - transfersSortAmount: "Highest amount", - transfersSortDeadline: "Closest deadline", + transfersSearchPlaceholder: "Konzept, Tags, Bewohner suchen...", + transfersMinAmountLabel: "Mindestbetrag", + transfersMaxAmountLabel: "Höchstbetrag", + transfersSortLabel: "Sortieren nach", + transfersSortRecent: "Neueste zuerst", + transfersSortAmount: "Höchster Betrag", + transfersSortDeadline: "Nächste Frist", transfersSearchButton: "Suche", - transfersFavoriteButton: "Favorite", - transfersUnfavoriteButton: "Unfavorite", - transfersMessageUserButton: "Message", - transfersExpiringSoonBadge: "EXPIRING", - transfersExpiredBadge: "EXPIRED", - transfersUpdatedAt: "Updated", - transfersNoMatch: "No transfers match your search.", - //votations (voting/polls) - votationsTitle: "Votations", - votationsDescription: "Discover and manage votations in your network.", - voteMineSectionTitle: "Your Votations", - voteCreateSectionTitle: "Create Votation", + transfersFavoriteButton: "Favorit", + transfersUnfavoriteButton: "Kein Favorit", + transfersMessageUserButton: "Nachricht", + transfersExpiringSoonBadge: "LÄUFT AB", + transfersExpiredBadge: "ABGELAUFEN", + transfersUpdatedAt: "Aktualisiert", + transfersNoMatch: "Keine Überweisungen gefunden.", + votationsTitle: "Abstimmungen", + votationsDescription: "Abstimmungen in deinem Netzwerk entdecken und verwalten.", + voteMineSectionTitle: "Deine Abstimmungen", + voteCreateSectionTitle: "Abstimmung erstellen", voteUpdateSectionTitle: "Aktualisieren", - voteOpenTitle: "Open Votations", - voteClosedTitle: "Closed Votations", - voteAllSectionTitle: "Votations", - voteCreateButton: "Create Votation", + voteOpenTitle: "Offene Abstimmungen", + voteClosedTitle: "Geschlossene Abstimmungen", + voteAllSectionTitle: "Abstimmungen", + voteCreateButton: "Abstimmung erstellen", voteUpdateButton: "Aktualisieren", voteDeleteButton: "Löschen", - voteOptionYes: "YES", - voteOptionNo: "NO", - voteOptionAbstention: "ABSTENTION", - voteConfused: "CONFUSED", - voteFollowMajority: "FOLLOW MAJORITY", - voteNotInterested: "NOT INTERESTED", - voteFilterAll: "ALL", - voteFilterMine: "MINE", - voteFilterOpen: "OPEN", - voteFilterClosed: "CLOSED", - voteQuestionLabel: "Question", - voteDeadlineLabel: "Deadline", - voteOptionsLabel: "Your vote", - voteBreakdown: "Breakdown", - voteFinalResult: "RESULT", + voteOptionYes: "JA", + voteOptionNo: "NEIN", + voteOptionAbstention: "ENTHALTUNG", + voteConfused: "VERWIRRT", + voteFollowMajority: "MEHRHEIT FOLGEN", + voteNotInterested: "NICHT INTERESSIERT", + voteFilterAll: "ALLE", + voteFilterMine: "MEINE", + voteFilterOpen: "OFFEN", + voteFilterClosed: "GESCHLOSSEN", + voteQuestionLabel: "Frage", + voteDeadlineLabel: "Frist", + voteOptionsLabel: "Deine Stimme", + voteBreakdown: "Aufschlüsselung", + voteFinalResult: "ERGEBNIS", voteTagsLabel: "Tags", - voteDeadline: "Deadline", + voteDeadline: "Frist", voteStatus: "Status", - voteTotalVotes: "Total Votes", + voteTotalVotes: "Stimmen gesamt", voteTags: "Tags", voteOpinions: "Meinungen", - novotes: "No voting proposals available.", - voteBy: "By", - voteCreatedAt: "Created At", - voteNoQuestion: "No question provided", - voteUnknownCreator: "Unknown Creator", - voteUnknownDate: "Unknown Date", - errorVoteNotFound: "Vote not found", - errorAlreadyVoted: "You have already opined.", - errorVoteClosedCannotEdit: "You cannot edit a closed votation", - errorVoteDeadlinePassed: "The deadline for this votation has passed", - errorRetrievingVote: "Error retrieving vote", - errorCreatingVote: "Error creating vote", - errorVoteAlreadyVoted: "Cannot edit after opinion has been cast", - errorDeletingOldVote: "Error deleting old opinion", - errorCreatingUpdatedVote: "Error creating updated opinion", - errorCreatingTombstone: "Error creating tombstone", - voteDetailSectionTitle: 'Vote details', - voteCommentsLabel: 'Comments', - voteCommentsForumButton: 'Open discussion', - voteCommentsSectionTitle: 'Open discussion', - voteNoCommentsYet: 'There are no comments yet. Be the first to reply.', - voteNewCommentPlaceholder: 'Write your comment here…', - voteNewCommentButton: 'Post comment', - voteNewCommentLabel: 'Add a comment', - //CV + novotes: "Keine Abstimmungsvorschläge vorhanden.", + voteBy: "Von", + voteCreatedAt: "Erstellt am", + voteNoQuestion: "Keine Frage angegeben", + voteUnknownCreator: "Unbekannter Ersteller", + voteUnknownDate: "Unbekanntes Datum", + errorVoteNotFound: "Abstimmung nicht gefunden", + errorAlreadyVoted: "Du hast bereits abgestimmt.", + errorVoteClosedCannotEdit: "Eine geschlossene Abstimmung kann nicht bearbeitet werden", + errorVoteDeadlinePassed: "Die Frist für diese Abstimmung ist abgelaufen", + errorRetrievingVote: "Fehler beim Abrufen der Abstimmung", + errorCreatingVote: "Fehler beim Erstellen der Abstimmung", + errorVoteAlreadyVoted: "Nach Abgabe einer Meinung nicht mehr bearbeitbar", + errorDeletingOldVote: "Fehler beim Löschen der alten Meinung", + errorCreatingUpdatedVote: "Fehler beim Erstellen der aktualisierten Meinung", + errorCreatingTombstone: "Fehler beim Erstellen des Tombstone", + voteDetailSectionTitle: 'Abstimmungsdetails', + voteCommentsLabel: 'Kommentare', + voteCommentsForumButton: 'Diskussion eröffnen', + voteCommentsSectionTitle: 'Offene Diskussion', + voteNoCommentsYet: 'Noch keine Kommentare. Sei der Erste, der antwortet.', + voteNewCommentPlaceholder: 'Schreibe deinen Kommentar hier…', + voteNewCommentButton: 'Kommentar veröffentlichen', + voteNewCommentLabel: 'Einen Kommentar hinzufügen', cvTitle: "Lebenslauf", - cvLabel: "Curriculum Vitae (CV)", - cvEditSectionTitle: "Edit CV", - cvCreateSectionTitle: "Create CV", - cvDescription: "Manage and share your professional skills and information.", - cvNameLabel: "Full Name", - cvDescriptionLabel: "Summary", - cvPhotoLabel: "Photo", - cvPersonalExperiencesLabel: "Personal Experiences", - cvPersonalSkillsLabel: "Personal Skills (comma-separated)", - cvOasisExperiencesLabel: "Oasis Contribution Experiences", - cvOasisSkillsLabel: "Oasis Contribution Skills (comma-separated)", - cvEducationExperiencesLabel: "Educational Experiences", - cvEducationalSkillsLabel: "Educational Skills (comma-separated)", - cvProfessionalExperiencesLabel: "Professional Experiences", - cvProfessionalSkillsLabel: "Professional Skills (comma-separated)", - cvLanguagesLabel: "Languages", + cvLabel: "LEBENSLÄUFE", + cvEditSectionTitle: "Lebenslauf bearbeiten", + cvCreateSectionTitle: "Lebenslauf erstellen", + cvDescription: "Verwalte und teile deine beruflichen Fähigkeiten und Informationen.", + cvNameLabel: "Vollständiger Name", + cvDescriptionLabel: "Zusammenfassung", + cvPhotoLabel: "Foto", + cvPersonalExperiencesLabel: "Persönliche Erfahrungen", + cvPersonalSkillsLabel: "Persönliche Fähigkeiten (durch Komma getrennt)", + cvOasisExperiencesLabel: "Oasis-Beitragserfahrungen", + cvOasisSkillsLabel: "Oasis-Beitragsfähigkeiten (durch Komma getrennt)", + cvEducationExperiencesLabel: "Bildungserfahrungen", + cvEducationalSkillsLabel: "Bildungsfähigkeiten (durch Komma getrennt)", + cvProfessionalExperiencesLabel: "Berufserfahrungen", + cvProfessionalSkillsLabel: "Berufliche Fähigkeiten (durch Komma getrennt)", + cvLanguagesLabel: "Sprachen", cvLocationLabel: "Ort", cvStatusLabel: "Status", - cvPreferencesLabel: "Preferences", - cvOasisContributorLabel: "Oasis Contributor", - cvPersonal: "Personal", - cvOasis: "Oasis Contributor (optional)", - cvOasisContributorView: "Oasis Contribution", - cvEducational: "Educational (optional)", - cvEducationalView: "Educational", - cvProfessional: "Professional (optional)", - cvProfessionalView: "Professional", - cvAvailability: "Availability (optional)", - cvAvailabilityView: "Availability", + cvPreferencesLabel: "Präferenzen", + cvOasisContributorLabel: "Oasis-Mitwirkender", + cvPersonal: "Persönlich", + cvOasis: "Oasis-Mitwirkender (optional)", + cvOasisContributorView: "Oasis-Beitrag", + cvEducational: "Bildung (optional)", + cvEducationalView: "Bildung", + cvProfessional: "Beruf (optional)", + cvProfessionalView: "Beruf", + cvAvailability: "Verfügbarkeit (optional)", + cvAvailabilityView: "Verfügbarkeit", cvUpdateButton: "Aktualisieren", - cvCreateButton: "Create CV", - cvContactLabel: "Contact", - cvCreatedAt: "Created At", - cvUpdatedAt: "Updated At", + cvCreateButton: "Lebenslauf erstellen", + cvContactLabel: "Kontakt", + cvCreatedAt: "Erstellt am", + cvUpdatedAt: "Aktualisiert am", cvEditButton: "Aktualisieren", cvDeleteButton: "Löschen", - cvNoCV: "No CV found.", - // blog/post, - blogSubject: "Subject", - blogMessage: "Message", + cvNoCV: "Kein Lebenslauf gefunden.", + blogSubject: "Betreff", + blogMessage: "Nachricht", blogImage: "Medien hochladen (max: 50MB)", blogPublish: "Vorschau", - noPopularMessages: "No popular messages published, yet", - //forum - forumTitle: "Forums", + noPopularMessages: "Noch keine beliebten Nachrichten veröffentlicht", + forumTitle: "Foren", forumCategoryLabel: "Kategorie", forumTitleLabel: "Titel", - forumTitlePlaceholder: "Forum title...", - forumCreateButton: "Create forum", - forumCreateSectionTitle: "Create forum", - forumDescription: "Talk openly with other inhabitants in your network.", - forumFilterAll: "ALL", - forumFilterMine: "MINE", - forumFilterRecent: "RECENT", + forumTitlePlaceholder: "Forentitel...", + forumCreateButton: "Forum erstellen", + forumCreateSectionTitle: "Forum erstellen", + forumDescription: "Diskutiere offen mit anderen Bewohnern in deinem Netzwerk.", + forumFilterAll: "ALLE", + forumFilterMine: "MEINE", + forumFilterRecent: "NEUESTE", forumFilterTop: "TOP", - forumMineSectionTitle: "Your Forums", - forumRecentSectionTitle: "Recent Forums", - forumAllSectionTitle: "Forums", + forumMineSectionTitle: "Deine Foren", + forumRecentSectionTitle: "Neueste Foren", + forumAllSectionTitle: "Foren", forumDeleteButton: "Löschen", - forumParticipants: "participants", - forumMessages: "messages", - forumLastMessage: "Last message", - forumMessageLabel: "Message", - forumMessagePlaceholder: "Write your message...", + forumParticipants: "Teilnehmer", + forumMessages: "Nachrichten", + forumLastMessage: "Letzte Nachricht", + forumMessageLabel: "Nachricht", + forumMessagePlaceholder: "Schreibe deine Nachricht...", forumSendButton: "Senden", - forumVisitForum: "Visit Forum", - noForums: "No forums found.", - forumVisitButton: "Visit forum", - forumCatGENERAL: "General", + forumVisitForum: "Forum besuchen", + noForums: "Keine Foren gefunden.", + forumVisitButton: "Forum besuchen", + forumCatGENERAL: "Allgemein", forumCatOASIS: "Oasis", forumCatLARP: "L.A.R.P.", - forumCatPOLITICS: "Politics", - forumCatTECH: "Tech", - forumCatSCIENCE: "Science", - forumCatMUSIC: "Music", - forumCatART: "Art", + forumCatPOLITICS: "Politik", + forumCatTECH: "Technik", + forumCatSCIENCE: "Wissenschaft", + forumCatMUSIC: "Musik", + forumCatART: "Kunst", forumCatGAMING: "Gaming", - forumCatBOOKS: "Books", - forumCatFILMS: "Films", - forumCatPHILOSOPHY: "Philosophy", - forumCatSOCIETY: "Society", - forumCatPRIVACY: "Privacy", - forumCatCYBERWARFARE: "Cyberwarfare", - forumCatSURVIVALISM: "Survivalism", - //images + forumCatBOOKS: "Bücher", + forumCatFILMS: "Filme", + forumCatPHILOSOPHY: "Philosophie", + forumCatSOCIETY: "Gesellschaft", + forumCatPRIVACY: "Privatsphäre", + forumCatCYBERWARFARE: "Cyberkrieg", + forumCatSURVIVALISM: "Survivalismus", imageTitle: "Bilder", - imageDescription: "Explore and manage image content in your network.", + imageDescription: "Bildinhalte in deinem Netzwerk entdecken und verwalten.", imagePluginTitle: "Titel", imagePluginDescription: "Beschreibung", - imageMineSectionTitle: "Your Images", - imageCreateSectionTitle: "Upload Image", - imageUpdateSectionTitle: "Update Image", + imageMineSectionTitle: "Deine Bilder", + imageCreateSectionTitle: "Bild hochladen", + imageUpdateSectionTitle: "Bild aktualisieren", imageAllSectionTitle: "Bilder", - imageRecentSectionTitle: "Recent Images", - imageTopSectionTitle: "Top Images", + imageRecentSectionTitle: "Neueste Bilder", + imageTopSectionTitle: "Top-Bilder", imageFavoritesSectionTitle: "Favoriten", imageGallerySectionTitle: "Galerie", imageMemeSectionTitle: "Memes", - imageFilterAll: "ALL", - imageFilterMine: "MINE", - imageFilterRecent: "RECENT", + imageFilterAll: "ALLE", + imageFilterMine: "MEINE", + imageFilterRecent: "NEUESTE", imageFilterTop: "TOP", - imageFilterFavorites: "FAVORITES", - imageFilterGallery: "GALLERY", + imageFilterFavorites: "FAVORITEN", + imageFilterGallery: "GALERIE", imageFilterMeme: "MEMES", - imageCreateButton: "Upload Image", + imageCreateButton: "Bild hochladen", imageUpdateButton: "Aktualisieren", imageDeleteButton: "Löschen", - imageAddFavoriteButton: "Add favorite", - imageRemoveFavoriteButton: "Remove favorite", - imageFileLabel: "Select an image file (.jpeg, .jpg, .png, .gif)", + imageAddFavoriteButton: "Favorit hinzufügen", + imageRemoveFavoriteButton: "Favorit entfernen", + imageFileLabel: "Bilddatei auswählen (.jpeg, .jpg, .png, .gif)", imageTagsLabel: "Tags", - imageTagsPlaceholder: "Enter tags separated by commas", + imageTagsPlaceholder: "Tags durch Kommas getrennt eingeben", imageTitleLabel: "Titel", imageTitlePlaceholder: "Optional", imageDescriptionLabel: "Beschreibung", imageDescriptionPlaceholder: "Optional", - imageMemeLabel: "Mark as MEME", - imageNoFile: "No image file provided", - noImages: "No images available.", - imageSearchPlaceholder: "Search title, tags, description, author...", - imageSortRecent: "Most recent", - imageSortOldest: "Oldest", - imageSortTop: "Most voted", + imageMemeLabel: "MEME?", + imageNoFile: "Keine Bilddatei angegeben", + noImages: "Keine Bilder vorhanden.", + imageSearchPlaceholder: "Titel, Tags, Beschreibung, Autor suchen...", + imageSortRecent: "Neueste zuerst", + imageSortOldest: "Älteste zuerst", + imageSortTop: "Meistgewählt", imageSearchButton: "Suche", - imageMessageAuthorButton: "Message", - imageUpdatedAt: "Updated", - imageNoMatch: "No images match your search.", - //feed + imageMessageAuthorButton: "Nachricht", + imageUpdatedAt: "Aktualisiert", + imageNoMatch: "Keine Bilder gefunden.", feedTitle: "Feed", - createFeedTitle: "Create Feed", - createFeedButton: "Send Feed!", - feedPlaceholder: "What's happening? (max 280 characters)", - ALLButton: "Feeds", - MINEButton: "Your Feeds", - TODAYButton: "TODAY", - TOPButton: "Top Feeds", - CREATEButton: "Create Feed", - totalOpinions: "Total Opinions", + createFeedTitle: "Feed erstellen", + createFeedButton: "Feed senden!", + feedPlaceholder: "Was passiert? (max. 280 Zeichen)", + ALLButton: "ALLE", + MINEButton: "MEINE", + TODAYButton: "HEUTE", + TOPButton: "TOP", + CREATEButton: "Feed erstellen", + totalOpinions: "Meinungen gesamt", moreVoted: "Meistgewählt", - alreadyVoted: "You have already opined.", - noFeedsFound: "No feeds found.", + alreadyVoted: "Du hast bereits abgestimmt.", + noFeedsFound: "Keine Feeds gefunden.", author: "Von", createdAtLabel: "Erstellt am", - FeedshareYourOpinions: "Discover and share short-texts in your network.", - //feed + FeedshareYourOpinions: "Kurztexte in deinem Netzwerk entdecken und teilen.", refeedButton: "Refeed", - alreadyRefeeded: "You already refeeded this.", - //activity + alreadyRefeeded: "Du hast dies bereits refeeded.", activityTitle: "Aktivität", - yourActivity: "Your Activity", - globalActivity: "Global Activity", + yourActivity: "Deine Aktivität", + globalActivity: "Globale Aktivität", activityList: "Aktivität", - activityDesc: "See the latest activity in your network.", - allButton: "ALL", - mineButton: "MINE", - noActions: "No activity available.", + activityDesc: "Sieh dir die neueste Aktivität in deinem Netzwerk an.", + allButton: "ALLE", + mineButton: "MEINE", + noActions: "Keine Aktivität vorhanden.", performed: "→", from: "Von", to: "An", amount: "Betrag", - concept: "Concept", + concept: "Konzept", description: "Beschreibung", meme: "Meme", - activityContact: "Contact", + activityContact: "Kontakt", activityBy: "Name", - activityPixelia: "New pixel added", - viewImage: "View image", - playAudio: "Play audio", - playVideo: "Play video", - typeRecent: "RECENT", - errorActivity: "Error retrieving activity", - typePost: "POST", - typeTribe: "TRIBES", - typeAbout: "INHABITANTS", + activityPixelia: "Neues Pixel hinzugefügt", + viewImage: "Bild anzeigen", + playAudio: "Audio abspielen", + playVideo: "Video abspielen", + typeRecent: "NEUESTE", + errorActivity: "Fehler beim Abrufen der Aktivität", + typePost: "BEITRÄGE", + typeTribe: "STÄMME", + typeAbout: "BEWOHNER", typeCurriculum: "Lebenslauf", - typeImage: "IMAGES", - typeBookmark: "BOOKMARKS", - typeDocument: "DOCUMENTS", - typeVotes: "VOTATIONS", + typeImage: "BILDER", + typeBookmark: "LESEZEICHEN", + typeDocument: "DOKUMENTE", + typeVotes: "ABSTIMMUNGEN", typeAudio: "AUDIOS", - typeMarket: "MARKET", - typeJob: "JOBS", - typeProject: "PROJECTS", + typeMarket: "MARKT", + typeJob: "STELLEN", + typeProject: "PROJEKTE", typeVideo: "VIDEOS", - typeVote: "SPREAD", - typeEvent: "EVENTS", - typeTransfer: "TRANSFER", - typeTask: "TASKS", + typeVote: "VERBREITUNG", + typeEvent: "TERMINE", + typeTransfer: "ÜBERWEISUNG", + typeTask: "AUFGABEN", typePixelia: "PIXELIA", typeForum: "FORUM", - typeReport: "REPORTS", + typeReport: "BERICHTE", typeFeed: "FEED", - typeContact: "CONTACT", + typeContact: "KONTAKT", typePub: "PUB", typeTombstone: "TOMBSTONE", - typeBanking: "BANKING", - typeBankWallet: "BANKING/WALLET", - typeBankClaim: "BANKING/UBI", + typeBanking: "BANKWESEN", + typeBankWallet: "BANKWESEN/WALLET", + typeBankClaim: "BANKWESEN/UBI", typeKarmaScore: "KARMA", - typeParliament: "PARLIAMENT", - typeSpread: "SPREADS", - typeParliamentCandidature: "Parliament · Candidature", - typeParliamentTerm: "Parliament · Term", - typeParliamentProposal:"Parliament · Proposal", - typeParliamentRevocation:"Parliament · Revocation", - typeParliamentLaw: "Parliament · New Law", - typeCourts: "COURTS", - typeCourtsCase: "Courts · Case", - typeCourtsEvidence: "Courts · Evidence", - typeCourtsAnswer: "Courts · Answer", - typeCourtsVerdict: "Courts · Verdict", - typeCourtsSettlement: "Courts · Settlement", - typeCourtsSettlementProposal: "Courts · Settlement Proposal", - typeCourtsSettlementAccepted: "Courts · Settlement Accepted", - typeCourtsNomination: "Courts · Nomination", - typeCourtsNominationVote: "Courts · Nomination Vote", - activitySupport: "New alliance forged", - activityJoin: "New PUB joined", - question: "Question", - deadline: "Deadline", + typeParliament: "PARLAMENT", + typeSpread: "VERBREITUNGEN", + typeChat: "CHAT", + typeChatMessage: "CHATNACHRICHT", + typeGameScore: "SPIELERGEBNIS", + typeParliamentCandidature: "Parlament · Kandidatur", + typeParliamentTerm: "Parlament · Amtszeit", + typeParliamentProposal:"Parlament · Vorschlag", + typeParliamentRevocation:"Parlament · Widerruf", + typeParliamentLaw: "Parlament · Neues Gesetz", + typeCourts: "GERICHTE", + typeCourtsCase: "Gerichte · Fall", + typeCourtsEvidence: "Gerichte · Beweis", + typeCourtsAnswer: "Gerichte · Antwort", + typeCourtsVerdict: "Gerichte · Urteil", + typeCourtsSettlement: "Gerichte · Vergleich", + typeCourtsSettlementProposal: "Gerichte · Vergleichsvorschlag", + typeCourtsSettlementAccepted: "Gerichte · Vergleich angenommen", + typeCourtsNomination: "Gerichte · Nominierung", + typeCourtsNominationVote: "Gerichte · Nominierungsabstimmung", + activitySupport: "Neue Allianz geschmiedet", + activityJoin: "Neuem PUB beigetreten", + question: "Frage", + deadline: "Frist", status: "Status", - votes: "Abstimmungen", - totalVotes: "Total Votes", - voteTotalVotes: "Total Votes", + votes: "Stimmen", + totalVotes: "Stimmen gesamt", + voteTotalVotes: "Stimmen gesamt", name: "Name", skills: "Fähigkeiten", tags: "Tags", title: "Titel", date: "Datum", category: "Kategorie", - attendees: "Attendees", + attendees: "Teilnehmer", activitySpread: "->", - visitLink: "Visit Link", - viewDocument: "View Document", + visitLink: "Link besuchen", + viewDocument: "Dokument anzeigen", location: "Ort", - contentWarning: "Subject", - personName: "Inhabitant Name", + contentWarning: "Betreff", + personName: "Bewohnername", bankWalletConnected: "ECOin Wallet", - bankUbiReceived: "UBI Received", + bankUbiReceived: "UBI erhalten", bankTx: "Tx", - bankEpochShort: "Epoch", - bankAllocId: "Allocation ID", - bankingUserEngagementScore: "KARMA Scoring", + bankEpochShort: "Epoche", + bankAllocId: "Zuweisungs-ID", + bankingUserEngagementScore: "KARMA-Bewertung", viewDetails: "Details anzeigen", link: "Link", - aiSnippetsLearned: "Snippets learned", - tribeFeedRefeeds: "Refeeds", - activityProjectFollow: "%OASIS% is now %ACTION% this project %PROJECT%", - activityProjectUnfollow: "%OASIS% is now %ACTION% this project %PROJECT%", - activityProjectPledged: "%OASIS% has %ACTION% %AMOUNT% to project %PROJECT%", - following: "FOLLOWING", - unfollowing: "UNFOLLOWING", - pledged: "PLEDGED", - parliamentCandidatureId: "Candidature", - parliamentGovMethod: "Method", - parliamentVotesReceived: "Votes received", - parliamentMethodANARCHY: "Anarchy", - parliamentMethodVOTE: "Community Vote", - parliamentMethodRANKED: "Ranked Choice", - parliamentMethodPLURALITY: "Plurality", - parliamentMethodCOUNCIL: "Council", - parliamentMethodJURY: "Jury", - parliamentAnarchy: "ANARCHY", - parliamentElectionsStart: "Elections start", - parliamentElectionsEnd: "Elections end", - parliamentCurrentLeader: "Winning candidature", + aiSnippetsLearned: "Erlernte Fragmente", + tribeFeedRefeeds: "Weiterleitungen", + activityProjectFollow: "%OASIS% unterstützt jetzt dieses Projekt %PROJECT%", + activityProjectUnfollow: "%OASIS% unterstützt dieses Projekt nicht mehr %PROJECT%", + activityProjectPledged: "%OASIS% hat %AMOUNT% für das Projekt %PROJECT% zugesagt", + following: "UNTERSTÜTZT", + unfollowing: "NICHT MEHR UNTERSTÜTZT", + pledged: "ZUGESAGT", + parliamentCandidatureId: "Kandidatur", + parliamentGovMethod: "REGIERUNGSMETHODE", + parliamentVotesReceived: "STIMMEN ERHALTEN", + parliamentMethodANARCHY: "Anarchie", + parliamentMethodVOTE: "Gemeinschaftsabstimmung", + parliamentMethodRANKED: "Rangfolgewahl", + parliamentMethodPLURALITY: "Pluralität", + parliamentMethodCOUNCIL: "Rat", + parliamentMethodJURY: "Geschworene", + parliamentAnarchy: "ANARCHIE", + parliamentElectionsStart: "Wahlbeginn", + parliamentElectionsEnd: "Wahlende", + parliamentCurrentLeader: "Führende Kandidatur", parliamentProposalTitle: "Titel", - parliamentOpenVote: "Open vote", + parliamentOpenVote: "Abstimmung eröffnen", parliamentStatus: "Status", - parliamentLawQuestion: "Question", - parliamentLawMethod: "Method", - parliamentLawProposer: "Proposer", - parliamentLawEnacted: "Enacted at", - parliamentLawVotes: "Abstimmungen", - createdAt: "Created at", - courtsCaseTitle: "Case", - courtsMethod: "Method", - courtsMethodJUDGE: "Judge", - courtsMethodJUDGES: "Judges Panel", - courtsMethodSINGLE_JUDGE: "Single Judge", - courtsMethodJURY: "Jury", - courtsMethodCOUNCIL: "Council", - courtsMethodCOMMUNITY: "Community", + parliamentLawQuestion: "Frage", + parliamentLawMethod: "Methode", + parliamentLawProposer: "Vorgeschlagen von", + parliamentLawEnacted: "Inkraftgetreten am", + parliamentLawVotes: "JA/Gesamt", + createdAt: "Erstellt am", + courtsCaseTitle: "Fall", + courtsMethod: "Methode", + courtsMethodJUDGE: "Richter", + courtsMethodJUDGES: "Richtergremium", + courtsMethodSINGLE_JUDGE: "Einzelrichter", + courtsMethodJURY: "Geschworene", + courtsMethodCOUNCIL: "Rat", + courtsMethodCOMMUNITY: "Gemeinschaft", courtsMethodMEDIATION: "Mediation", - courtsMethodARBITRATION: "Arbitration", - courtsMethodVOTE: "Community Vote", - courtsAccuser: "Accuser", - courtsRespondent: "Respondent", + courtsMethodARBITRATION: "Schiedsverfahren", + courtsMethodVOTE: "Gemeinschaftsabstimmung", + courtsAccuser: "Ankläger", + courtsRespondent: "Beklagter", courtsThStatus: "Status", - courtsThAnswerBy: "Answer by", - courtsThEvidenceBy: "Evidence by", - courtsThDecisionBy: "Decision by", - courtsVotesNeeded: "Votes needed", - courtsVotesSlashTotal: "YES/TOTAL", - courtsOpenVote: "Open vote", - courtsAnswerTitle: "Answer", - courtsStanceADMIT: "Admit", - courtsStanceDENY: "Deny", - courtsStancePARTIAL: "Partial", - courtsStanceCOUNTERCLAIM: "Counterclaim", + courtsThAnswerBy: "Antwort von", + courtsThEvidenceBy: "Beweis von", + courtsThDecisionBy: "Entscheidung von", + courtsVotesNeeded: "Benötigte Stimmen", + courtsVotesSlashTotal: "JA / GESAMT", + courtsOpenVote: "Abstimmung eröffnen", + courtsAnswerTitle: "Auf die Klage antworten", + courtsStanceADMIT: "Zugeben", + courtsStanceDENY: "Bestreiten", + courtsStancePARTIAL: "Teilweise", + courtsStanceCOUNTERCLAIM: "Gegenklage", courtsStanceNEUTRAL: "Neutral", - courtsVerdictResult: "Result", - courtsVerdictOrders: "Orders", - courtsSettlementText: "Settlement", - courtsSettlementAccepted: "Accepted", + courtsVerdictResult: "Ergebnis", + courtsVerdictOrders: "Anordnungen", + courtsSettlementText: "Bedingungen", + courtsSettlementAccepted: "Angenommen", courtsSettlementPending: "Ausstehend", - courtsJudge: "Judge", - courtsThSupports: "Supports", - courtsFilterOpenCase: 'Open Case', - courtsEvidenceFileLabel: 'Evidence file (image, audio, video or PDF)', - courtsCaseMediators: 'Mediators', - courtsCaseMediatorsPh: 'Mediator Oasis IDs, separated by comma', - courtsMediatorsLabel: 'Mediators', - courtsThCase: 'Case', - courtsThCreatedAt: 'Start date', - courtsThActions: 'Actions', - courtsPublicPrefLabel: 'Visibility after resolution', - courtsPublicPrefYes: 'I agree this case can be fully public', - courtsPublicPrefNo: 'I prefer to keep the details private', - courtsPublicPrefSubmit: 'Save visibility preference', + courtsJudge: "Richter", + courtsThSupports: "Unterstützungen", + courtsFilterOpenCase: 'FALL ERÖFFNEN', + courtsEvidenceFileLabel: 'Beweisdatei (Bild, Audio, Video oder PDF)', + courtsCaseMediators: 'Mediatoren', + courtsCaseMediatorsPh: 'Oasis-IDs der Mediatoren, durch Komma getrennt', + courtsMediatorsLabel: 'Mediatoren', + courtsThCase: 'Fall', + courtsThCreatedAt: 'Startdatum', + courtsThActions: 'Aktionen', + courtsPublicPrefLabel: 'Sichtbarkeit nach Klärung', + courtsPublicPrefYes: 'Ich stimme zu, dass dieser Fall vollständig öffentlich sein kann', + courtsPublicPrefNo: 'Ich bevorzuge, die Details privat zu halten', + courtsPublicPrefSubmit: 'Sichtbarkeitseinstellung speichern', courtsMethodMEDIATION: 'Mediation', - courtsNoCases: 'No cases.', - //reports + courtsNoCases: 'Keine Fälle.', reportsTitle: "Berichte", - reportsDescription: "Manage and track reports related to issues, bugs, abuses and content warnings in your network.", - reportsFilterAll: "ALL", - reportsFilterMine: "MINE", - reportsFilterFeatures: "FEATURES", - reportsFilterBugs: "BUGS", - reportsFilterAbuse: "ABUSE", - reportsFilterContent: "CONTENT", - reportsFilterConfirmed: "CONFIRMED", - reportsFilterResolved: "RESOLVED", - reportsFilterOpen: "OPEN", - reportsFilterUnderReview: "UNDER REVIEW", - reportsFilterInvalid: "INVALID", - reportsCreateButton: "Create Report", + reportsDescription: "Berichte zu Problemen, Fehlern, Missbrauch und Inhaltswarnungen in deinem Netzwerk verwalten und verfolgen.", + reportsFilterAll: "ALLE", + reportsFilterMine: "MEINE", + reportsFilterFeatures: "FUNKTIONEN", + reportsFilterBugs: "FEHLER", + reportsFilterAbuse: "MISSBRAUCH", + reportsFilterContent: "INHALT", + reportsFilterConfirmed: "BESTÄTIGT", + reportsFilterResolved: "GELÖST", + reportsFilterOpen: "OFFEN", + reportsFilterUnderReview: "IN PRÜFUNG", + reportsFilterInvalid: "UNGÜLTIG", + reportsCreateButton: "Bericht erstellen", reportsTitleLabel: "Titel", reportsDescriptionLabel: "Beschreibung", - reportsDescriptionPlaceholder: "Please provide a detailed description.", + reportsDescriptionPlaceholder: "Bitte eine ausführliche Beschreibung angeben.", reportsCategory: "Kategorie", reportsCategoryLabel: "Kategorie", - reportsCategoryFeatures: "Features", - reportsCategoryBugs: "Bugs", - reportsCategoryAbuse: "Abuse", - reportsCategoryContent: "Content Issues", + reportsCategoryFeatures: "Funktionen", + reportsCategoryBugs: "Fehler", + reportsCategoryAbuse: "Missbrauch", + reportsCategoryContent: "Inhaltsprobleme", reportsUpdateButton: "Aktualisieren", reportsDeleteButton: "Löschen", reportsDateLabel: "Datum", reportsUploadFile: "Medien hochladen (max: 50MB)", - reportsCreatedBy: "By", - reportsMineSectionTitle: "Your Reports", - reportsFeaturesSectionTitle: "Feature Requests", - reportsBugsSectionTitle: "Bugs", - reportsAbuseSectionTitle: "Abuse Reports", - reportsContentSectionTitle: "Content Issues", + reportsCreatedBy: "Von", + reportsMineSectionTitle: "Deine Berichte", + reportsFeaturesSectionTitle: "Funktionsanfragen", + reportsBugsSectionTitle: "Fehler", + reportsAbuseSectionTitle: "Missbrauchsberichte", + reportsContentSectionTitle: "Inhaltsprobleme", reportsAllSectionTitle: "Berichte", - reportsNoItems: "No reports available.", - reportsValidationTitle: "Please enter a valid title.", - reportsValidationDescription: "Description cannot be empty.", - reportsValidationCategory: "Please select a category.", - reportsCreatedAt: "Created At", - reportsCreatedBy: "By", - reportsSeverity: "Severity", + reportsNoItems: "Keine Berichte vorhanden.", + reportsValidationTitle: "Bitte einen gültigen Titel eingeben.", + reportsValidationDescription: "Beschreibung darf nicht leer sein.", + reportsValidationCategory: "Bitte eine Kategorie auswählen.", + reportsCreatedAt: "Erstellt am", + reportsCreatedBy: "Von", + reportsSeverity: "Schweregrad", reportsSeverityLow: "Niedrig", reportsSeverityMedium: "Mittel", reportsSeverityHigh: "Hoch", - reportsSeverityCritical: "Critical", + reportsSeverityCritical: "Kritisch", reportsStatus: "Status", reportsStatusOpen: "Öffnen", - reportsStatusUnderReview: "Under Review", - reportsStatusResolved: "Resolved", - reportsStatusInvalid: "Invalid", - reportsUpdateStatusButton: "Update Status", - reportsAnonymityOption: "Submit Anonymously", + reportsStatusUnderReview: "In Prüfung", + reportsStatusResolved: "Gelöst", + reportsStatusInvalid: "Ungültig", + reportsUpdateStatusButton: "Status aktualisieren", + reportsAnonymityOption: "Anonym einreichen", reportsAnonymousAuthor: "Anonym", - reportsConfirmButton: "CONFIRM REPORT!", - reportsConfirmations: "Confirmations", - reportsConfirmedSectionTitle: "Confirmed Reports", - reportsCreateTaskButton: "CREATE TASK", - reportsOpenSectionTitle: "Open Reports", - reportsUnderReviewSectionTitle: "Under Review Reports", - reportsResolvedSectionTitle: "Resolved Reports", - reportsInvalidSectionTitle: "Invalid Reports", - reportsTemplateSectionTitle: 'Report template', - reportsBugTemplateTitle: 'Reproduction details (Bugs)', - reportsFeatureTemplateTitle: 'Details (Features)', - reportsAbuseTemplateTitle: 'Details (Abuse)', - reportsContentTemplateTitle: 'Details (Content Issues)', - reportsStepsToReproduceLabel: 'Steps to reproduce', + reportsConfirmButton: "BERICHT BESTÄTIGEN!", + reportsConfirmations: "Bestätigungen", + reportsConfirmedSectionTitle: "Bestätigte Berichte", + reportsCreateTaskButton: "AUFGABE ERSTELLEN", + reportsOpenSectionTitle: "Offene Berichte", + reportsUnderReviewSectionTitle: "Berichte in Prüfung", + reportsResolvedSectionTitle: "Gelöste Berichte", + reportsInvalidSectionTitle: "Ungültige Berichte", + reportsTemplateSectionTitle: 'Berichtsvorlage', + reportsBugTemplateTitle: 'Reproduktionsdetails (Fehler)', + reportsFeatureTemplateTitle: 'Details (Funktionen)', + reportsAbuseTemplateTitle: 'Details (Missbrauch)', + reportsContentTemplateTitle: 'Details (Inhaltsprobleme)', + reportsStepsToReproduceLabel: 'Reproduktionsschritte', reportsStepsToReproducePlaceholder: '1) ...\n2) ...\n3) ...', - reportsExpectedBehaviorLabel: 'Expected result', - reportsExpectedBehaviorPlaceholder: 'What should happen?', - reportsActualBehaviorLabel: 'Actual result', - reportsActualBehaviorPlaceholder: 'What actually happens?', - reportsEnvironmentLabel: 'Environment', - reportsEnvironmentPlaceholder: 'Version, device, OS, browser, settings, logs, etc.', - reportsReproduceRateLabel: 'Reproduction rate', - reportsReproduceRateAlways: 'Always', - reportsReproduceRateOften: 'Often', - reportsReproduceRateSometimes: 'Sometimes', - reportsReproduceRateRarely: 'Rarely', - reportsReproduceRateUnable: 'Unable to reproduce', - reportsReproduceRateUnknown: 'Not specified', - reportsProblemStatementLabel: 'Problem / need', - reportsProblemStatementPlaceholder: 'What problem does this feature solve?', - reportsUserStoryLabel: 'Inhabitant story', - reportsUserStoryPlaceholder: 'As a , I want , so that .', - reportsAcceptanceCriteriaLabel: 'Acceptance criteria', - reportsAcceptanceCriteriaPlaceholder: '- Given...\n- When...\n- Then...', - reportsWhatHappenedLabel: 'What happened?', - reportsWhatHappenedPlaceholder: 'Describe the incident with context and approximate dates.', - reportsReportedUserLabel: 'Reported inhabitant / entity', - reportsReportedUserPlaceholder: '@inhabitant, feed, ID, link, etc.', - reportsEvidenceLinksLabel: 'Evidence / links', - reportsEvidenceLinksPlaceholder: 'Paste links, message IDs, screenshots (if applicable), etc.', - reportsContentLocationLabel: 'Where the content is', - reportsContentLocationPlaceholder: 'Link, ID, channel, thread, author, etc.', - reportsWhyInappropriateLabel: "Why it's inappropriate", - reportsWhyInappropriatePlaceholder: 'Explain the reason and impact.', - reportsRequestedActionLabel: 'Requested action', - reportsRequestedActionPlaceholder: 'Remove, hide, tag, warn, etc.', - //tribes - tribesTitle: "Tribes", - tribeAllSectionTitle: "Tribes", - tribeMineSectionTitle: "Your Tribes", - tribeCreateSectionTitle: "Create Tribe", - tribeUpdateSectionTitle: "Update Tribe", - tribeGallerySectionTitle: "Tribes Gallery", - tribeLarpSectionTitle: "L.A.R.P", - tribeRecentSectionTitle: "Recent Tribes", - tribeTopSectionTitle: "Popular Tribes", - tribeviewTribeButton: "Visit Tribe", - tribeDescription: "Explore or create tribes on your network.", - tribeFilterAll: "ALL", - tribeFilterMine: "MINE", - tribeFilterMembership: "MEMBERSHIP", - tribeFilterRecent: "RECENT", + reportsExpectedBehaviorLabel: 'Erwartetes Ergebnis', + reportsExpectedBehaviorPlaceholder: 'Was sollte passieren?', + reportsActualBehaviorLabel: 'Tatsächliches Ergebnis', + reportsActualBehaviorPlaceholder: 'Was passiert tatsächlich?', + reportsEnvironmentLabel: 'Umgebung', + reportsEnvironmentPlaceholder: 'Version, Gerät, Betriebssystem, Browser, Einstellungen, Protokolle, etc.', + reportsReproduceRateLabel: 'Reproduktionsrate', + reportsReproduceRateAlways: 'Immer', + reportsReproduceRateOften: 'Häufig', + reportsReproduceRateSometimes: 'Manchmal', + reportsReproduceRateRarely: 'Selten', + reportsReproduceRateUnable: 'Nicht reproduzierbar', + reportsReproduceRateUnknown: 'Nicht angegeben', + reportsProblemStatementLabel: 'Problem / Bedarf', + reportsProblemStatementPlaceholder: 'Welches Problem löst diese Funktion?', + reportsUserStoryLabel: 'Bewohner-Geschichte', + reportsUserStoryPlaceholder: 'Als möchte ich , damit .', + reportsAcceptanceCriteriaLabel: 'Akzeptanzkriterien', + reportsAcceptanceCriteriaPlaceholder: '- Gegeben...\n- Wenn...\n- Dann...', + reportsWhatHappenedLabel: 'Was ist passiert?', + reportsWhatHappenedPlaceholder: 'Beschreibe den Vorfall mit Kontext und ungefährem Datum.', + reportsReportedUserLabel: 'Gemeldeter Bewohner / Entität', + reportsReportedUserPlaceholder: '@Bewohner, Feed, ID, Link, etc.', + reportsEvidenceLinksLabel: 'Beweise / Links', + reportsEvidenceLinksPlaceholder: 'Links, Nachrichten-IDs, Screenshots (falls zutreffend), etc.', + reportsContentLocationLabel: 'Wo sich der Inhalt befindet', + reportsContentLocationPlaceholder: 'Link, ID, Kanal, Thread, Autor, etc.', + reportsWhyInappropriateLabel: "Warum es unangemessen ist", + reportsWhyInappropriatePlaceholder: 'Grund und Auswirkung erklären.', + reportsRequestedActionLabel: 'Gewünschte Maßnahme', + reportsRequestedActionPlaceholder: 'Entfernen, verbergen, markieren, warnen, etc.', + tribesTitle: "Stämme", + tribeAllSectionTitle: "Stämme", + tribeMineSectionTitle: "Deine Stämme", + tribeCreateSectionTitle: "Stamm erstellen", + tribeUpdateSectionTitle: "Stamm aktualisieren", + tribeGallerySectionTitle: "Stämme-Galerie", + tribeLarpSectionTitle: "L.A.R.P.", + tribeRecentSectionTitle: "Neueste Stämme", + tribeTopSectionTitle: "Beliebte Stämme", + tribeviewTribeButton: "Stamm besuchen", + tribeDescription: "Stämme in deinem Netzwerk erkunden oder erstellen.", + tribeFilterAll: "ALLE", + tribeFilterMine: "MEINE", + tribeFilterMembership: "MITGLIEDSCHAFT", + tribeFilterRecent: "NEUESTE", tribeFilterLarp: "L.A.R.P.", tribeFilterTop: "TOP", - tribeFilterSubtribes: "SUB-TRIBES", - tribeFilterGallery: "GALLERY", - tribeMainTribeLabel: "MAIN TRIBE", - tribeCreateButton: "Create Tribe", + tribeFilterSubtribes: "UNTER-STÄMME", + tribeFilterGallery: "GALERIE", + tribeMainTribeLabel: "HAUPTSTAMM", + tribeCreateButton: "Stamm erstellen", tribeUpdateButton: "Aktualisieren", tribeDeleteButton: "Löschen", tribeImageLabel: "Medien hochladen (max: 50MB)", tribeTitleLabel: "Titel", - searchTribesPlaceholder: "FILTER tribes BY NAME …", - tribeTitlePlaceholder: "Name of the tribe", + searchTribesPlaceholder: "STÄMME NACH NAME FILTERN …", + tribeTitlePlaceholder: "Name des Stammes", tribeDescriptionLabel: "Beschreibung", - tribeDescriptionPlaceholder: "Describe this tribe", + tribeDescriptionPlaceholder: "Diesen Stamm beschreiben", tribeLocationLabel: "Ort", - tribeLocationPlaceholder: "Where is this tribe located?", + tribeLocationPlaceholder: "Wo befindet sich dieser Stamm?", tribeTagsLabel: "Tags", - tribeTagsPlaceholder: "Enter tags separated by commas", - tribeIsLARPLabel: "L.A.R.P. Tribe?", - tribeInviteMode: "Invite mode", + tribeTagsPlaceholder: "Tags durch Kommas getrennt eingeben", + tribeIsLARPLabel: "L.A.R.P.-Stamm?", + tribeInviteMode: "Einladungsmodus", tribeLARPLabel: "L.A.R.P.", - tribeModeLabel: "MODE", + tribeModeLabel: "Einladungsmodus", tribeIsAnonymousLabel: "STATUS", - tribeMembersCount: "Members", - tribeInviteCodePlaceholder: "Enter invite code", - tribeJoinByCodeButton: "Join with code", - tribeJoinButton: "JOIN", - tribeLeaveButton: "LEAVE", - tribeYes: "YES", - tribeNo: "NO", - tribePublic: "PUBLIC", - tribePrivate: "PRIVATE", - tribeGenerateInvite: "GENERATE CODE", - tribeCreatedAt: "Created at", - tribeAuthor: "By", + tribeMembersCount: "Mitgliederzahl", + tribeInviteCodePlaceholder: "Einladungscode eingeben", + tribeJoinByCodeButton: "Mit Code beitreten", + tribeJoinButton: "BEITRETEN", + tribeLeaveButton: "VERLASSEN", + tribeYes: "JA", + tribeNo: "NEIN", + tribePublic: "ÖFFENTLICH", + tribePrivate: "PRIVAT", + tribeGenerateInvite: "CODE GENERIEREN", + tribeCreatedAt: "Erstellt am", + tribeAuthor: "Von", tribeAuthorLabel: "AUTOR", - tribeStrict: "Strict", + tribeStrict: "Streng", tribeOpen: "Öffnen", - tribeFeedFilterRECENT: "RECENT", - tribeFeedFilterMINE: "MINE", - tribeFeedFilterALL: "ALL", + tribeFeedFilterRECENT: "NEUESTE", + tribeFeedFilterMINE: "MEINE", + tribeFeedFilterALL: "ALLE", tribeFeedFilterTOP: "TOP", - tribeFeedRefeeds: "Refeeds", - tribeFeedRefeed: "Refeed", - tribeFeedMessagePlaceholder: "Write a feed…", + tribeFeedRefeeds: "Weiterleitungen", + tribeFeedRefeed: "Weiterleiten", + tribeFeedMessagePlaceholder: "Einen Feed schreiben…", tribeFeedSend: "Senden", - tribeFeedEmpty: "No feed messages available, yet.", + tribeFeedEmpty: "Noch keine Feed-Nachrichten vorhanden.", noTribes: "Noch keine Stämme gefunden.", tribeNotFound: "Stamm nicht gefunden!", createTribeTitle: "Stamm erstellen", updateTribeTitle: "Stamm aktualisieren", tribeSectionOverview: "Übersicht", tribeSectionInhabitants: "Bewohner", - tribeSectionVotations: "Abstimmungen", - tribeSectionEvents: "Termine", + tribeSectionVotations: "ABSTIMMUNGEN", + tribeSectionEvents: "TERMINE", tribeSectionReports: "Berichte", - tribeSectionTasks: "Aufgaben", - tribeSectionFeed: "Feed", - tribeSectionForum: "Forum", + tribeSectionTasks: "AUFGABEN", + tribeSectionFeed: "FEED", + tribeSectionForum: "FORUM", tribeSectionMarket: "Markt", tribeSectionJobs: "Stellen", tribeSectionProjects: "Projekte", @@ -1749,6 +1730,16 @@ module.exports = { tribeSectionVideos: "VIDEOS", tribeSectionDocuments: "DOKUMENTE", tribeSectionBookmarks: "LESEZEICHEN", + tribeSectionMaps: "MAPS", + tribeSectionPads: "PADS", + tribeSectionChats: "CHATS", + tribeSectionCalendars: "CALENDARS", + tribePadCreate: "Create Pad", + tribeChatCreate: "Create Chat", + tribeCalendarCreate: "Create Calendar", + tribePadsEmpty: "No pads, yet.", + tribeChatsEmpty: "No chats, yet.", + tribeCalendarsEmpty: "No calendars, yet.", tribeInhabitantsEmpty: "Noch keine Bewohner in diesem Stamm.", tribeEventCreate: "Termin erstellen", tribeEventsEmpty: "Noch keine Termine.", @@ -1843,8 +1834,8 @@ module.exports = { tribePriorityMedium: "MITTEL", tribePriorityHigh: "HOCH", tribePriorityCritical: "KRITISCH", - tribeTaskFilterAll: "ALL", - tribeMediaFilterAll: "ALL", + tribeTaskFilterAll: "ALLE", + tribeMediaFilterAll: "ALLE", tribeReportCatBug: "BUG", tribeReportCatAbuse: "MISSBRAUCH", tribeReportCatContent: "INHALT", @@ -1854,7 +1845,7 @@ module.exports = { tribeForumCatQuestion: "FRAGE", tribeForumCatAnnouncement: "ANKÜNDIGUNG", tribeMarketCatGoods: "WAREN", - tribeMarketCatServices: "DIENSTLEISTUNGEN", + tribeMarketCatServices: "DIENSTE", tribeMarketCatFood: "LEBENSMITTEL", tribeMarketCatOther: "SONSTIGES", tribeStatusLabel: "Status", @@ -1866,7 +1857,7 @@ module.exports = { tribeActivityJoined: "BEIGETRETEN", tribeActivityLeft: "VERLASSEN", tribeActivityFeed: "FEED", - tribeActivityRefeed: "REFEED", + tribeActivityRefeed: "WEITERLEITUNG", tribeGroupAnalytics: "Analysen", tribeGroupCreative: "Kreativ", tribeSectionActivity: "AKTIVITÄT", @@ -1883,7 +1874,7 @@ module.exports = { tribeTrendingPeriodDay: "Heute", tribeTrendingPeriodWeek: "Diese Woche", tribeTrendingPeriodAll: "Gesamte Zeit", - tribeTrendingEngagement: "Engagement", + tribeTrendingEngagement: "Beteiligung", tribeOpinionsEmpty: "Noch keine Meinungen.", tribeOpinionsCast: "Abstimmen", tribeOpinionsRankings: "Ranglisten", @@ -1901,781 +1892,863 @@ module.exports = { tribeSearchEmpty: "Keine Ergebnisse gefunden.", tribeSearchResults: "Ergebnisse", tribeSearchMinChars: "Mindestens 2 Zeichen eingeben, um zu suchen.", - // opinionCat - opinionCatInteresting: "Interessant", - opinionCatNecessary: "Notwendig", - opinionCatUseful: "Nützlich", - opinionCatInformative: "Informativ", - opinionCatSpam: "Spam", - opinionCatTroll: "Troll", - //agenda agendaTitle: "Agenda", - agendaDescription: "Here you can find all your assigned items.", - agendaFilterAll: "ALL", - agendaFilterOpen: "OPEN", - agendaFilterClosed: "CLOSED", - agendaFilterTasks: "TASKS", - agendaFilterMarket: "MARKET", - agendaFilterTribes: "TRIBES", - agendaFilterEvents: "EVENTS", - agendaFilterReports: "REPORTS", - agendaFilterTransfers: "TRANSFERS", - agendaFilterJobs: "JOBS", - agendaFilterProjects: "PROJECTS", - agendaNoItems: "No assignments found.", - agendaAuthor: "By", - agendaDiscardButton: "Discard", - agendaRestoreButton: "Restore", - agendaCreatedAt: "Created At", + agendaDescription: "Hier findest du alle dir zugewiesenen Einträge.", + agendaFilterAll: "ALLE", + agendaFilterOpen: "OFFEN", + agendaFilterClosed: "GESCHLOSSEN", + agendaFilterTasks: "AUFGABEN", + agendaFilterMarket: "MARKT", + agendaFilterTribes: "STÄMME", + agendaFilterEvents: "TERMINE", + agendaFilterReports: "BERICHTE", + agendaFilterTransfers: "ÜBERWEISUNGEN", + agendaFilterJobs: "STELLEN", + agendaFilterProjects: "PROJEKTE", + agendaFilterCalendars: "KALENDER", + agendaNoItems: "Keine Zuweisungen gefunden.", + agendaAuthor: "Von", + agendaDiscardButton: "Verwerfen", + agendaRestoreButton: "Wiederherstellen", + agendaCreatedAt: "Erstellt am", agendaTitleLabel: "Titel", - agendaMembersCount: "Members", + agendaMembersCount: "Mitglieder", agendaDescriptionLabel: "Beschreibung", agendaStatus: "Status", - agendaVisibility: "Visibility", - agendaEventDate: "Event Date", + agendaVisibility: "Sichtbarkeit", + agendaEventDate: "Termindatum", agendaEventLocation: "Ort", agendaEventPrice: "Preis", agendaEventUrl: "URL", - agendaTaskStart: "Start Time", + agendaTaskStart: "Startzeit", agendaLocationLabel: "Ort", agendaLARPLabel: "L.A.R.P.", - agendaYes: "YES", - agendaNo: "NO", + agendaYes: "JA", + agendaNo: "NEIN", agendaInviteModeLabel: "Status", agendaAnonymousLabel: "Anonym", - agendaMembersLabel: "Members", + agendaMembersLabel: "Mitglieder", agendareportCategory: "Kategorie", - agendareportSeverity: "Severity", + agendareportSeverity: "Schweregrad", agendareportStatus: "Status", agendareportDescription: "Beschreibung", - agendaTaskEnd: "End Time", + agendaTaskEnd: "Endzeit", agendaTaskPriority: "Priorität", agendaTransferFrom: "Von", agendaTransferTo: "An", - agendaTransferConcept: "Concept", + agendaTransferConcept: "Konzept", agendaTransferAmount: "Betrag", - agendaTransferDeadline: "Deadline", + agendaTransferDeadline: "Frist", agendaTransferFrom: "Von", agendaTransferTo: "An", - agendaTransferConcept: "Concept", + agendaTransferConcept: "Konzept", agendaTransferAmount: "Betrag", - agendaTransferDeadline: "Deadline", - //opinions + agendaTransferDeadline: "Frist", opinionsTitle: "Meinungen", - shareYourOpinions: "Discover and vote for opinions in your network.", - author: "By", - voteNow: "Vote now", - alreadyVoted: "You have already opined.", - noOpinionsFound: "No opinions found.", - ALLButton: "ALL", - MINEButton: "MINE", - RECENTButton: "RECENT", + shareYourOpinions: "Meinungen in deinem Netzwerk entdecken und bewerten.", + author: "Von", + voteNow: "Jetzt abstimmen", + alreadyVoted: "Du hast bereits abgestimmt.", + noOpinionsFound: "Keine Meinungen gefunden.", + ALLButton: "ALLE", + MINEButton: "MEINE", + RECENTButton: "NEUESTE", TOPButton: "TOP", - interestingButton: "INTERESTING", - necessaryButton: "NECESSARY", - funnyButton: "FUNNY", - disgustingButton: "DISGUSTING", - sensibleButton: "SENSIBLE", + interestingButton: "INTERESSANT", + necessaryButton: "NOTWENDIG", + funnyButton: "LUSTIG", + disgustingButton: "WIDERLICH", + sensibleButton: "SENSIBEL", propagandaButton: "PROPAGANDA", - adultOnlyButton: "ADULT ONLY", - boringButton: "BORING", - confusingButton: "CONFUSING", - inspiringButton: "INSPIRING", + adultOnlyButton: "NUR FÜR ERWACHSENE", + boringButton: "LANGWEILIG", + confusingButton: "VERWIRREND", + inspiringButton: "INSPIRIEREND", spamButton: "SPAM", - usefulButton: "USEFUL", - informativeButton: "INFORMATIVE", - wellResearchedButton: "WELL RESEARCHED", - accurateButton: "ACCURATE", - needsSourcesButton: "NEEDS SOURCES", - wrongButton: "WRONG", - lowQualityButton: "LOW QUALITY", - creativeButton: "CREATIVE", - insightfulButton: "INSIGHTFUL", - actionableButton: "ACTIONABLE", - inspiringButton: "INSPIRING", - loveButton: "LOVE", - clearButton: "CLEAR", - upliftingButton: "UPLIFTING", - unnecessaryButton: "UNNECESSARY", - rejectedButton: "REJECTED", - misleadingButton: "MISLEADING", - offTopicButton: "OFF TOPIC", - duplicateButton: "DUPLICATE", + usefulButton: "NÜTZLICH", + informativeButton: "INFORMATIV", + wellResearchedButton: "GUT RECHERCHIERT", + accurateButton: "ZUTREFFEND", + needsSourcesButton: "QUELLEN NÖTIG", + wrongButton: "FALSCH", + lowQualityButton: "NIEDRIGE QUALITÄT", + creativeButton: "KREATIV", + insightfulButton: "AUFSCHLUSSREICH", + actionableButton: "UMSETZBAR", + inspiringButton: "INSPIRIEREND", + loveButton: "LIEBE", + clearButton: "KLAR", + upliftingButton: "ERHEBEND", + unnecessaryButton: "UNNÖTIG", + rejectedButton: "ABGELEHNT", + misleadingButton: "IRREFÜHREND", + offTopicButton: "THEMENFREMD", + duplicateButton: "DUPLIKAT", clickbaitButton: "CLICKBAIT", spamButton: "SPAM", trollButton: "TROLL", nsfwButton: "NSFW", - violentButton: "VIOLENT", - toxicButton: "TOXIC", - harassmentButton: "HARASSMENT", - hateButton: "HATE", - scamButton: "SCAM", - triggeringButton: "TRIGGERING", - opinionsCreatedAt: "Created At", - opinionsTotalCount: "Total Opinions", - voteInteresting: "Interesting", - voteNecessary: "Necessary", - voteUseful: "Useful", - voteInformative: "Informative", - voteWellResearched: "Well researched", - voteNeedsSources: "Needs sources", - voteWrong: "Wrong", - voteLowQuality: "Low quality", - voteLove: "Love", + violentButton: "GEWALT", + toxicButton: "TOXISCH", + harassmentButton: "BELÄSTIGUNG", + hateButton: "HASS", + scamButton: "BETRUG", + triggeringButton: "TRIGGERND", + opinionsCreatedAt: "Erstellt am", + opinionsTotalCount: "Meinungen gesamt", + voteInteresting: "Interessant", + voteNecessary: "Notwendig", + voteUseful: "Nützlich", + voteInformative: "Informativ", + voteWellResearched: "Gut recherchiert", + voteNeedsSources: "Quellen nötig", + voteWrong: "Falsch", + voteLowQuality: "Niedrige Qualität", + voteLove: "Liebe", voteClear: "Leeren", - voteMisleading: "Misleading", - voteOffTopic: "Off topic", - voteDuplicate: "Duplicate", + voteMisleading: "Irreführend", + voteOffTopic: "Themenfremd", + voteDuplicate: "Duplikat", voteClickbait: "Clickbait", votePropaganda: "Propaganda", - voteFunny: "Funny", - voteInspiring: "Inspiring", - voteUplifting: "Uplifting", - voteUnnecessary: "Unnecessary", + voteFunny: "Lustig", + voteInspiring: "Inspirierend", + voteUplifting: "Erhebend", + voteUnnecessary: "Unnötig", voteRejected: "Abgelehnt", - voteConfusing: "Confusing", + voteConfusing: "Verwirrend", voteTroll: "Troll", voteNsfw: "NSFW", - voteViolent: "Violent", - voteToxic: "Toxic", - voteHarassment: "Harassment", - voteHate: "Hate", - voteScam: "Scam", - voteTriggering: "Triggering", - voteInsightful: "Insightful", - voteAccurate: "Accurate", - voteActionable: "Actionable", - voteCreative: "Creative", + voteViolent: "Gewalt", + voteToxic: "Toxisch", + voteHarassment: "Belästigung", + voteHate: "Hass", + voteScam: "Betrug", + voteTriggering: "Triggernd", + voteInsightful: "Aufschlussreich", + voteAccurate: "Zutreffend", + voteActionable: "Umsetzbar", + voteCreative: "Kreativ", voteSpam: "Spam", - voteAdultOnly: "Adult Only", - //inbox - publishBlog: "Publish Blog", - privateMessage: "PM", - pmSendTitle: "Private Messages", - pmSend: "Send!", - pmDescription: "Use this form to send an encrypted message to other inhabitants.", - pmRecipients: "Recipients", - pmRecipientsHint: "Enter Oasis IDs separated by commas", - pmSubject: "Subject", - pmSubjectHint: "Enter the message subject", - pmText: "Message", - pmFile: "Attachment", + voteAdultOnly: "Nur für Erwachsene", + publishBlog: "Blog veröffentlichen", + privateMessage: "PN", + pmSendTitle: "Private Nachrichten", + pmSend: "Senden!", + pmDescription: "Verwende dieses Formular, um eine verschlüsselte Nachricht an andere Bewohner zu senden.", + pmRecipients: "Empfänger", + pmRecipientsHint: "Oasis-IDs durch Kommas getrennt eingeben", + pmSubject: "Betreff", + pmSubjectHint: "Nachrichtenbetreff eingeben", + pmText: "Nachricht", + pmFile: "Anhang", private: "Privat", - privateDescription: "Your encrypted messages.", + privateDescription: "Deine verschlüsselten Nachrichten.", privateInbox: "Posteingang", - privateSent: "Sent", + privateSent: "GESENDET", privateDelete: "Löschen", pmCreateButton: "PM schreiben", - noPrivateMessages: "No private messages.", - pmFromLabel: "From:", - pmToLabel: "To:", - pmInvalidMessage: "Invalid message", - pmNoSubject: "(no subject)", + noPrivateMessages: "Keine privaten Nachrichten.", + pmFromLabel: "Von:", + pmToLabel: "An:", + pmInvalidMessage: "Ungültige Nachricht", + pmNoSubject: "(kein Betreff)", pmSubjectLabel: "Betreff:", pmBodyLabel: "Inhalt", - pmBotJobs: "42-JobsBOT", - pmBotProjects: "42-ProjectsBOT", - pmBotMarket: "42-MarketBOT", - inboxJobSubscribedTitle: "New subscription to your job offer", - pmInhabitantWithId: "Inhabitant with OASIS ID:", - pmHasSubscribedToYourJobOffer: "has subscribed to your job offer", - inboxProjectCreatedTitle: "New project created", - pmHasCreatedAProject: "has created a project", - inboxMarketItemSoldTitle: "Item Sold", - pmYourItem: "Your item", - pmHasBeenSoldTo: "has been sold to", - pmFor: "for", - inboxProjectPledgedTitle: "New pledge to your project", - pmHasPledged: "has pledged", - pmToYourProject: "to your project", - //blockexplorer + pmBotJobs: "42-StellenBOT", + pmBotProjects: "42-ProjekteBOT", + pmBotMarket: "42-MarktBOT", + inboxJobSubscribedTitle: "Neues Abonnement deines Stellenangebots", + pmInhabitantWithId: "Bewohner mit OASIS-ID:", + pmHasSubscribedToYourJobOffer: "hat dein Stellenangebot abonniert", + inboxProjectCreatedTitle: "Neues Projekt erstellt", + pmHasCreatedAProject: "hat ein Projekt erstellt", + inboxMarketItemSoldTitle: "Artikel verkauft", + pmYourItem: "Dein Artikel", + pmHasBeenSoldTo: "wurde verkauft an", + pmFor: "für", + inboxProjectPledgedTitle: "Neue Zusage für dein Projekt", + pmHasPledged: "hat zugesagt", + pmToYourProject: "für dein Projekt", blockchain: 'BlockExplorer', blockchainTitle: 'BlockExplorer', - blockchainDescription: 'Explore and visualize the blocks in the blockchain.', - blockchainNoBlocks: 'No blocks found in the blockchain.', - blockchainBlockID: 'Block ID', - blockchainBlockAuthor: 'Author', - blockchainBlockType: 'Type', - blockchainBlockTimestamp: 'Timestamp', + blockchainDescription: 'Blöcke in der Blockchain erkunden und visualisieren.', + blockchainNoBlocks: 'Keine Blöcke in der Blockchain gefunden.', + blockchainBlockID: 'Block-ID', + blockchainBlockAuthor: 'Autor', + blockchainBlockType: 'Typ', + blockchainBlockTimestamp: 'Zeitstempel', blockchainBlockContent: 'Block', blockchainBlockURL: 'URL:', blockchainContent: 'Block', - blockchainContentPreview: 'Preview of the block content', + blockchainContentPreview: 'Vorschau des Blockinhalts', blockchainLatestDatagram: 'Letztes Datagramm', blockchainDatagram: 'Datagramm', - blockchainDetails: 'View block details', - blockchainBlockInfo: 'Block Information', - blockchainBlockDetails: 'Details of the selected block', - blockchainBack: 'Back to Blockexplorer', - blockchainContentDeleted: "This content has been tombstoned", + blockchainDetails: 'Blockdetails anzeigen', + blockchainBlockInfo: 'Blockinformationen', + blockchainBlockDetails: 'Details des ausgewählten Blocks', + blockchainBack: 'Zurück zum BlockExplorer', + blockchainContentDeleted: "Dieser Inhalt wurde gelöscht (Tombstone)", visitContent: "Inhalt besuchen", - //banking - banking: 'Banking', - bankingTitle: 'Banking', - bankingDescription: 'Explore the current value of ECOin and the corresponding UBI allocation, distributed per epoch based on participation and trust.', - bankOverview: 'Overview', - bankEpochs: 'Epochs', - bankRules: 'Rules', - pending: 'Pending', - closed: 'Closed', - bankBack: 'Back to Banking', - bankViewTx: 'View Tx', - bankClaimNow: 'Claim now', - bankPubBalance: 'PUB Balance', - bankEpoch: 'Epoch', - bankPool: 'Pool (this epoch)', - bankWeightsSum: 'Sum of weights', - bankAllocations: 'Allocations', - bankNoAllocations: 'No allocations found.', - bankNoEpochs: 'No epochs found.', - bankEpochAllocations: 'Epoch allocations', - bankAllocId: 'Allocation ID', - bankAllocDate: 'Date', - bankAllocConcept: 'Concept', - bankAllocFrom: 'From', - bankAllocTo: 'To', - bankAllocAmount: 'Amount', + banking: 'Bankwesen', + bankingTitle: 'Bankwesen', + bankingDescription: 'Den aktuellen Wert von ECOin und die entsprechende UBI-Zuweisung erkunden, die pro Epoche basierend auf Teilnahme und Vertrauen verteilt wird.', + bankOverview: 'Übersicht', + bankEpochs: 'Epochen', + bankRules: 'Regeln', + pending: 'Ausstehend', + closed: 'Geschlossen', + bankBack: 'Zurück zum Bankwesen', + bankViewTx: 'Tx anzeigen', + bankClaimNow: 'Jetzt beanspruchen', + bankClaimUBI: 'UBI beanspruchen!', + bankClaimAndPay: 'Claim & Pay', + bankClaimedPending: 'Claim pending...', + bankStatusUnclaimed: 'Unclaimed', + bankStatusClaimed: 'Claimed', + bankStatusExpired: 'Expired', + bankPubOnly: 'PUB-only operation', + bankNoPendingUBI: 'Keine ausstehenden UBI-Zuweisungen für diese Epoche.', + bankEpoch: 'Epoche', + bankPool: 'Pool (diese Epoche)', + bankWeightsSum: 'Gewichtssumme', + bankAllocations: 'Zuweisungen', + bankNoAllocations: 'Keine Zuweisungen gefunden.', + bankNoEpochs: 'Keine Epochen gefunden.', + bankEpochAllocations: 'Epochen-Zuweisungen', + bankAllocId: 'Zuweisungs-ID', + bankAllocDate: 'Datum', + bankAllocConcept: 'Konzept', + bankAllocFrom: 'Von', + bankAllocTo: 'An', + bankAllocAmount: 'Betrag', bankAllocStatus: 'Status', - bankEpochId: 'Epoch ID', - bankRuleHash: 'Rules Snapshot Hash', - bankViewEpoch: 'View Epoch', - bankUserBalance: 'Your Balance', - ecoWalletNotConfigured: 'ECOin Wallet not configured', - editWallet: 'Edit wallet', - addWallet: 'Add wallet', - bankAddresses: 'Addresses', - bankNoAddresses: 'No addresses found.', - bankUser: 'Oasis ID', - bankAddress: 'Address', - bankAddAddressTitle: 'Add ECOIN address', - bankAddAddressUser: 'Oasis ID', - bankAddAddressAddress: 'ECOIN Address', - bankAddAddressSave: 'Save', - bankAddressAdded: 'Address added', - bankAddressUpdated: 'Address updated', - bankAddressExists: 'Address already exists', - bankAddressInvalid: 'Invalid address', - bankAddressDeleted: 'Address deleted', - bankAddressNotFound: 'Address not found', - bankAddressTotal: 'Total Addresses', - bankAddressSearch: 'Search @inhabitant or address', - bankAddressActions: 'Actions', - bankAddressDelete: 'Delete', - bankAddressSource: 'Source', - bankAddressDeleteConfirm: 'Delete this address?', - search: 'Search!', - bankLocal: 'Local', + bankEpochId: 'Epochen-ID', + bankRuleHash: 'Regelversions-Hash', + bankViewEpoch: 'Epoche anzeigen', + bankUserBalance: 'Dein Kontostand', + ecoWalletNotConfigured: 'ECOin Wallet nicht konfiguriert', + editWallet: 'Geldbörse bearbeiten', + addWallet: 'Geldbörse hinzufügen', + bankAddresses: 'Adressen', + bankNoAddresses: 'Keine Adressen gefunden.', + bankUser: 'Oasis-ID', + bankAddress: 'Adresse', + bankAddAddressTitle: 'ECOIN-Adresse hinzufügen', + bankAddAddressUser: 'Oasis-ID', + bankAddAddressAddress: 'ECOIN-Adresse', + bankAddAddressSave: 'Speichern', + bankAddressAdded: 'Adresse hinzugefügt', + bankAddressUpdated: 'Adresse aktualisiert', + bankAddressExists: 'Adresse bereits vorhanden', + bankAddressInvalid: 'Ungültige Adresse', + bankAddressDeleted: 'Adresse gelöscht', + bankAddressNotFound: 'Adresse nicht gefunden', + bankAddressTotal: 'Adressen gesamt', + bankAddressSearch: 'Nach @Bewohner oder Adresse suchen', + bankAddressActions: 'Aktionen', + bankAddressDelete: 'Löschen', + bankAddressSource: 'Quelle', + bankAddressDeleteConfirm: 'Diese Adresse löschen?', + search: 'Suchen!', + bankLocal: 'Lokal', bankFromOasis: 'Oasis', - bankMyAddress: 'Your address', - bankRemoveMyAddress: 'Remove my address', - bankNotRemovableOasis: 'Addresses cannot be removed locally', - bankingFutureUBI: "Estimated UBI Allocation", - bankExchange: 'Exchange', - bankExchangeCurrentValue: 'ECOin Value (1h)', - bankTotalSupply: 'ECOin Total Supply', - bankEcoinHours: "ECOin Equivalence in Time", - bankHoursOfWork: 'hours', - bankExchangeNoData: 'No data available', - bankExchangeIndex: 'ECOin Value (1h)', - bankInflation: 'ECOin Inflation', - bankCurrentSupply: 'ECOin Current Supply', - bankingSyncStatus: 'ECOin Status', - bankingSyncStatusSynced: 'Synced', - bankingSyncStatusOutdated: 'Outdated', - //stats - statsTitle: 'Statistics', + bankMyAddress: 'Deine Adresse', + bankRemoveMyAddress: 'Meine Adresse entfernen', + bankNotRemovableOasis: 'Adressen können nicht lokal entfernt werden', + bankingFutureUBI: "UBI", + pubIdTitle: "PUB Wallet", + pubIdDescription: "Set the PUB OASIS ID. This will be used for PUB transactions (including the UBI).", + pubIdLabel: "PUB ID", + pubIdSave: "Save configuration", + pubIdPlaceholder: "@PUB_ID.ed25519", + bankUbiAvailableNo: "KEIN GUTHABEN!", + bankUbiAvailableOk: "VERFÜGBAR!", + bankUbiAvailability: "UBI-Verfügbarkeit", + bankAlreadyClaimedThisMonth: "Diesen Monat bereits beansprucht", + bankUbiThisMonth: "UBI (diesen Monat)", + bankUbiLastClaimed: "UBI (zuletzt beansprucht)", + bankUbiNeverClaimed: "Nie beansprucht", + bankUbiTotalClaimed: "UBI (gesamt beansprucht)", + bankUbiPub: "PUB", + bankUbiInhabitant: "BEWOHNER", + bankUbiClaimedAmount: "BEANSPRUCHT (ECO)", + typeBankUbiResult: "BANKING - UBI", + bankNoPubConfigured: "Kein PUB konfiguriert. Lege deine PUB-ID in den Einstellungen fest.", + shopsTitle: "Shops", + shopDescription: "Shops im Netzwerk entdecken und verwalten.", + shopTitle: "Shop", + shopFilterAll: "ALLE", + shopFilterMine: "MEINE", + shopFilterRecent: "NEUESTE", + shopFilterTop: "TOP", + shopFilterProducts: "PRODUKTE", + shopFilterPrices: "PREISE", + shopFilterFavorites: "FAVORITEN", + shopUpload: "Shop erstellen", + shopAllSectionTitle: "Alle Shops", + shopMineSectionTitle: "Meine Shops", + shopRecentSectionTitle: "Neueste Shops", + shopTopSectionTitle: "Top Shops", + shopProductsSectionTitle: "Top Produkte", + shopPricesSectionTitle: "Produkte nach Preis", + shopFavoritesSectionTitle: "Favoriten", + shopCreateSectionTitle: "Shop erstellen", + shopUpdateSectionTitle: "Shop aktualisieren", + shopCreate: "Erstellen", + shopUpdate: "Aktualisieren", + shopDelete: "Löschen", + shopAddFavorite: "Favorit hinzufügen", + shopRemoveFavorite: "Favorit entfernen", + shopOpen: "OFFEN", + shopClosed: "GESCHLOSSEN", + shopOpenShop: "Shop öffnen", + shopCloseShop: "Shop schließen", + shopProducts: "Produkte", + shopProductAdd: "Produkt hinzufügen", + shopProductTitle: "Produkt", + shopProductUpdate: "Produkt aktualisieren", + shopProductPrice: "Preis (ECO)", + shopProductStock: "Bestand", + shopProductUntitled: "Produkt ohne Titel", + shopUntitled: "Shop ohne Titel", + shopNoItems: "Keine Shops gefunden.", + shopNoProducts: "Noch keine Produkte.", + shopOutOfStock: "Ausverkauft", + shopBuy: "Kaufen", + shopBackToShop: "Zurück zum Shop", + shopShareUrl: "URL teilen", + shopVisitShop: "SHOP BESUCHEN", + shopStatus: "STATUS", + shopCreatedAt: "ERSTELLT", + shopSearchPlaceholder: "Shops suchen...", + shopUrl: "URL", + shopLocation: "Standort", + shopTags: "Tags", + shopVisibility: "Sichtbarkeit", + shopImage: "Bild", + shopShortDescription: "Kurzbeschreibung", + shopShortDescriptionPlaceholder: "Kurzbeschreibung fuer Shopkarten (max. 160 Zeichen)", + shopTitlePlaceholder: "Name Ihres Shops", + shopDescriptionPlaceholder: "Detaillierte Beschreibung Ihres Shops", + shopUrlPlaceholder: "https://ihre-shop-url.com", + shopLocationPlaceholder: "Stadt, Land", + shopTagsPlaceholder: "tag1, tag2, tag3", + mapTitlePlaceholder: "Kartentitel", + shopProductFeatured: "Hervorgehobenes Produkt", + shopSendToMarket: "Send to Market", + typeShop: "SHOP", + typeShopProduct: "SHOP-PRODUKT", + bankExchange: 'Umtausch', + bankExchangeCurrentValue: 'ECOin-Wert (1h)', + bankTotalSupply: 'ECOin Gesamtmenge', + bankEcoinHours: "ECOin-Äquivalent in Zeit", + bankHoursOfWork: 'Stunden', + bankUnitMs: "ms", + bankUnitSeconds: "Sekunden", + bankUnitMinutes: "Minuten", + bankUnitDays: "Tage", + bankExchangeNoData: 'Keine Daten verfügbar', + bankExchangeIndex: 'ECOin-Wert (1h)', + bankInflation: 'ECOin-Inflation (anual)', + bankInflationMonthly: 'ECOin-Inflation (mensual)', + bankCurrentSupply: 'ECOin aktuelle Menge', + bankingSyncStatus: 'ECOin-Status', + bankingSyncStatusSynced: 'Synchronisiert', + bankingSyncStatusOutdated: 'Veraltet', + statsTitle: 'Statistiken', statistics: "Statistiken", - statsInhabitant: "Inhabitant Stats", - statsDescription: "Discover statistics about your network.", - ALLButton: "ALL", - MINEButton: "MINE", + statsInhabitant: "Bewohner-Statistiken", + statsDescription: "Entdecke Statistiken über dein Netzwerk.", + ALLButton: "ALLE", + MINEButton: "MEINE", TOMBSTONEButton: "TOMBSTONES", - statsYou: "You", - statsUserId: "Oasis ID", - statsCreatedAt: "Created At", + statsYou: "Du", + statsUserId: "Oasis-ID", + statsCreatedAt: "Erstellt am", statsYourContent: "Inhalt", statsYourOpinions: "Meinungen", statsYourTombstone: "Tombstones", - statsNetwork: "Network", + statsNetwork: "Netzwerk", statsTotalInhabitants: "Bewohner", - statsDiscoveredTribes: "Tribes (Public)", - statsPrivateDiscoveredTribes: "Tribes (Private)", + statsDiscoveredTribes: "Stämme (Öffentlich)", + statsPrivateDiscoveredTribes: "Stämme (Privat)", statsNetworkContent: "Inhalt", statsYourMarket: "Markt", statsYourJob: "Stellen", statsYourProject: "Projekte", statsYourTransfer: "Überweisungen", - statsYourForum: "Forums", + statsYourForum: "Foren", statsNetworkOpinions: "Meinungen", statsDiscoveredMarket: "Markt", statsDiscoveredJob: "Stellen", statsDiscoveredProject: "Projekte", statsBankingTitle: "Bankwesen", statsEcoWalletLabel: "ECOIN Wallet", - statsEcoWalletNotConfigured: "Not configured!", - statsTotalEcoAddresses: "Total addresses", + statsEcoWalletNotConfigured: "Nicht konfiguriert!", + statsTotalEcoAddresses: "Adressen gesamt", statsDiscoveredTransfer: "Überweisungen", - statsDiscoveredForum: "Forums", + statsDiscoveredForum: "Foren", statsNetworkTombstone: "Tombstones", statsBookmark: "Lesezeichen", statsEvent: "Termine", statsTask: "Aufgaben", - statsVotes: "Abstimmungen", + statsVotes: "Stimmen", statsMarket: "Markt", - statsForum: "Forums", + statsForum: "Foren", statsJob: "Stellen", statsProject: "Projekte", statsReport: "Berichte", statsFeed: "Feeds", - statsTribe: "Tribes", + statsTribe: "Stämme", statsImage: "Bilder", statsAudio: "Audios", statsVideo: "Videos", statsDocument: "Dokumente", + statsMap: "Karten", + statsShop: "Shops", + statsShopProduct: "Shop-Produkte", statsTransfer: "Überweisungen", - statsAiExchange: "AI", + statsAiExchange: "KI", statsPUBs: 'PUBs', statsPost: "Beiträge", - statsOasisID: "Oasis ID", - statsSize: "Total (size)", - statsBlockchainSize: "Blockchain (size)", - statsBlobsSize: "Blobs (size)", - statsActivity7d: "Activity (last 7 days)", - statsActivity7dTotal: "7-day total", - statsActivity30dTotal: "30-day total", - statsKarmaScore: "KARMA Score", + statsOasisID: "Oasis-ID", + statsSize: "Gesamt (Größe)", + statsBlockchainSize: "Blockchain (Größe)", + statsBlobsSize: "Blobs (Größe)", + statsActivity7d: "Aktivität (letzte 7 Tage)", + statsActivity7dTotal: "7-Tage-Gesamt", + statsActivity30dTotal: "30-Tage-Gesamt", + statsKarmaScore: "KARMA-Punktzahl", statsPublic: "Öffentlich", statsPrivate: "Privat", - day: "Day", - messages: "Messages", + day: "TAG", + messages: "Nachrichten", statsProject: "Projekte", statsProjectsTitle: "Projekte", - statsProjectsTotal: "Total projects", + statsProjectsTotal: "Projekte gesamt", statsProjectsActive: "Aktiv", statsProjectsCompleted: "Abgeschlossen", statsProjectsPaused: "Pausiert", statsProjectsCancelled: "Abgebrochen", - statsProjectsGoalTotal: "Total goal", - statsProjectsPledgedTotal: "Total pledged", - statsProjectsSuccessRate: "Success rate", - statsProjectsAvgProgress: "Average progress", - statsProjectsMedianProgress: "Median progress", - statsProjectsActiveFundingAvg: "Avg. active funding", + statsProjectsGoalTotal: "Ziel gesamt", + statsProjectsPledgedTotal: "Zugesagt gesamt", + statsProjectsSuccessRate: "Erfolgsquote", + statsProjectsAvgProgress: "Durchschnittlicher Fortschritt", + statsProjectsMedianProgress: "Medianer Fortschritt", + statsProjectsActiveFundingAvg: "Durchschn. aktive Finanzierung", statsJobsTitle: "Stellen", - statsJobsTotal: "Total jobs", + statsJobsTotal: "Stellen gesamt", statsJobsOpen: "Öffnen", - statsJobsClosed: "Closed", - statsJobsOpenVacants: "Open vacants", - statsJobsSubscribersTotal: "Total subscribers", - statsJobsAvgSalary: "Average salary", - statsJobsMedianSalary: "Median salary", + statsJobsClosed: "Geschlossen", + statsJobsOpenVacants: "Offene Stellen", + statsJobsSubscribersTotal: "Abonnenten gesamt", + statsJobsAvgSalary: "Durchschnittsgehalt", + statsJobsMedianSalary: "Mediangehalt", statsMarketTitle: "Markt", - statsMarketTotal: "Total items", - statsMarketForSale: "For sale", - statsMarketReserved: "Reserved", - statsMarketClosed: "Closed", - statsMarketSold: "Sold", + statsMarketTotal: "Artikel gesamt", + statsMarketForSale: "Zum Verkauf", + statsMarketReserved: "Reserviert", + statsMarketClosed: "Geschlossen", + statsMarketSold: "Verkauft", statsMarketRevenue: "Umsatz", - statsMarketAvgSoldPrice: "Avg. sold price", + statsMarketAvgSoldPrice: "Durchschn. Verkaufspreis", statsUsersTitle: "Bewohner", - user: "Inhabitant", + user: "Bewohner", statsTombstoneTitle: "Tombstones", - statsNetworkTombstones: "Network tombstones", - statsTombstoneRatio: "Tombstone ratio (%)", - statsAITraining: "AI Training", - statsAIExchanges: "Exchanges", - statsParliamentCandidature: "Parliament candidatures", - statsParliamentTerm: "Parliament terms", - statsParliamentProposal: "Parliament proposals", - statsParliamentRevocation: "Parliament revocations", - statsParliamentLaw: "Parliament laws", - statsCourtsCase: "Court cases", - statsCourtsEvidence: "Court evidence", - statsCourtsAnswer: "Court answers", - statsCourtsVerdict: "Court verdicts", - statsCourtsSettlement: "Court settlements", - statsCourtsSettlementProposal: "Settlement proposals", - statsCourtsSettlementAccepted: "Settlements accepted", - statsCourtsNomination: "Judge nominations", - statsCourtsNominationVote: "Nomination votes", - //AI - ai: "AI", - aiTitle: "AI", - aiDescription: "A Collective Artificial Intelligence (CAI) called '42' that learns from your network.", - aiInputPlaceholder: "What's up?", - aiUserQuestion: "Question", + statsNetworkTombstones: "Netzwerk-Tombstones", + statsTombstoneRatio: "Tombstone-Anteil (%)", + statsAITraining: "KI-Training", + statsAIExchanges: "Austausche", + statsParliamentCandidature: "Parlamentskandidaturen", + statsParliamentTerm: "Parlamentsperioden", + statsParliamentProposal: "Parlamentsvorschläge", + statsParliamentRevocation: "Parlamentswiderrufe", + statsParliamentLaw: "Parlamentsgesetze", + statsCourtsCase: "Gerichtsfälle", + statsCourtsEvidence: "Gerichtsbeweise", + statsCourtsAnswer: "Gerichtsantworten", + statsCourtsVerdict: "Gerichtsurteile", + statsCourtsSettlement: "Gerichtsvergleiche", + statsCourtsSettlementProposal: "Vergleichsvorschläge", + statsCourtsSettlementAccepted: "Vergleiche angenommen", + statsCourtsNomination: "Richternominierungen", + statsCourtsNominationVote: "Nominierungsabstimmungen", + ai: "KI", + aiTitle: "KI", + aiDescription: "Eine kollektive künstliche Intelligenz (KKI) namens '42', die von deinem Netzwerk lernt.", + aiInputPlaceholder: "Was gibt es Neues?", + aiUserQuestion: "Frage", aiResponseTitle: "Antworten", - aiSubmitButton: "Send!", - aiSettingsDescription: "Set your prompt (max 128 characters) for the AI model.", - aiPrompt: "Provide an informative and precise response.", - aiConfiguration: "Set prompt", + aiSubmitButton: "Senden!", + aiSettingsDescription: "Setze deinen Prompt (max. 128 Zeichen) für das KI-Modell.", + aiPrompt: "Gib eine informative und präzise Antwort.", + aiConfiguration: "Prompt setzen", aiPromptUsed: "Prompt", - aiClearHistory: "Clear chat history", - aiSharePrompt: "Add this answer to collective training?", + aiClearHistory: "Chatverlauf löschen", + aiSharePrompt: "Diese Antwort zum kollektiven Training hinzufügen?", aiShareYes: "Ja", aiShareNo: "Nein", - aiSharedLabel: "Added to training", - aiRejectedLabel: "Not added to training", - aiServerError: "The AI could not answer. Please try again.", - aiInputPlaceholder: "What is Oasis?", - typeAiExchange: "AI", - aiApproveTrain: "Add to collective training", - aiRejectTrain: "Do not train", - aiTrainPending: "Pending approval", - aiTrainApproved: "Approved for training", - aiTrainRejected: "Rejected for training", - aiSnippetsUsed: "Snippets used", - aiSnippetsLearned: "Snippets learned", - statsAITraining: "AI training", - aiApproveCustomTrain: "Train using this custom answer", - aiCustomAnswerPlaceholder: "Write your custom answer…", - statsAIExchanges: "Model Exchanges", - //market - marketMineSectionTitle: "Your Items", - marketCreateSectionTitle: "Create Item", + aiSharedLabel: "Zum Training hinzugefügt", + aiRejectedLabel: "Nicht zum Training hinzugefügt", + aiServerError: "Die KI konnte nicht antworten. Bitte versuche es erneut.", + aiInputPlaceholder: "Was gibt es Neues?", + typeAiExchange: "KI", + aiApproveTrain: "Zum kollektiven Training hinzufügen", + aiRejectTrain: "Nicht trainieren", + aiTrainPending: "Genehmigung ausstehend", + aiTrainApproved: "Für Training genehmigt", + aiTrainRejected: "Für Training abgelehnt", + aiSnippetsUsed: "Verwendete Fragmente", + aiSnippetsLearned: "Erlernte Fragmente", + statsAITraining: "KI-Training", + aiApproveCustomTrain: "Mit dieser benutzerdefinierten Antwort trainieren", + aiCustomAnswerPlaceholder: "Schreibe deine benutzerdefinierte Antwort…", + statsAIExchanges: "Austausche", + marketMineSectionTitle: "Deine Artikel", + marketCreateSectionTitle: "Artikel erstellen", marketUpdateSectionTitle: "Aktualisieren", marketAllSectionTitle: "Markt", - marketRecentSectionTitle: "Recent Market", + marketRecentSectionTitle: "Neueste Marktartikel", marketTitle: "Markt", - marketDescription: "A marketplace for exchanging goods or services in your network.", - marketFilterAll: "ALL", - marketFilterMine: "MINE", - marketFilterAuctions: "AUCTIONS", - marketFilterItems: "EXCHANGE", - marketFilterNew: "NEW", - marketFilterUsed: "USED", - marketFilterBroken: "BROKEN", - marketFilterForSale: "FOR SALE", - marketFilterSold: "SOLD", - marketFilterDiscarded: "DISCARDED", - marketFilterRecent: "RECENT", - marketFilterMyBids: "BIDS", - marketCreateButton: "Create Item", + marketDescription: "Ein Marktplatz zum Austausch von Waren oder Dienstleistungen in deinem Netzwerk.", + marketFilterAll: "ALLE", + marketFilterMine: "MEINE", + marketFilterAuctions: "AUKTIONEN", + marketFilterItems: "TAUSCH", + marketFilterNew: "NEU", + marketFilterUsed: "GEBRAUCHT", + marketFilterBroken: "DEFEKT", + marketFilterForSale: "ZU VERKAUFEN", + marketFilterSold: "VERKAUFT", + marketFilterDiscarded: "VERWORFEN", + marketFilterRecent: "NEUESTE", + marketFilterMyBids: "GEBOTE", + marketCreateButton: "Artikel erstellen", marketItemType: "Typ", marketItemTitle: "Titel", - marketItemAvailable: "Deadline", + marketItemAvailable: "Frist", marketItemDescription: "Beschreibung", - marketItemDescriptionPlaceholder: "Describe the item you're selling", + marketItemDescriptionPlaceholder: "Beschreibe den Artikel, den du verkaufst", marketItemStatus: "Status", - marketItemCondition: "Condition", + marketShopLabel: "Shop", + marketItemCondition: "Zustand", marketItemPrice: "Preis", marketItemTags: "Tags", - marketItemTagsPlaceholder: "Enter tags separated by commas", - marketItemDeadline: "Deadline", - marketItemIncludesShipping: "Includes Shipping?", - marketItemHighestBid: "Highest Bid", - marketItemHighestBidder: "Highest Bidder", - marketItemStock: "Stock", - marketOutOfStock: "Out of stock", - marketItemBidTime: "Bid Time", + marketItemTagsPlaceholder: "Tags durch Kommas getrennt eingeben", + marketItemDeadline: "Frist", + marketItemIncludesShipping: "Versand inklusive?", + marketItemHighestBid: "Höchstgebot", + marketItemHighestBidder: "Höchstbietender", + marketItemStock: "Bestand", + marketOutOfStock: "Nicht vorrätig", + marketItemBidTime: "Gebotszeit", marketActionsUpdate: "Aktualisieren", - marketUpdateButton: "Update Item!", + marketUpdateButton: "Artikel aktualisieren!", marketActionsDelete: "Löschen", - marketActionsSold: "Mark as Sold", - marketActionsChangeStatus: "CHANGE STATUS", - marketActionsBuy: "BUY!", - marketAuctionBids: "Current Bids", - marketPlaceBidButton: "Place Bid", - marketItemSeller: "Seller", - marketNoItems: "No items available, yet.", - marketYourBid: "Your Bid", + marketActionsSold: "Als verkauft markieren", + marketActionsChangeStatus: "STATUS ÄNDERN", + marketActionsBuy: "KAUFEN!", + marketAuctionBids: "Aktuelle Gebote", + marketPlaceBidButton: "Gebot abgeben", + marketItemSeller: "Verkäufer", + marketNoItems: "Noch keine Artikel vorhanden.", + marketYourBid: "Dein Gebot", marketCreateFormImageLabel: "Medien hochladen (max: 50MB)", marketSearchLabel: "Suche", - marketSearchPlaceholder: "Search title or tags", - marketMinPriceLabel: "Min price", - marketMaxPriceLabel: "Max price", - marketSortLabel: "Sort by", - marketSortRecent: "Most recent", + marketSearchPlaceholder: "Titel oder Tags suchen", + marketMinPriceLabel: "Mindestpreis", + marketMaxPriceLabel: "Höchstpreis", + marketSortLabel: "Sortieren nach", + marketSortRecent: "Neueste zuerst", marketSortPrice: "Preis", - marketSortDeadline: "Deadline", + marketSortDeadline: "Frist", marketSearchButton: "Suche", - marketAuctionEndsIn: "Ends", - marketAuctionEnded: "Ended", - marketMyBidBadge: "You bid", - marketNoItemsMatch: "No items match your search.", - //jobs + marketAuctionEndsIn: "Endet", + marketAuctionEnded: "Beendet", + marketMyBidBadge: "Du hast geboten", + marketNoItemsMatch: "Keine Artikel gefunden.", jobsTitle: "Stellen", - jobsDescription: "Discover and manage jobs in your network.", - jobsFilterRecent: "RECENT", - jobsFilterMine: "MINE", - jobsFilterAll: "ALL", + jobsDescription: "Stellen in deinem Netzwerk entdecken und verwalten.", + jobsFilterRecent: "NEUESTE", + jobsFilterMine: "MEINE", + jobsFilterAll: "ALLE", jobsFilterRemote: "REMOTE", - jobsFilterOpen: "OPEN", - jobsFilterClosed: "CLOSED", - jobsCV: "CVs", - jobsCreateJob: "Create Job", - jobsRecentTitle: "Recent Jobs", - jobsMineTitle: "Your Jobs", + jobsFilterOpen: "OFFEN", + jobsFilterClosed: "GESCHLOSSEN", + jobsCV: "Lebensläufe", + jobsCreateJob: "Stelle erstellen", + jobsRecentTitle: "Neueste Stellen", + jobsMineTitle: "Deine Stellen", jobsAllTitle: "Stellen", - jobsRemoteTitle: "Remote Jobs", - jobsOpenTitle: "Open Jobs", - jobsClosedTitle: "Closed Jobs", - jobsCVTitle: "CVs", - jobsFilterPresencial: "PRESENCIAL", - jobsFilterFreelancer: "FREELANCER", - jobsFilterEmployee: "EMPLOYEE", - jobsPresencialTitle: "Presential Jobs", - jobsFreelancerTitle: "Freelance Jobs", - jobsEmployeeTitle: "Employee Jobs", + jobsRemoteTitle: "Remote-Stellen", + jobsOpenTitle: "Offene Stellen", + jobsClosedTitle: "Geschlossene Stellen", + jobsCVTitle: "Lebensläufe", + jobsFilterPresencial: "VOR ORT", + jobsFilterFreelancer: "FREIBERUFLER", + jobsFilterEmployee: "ANGESTELLTER", + jobsPresencialTitle: "Stellen vor Ort", + jobsFreelancerTitle: "Freiberufliche Stellen", + jobsEmployeeTitle: "Angestelltenstellen", jobTitle: "Titel", jobLocation: "Ort", - jobSalary: "Salary (ECO/1h)", - jobVacants: "Vacants", + jobSalary: "Gehalt (ECO/1h)", + jobVacants: "Offene Stellen", jobDescription: "Beschreibung", - jobRequirements: "Requirements", - jobLanguages: "Languages", + jobRequirements: "Anforderungen", + jobLanguages: "Sprachen", jobStatus: "Status", - jobStatusOPEN: "OPEN", - jobStatusCLOSED: "CLOSED", - jobSetOpen: "Set as OPEN", - jobSetClosed: "Set as CLOSED", - jobSubscribeButton: "Join this offer!", - jobUnsubscribeButton: "Leave this offer!", - jobTitlePlaceholder: "Enter job title", - jobDescriptionPlaceholder: "Describe the job", - jobRequirementsPlaceholder: "Enter requirements", - jobLanguagesPlaceholder: "English, Spanish, French, Basque...", - jobTasksPlaceholder: "List tasks", - jobLocationPresencial: "On-place", + jobStatusOPEN: "OFFEN", + jobStatusCLOSED: "GESCHLOSSEN", + jobSetOpen: "Als OFFEN setzen", + jobSetClosed: "Als GESCHLOSSEN setzen", + jobSubscribeButton: "Diesem Angebot beitreten!", + jobUnsubscribeButton: "Dieses Angebot verlassen!", + jobTitlePlaceholder: "Stellentitel eingeben", + jobDescriptionPlaceholder: "Stelle beschreiben", + jobRequirementsPlaceholder: "Anforderungen eingeben", + jobLanguagesPlaceholder: "Englisch, Spanisch, Französisch, Baskisch...", + jobTasksPlaceholder: "Aufgaben auflisten", + jobLocationPresencial: "Vor Ort", jobLocationRemote: "Remote", - jobVacantsPlaceholder: "Number of positions", - jobSalaryPlaceholder: "Salary in ECO for 1 dedicated hour", + jobVacantsPlaceholder: "Anzahl der Positionen", + jobSalaryPlaceholder: "Gehalt in ECO für 1 Arbeitsstunde", jobImage: "Medien hochladen (max: 50MB)", jobTasks: "Aufgaben", - jobType: "Job Type", - jobTime: "Job Time", - jobSubscribers: "Subscribers", - noSubscribers: "No subscribers", + jobType: "Stellenart", + jobTime: "Arbeitszeit", + jobSubscribers: "Abonnenten", + noSubscribers: "Keine Abonnenten", jobsFilterTop: "TOP", - jobsTopTitle: "Top Salary Jobs", - createJobButton: "Publish Job", - viewDetailsButton: "View Details", - noJobsFound: "No job offers found.", - jobAuthor: "By", - jobTypeFreelance: "Freelancer", - jobTypeSalary: "Employee", - jobTimePartial: "Part-time", - jobTimeComplete: "Full-time", - jobsDeleteButton: "DELETE", - jobsUpdateButton: "UPDATE", - jobsFilterApplied: "APPLIED", - jobsAppliedTitle: "My applications", - jobsAppliedBadge: "Applied", + jobsTopTitle: "Top-Gehalt-Stellen", + createJobButton: "Stelle veröffentlichen", + viewDetailsButton: "Details anzeigen", + noJobsFound: "Keine Stellenangebote gefunden.", + jobAuthor: "Von", + jobTypeFreelance: "Freiberufler", + jobTypeSalary: "Angestellter", + jobTimePartial: "Teilzeit", + jobTimeComplete: "Vollzeit", + jobsDeleteButton: "LÖSCHEN", + jobsUpdateButton: "AKTUALISIEREN", + jobsFilterApplied: "BEWORBEN", + jobsAppliedTitle: "Meine Bewerbungen", + jobsAppliedBadge: "Beworben", jobsFilterFavs: "Favoriten", jobsFavsTitle: "Favoriten", - jobsFilterNeeds: "Needs help", - jobsNeedsTitle: "Needs help", + jobsFilterNeeds: "Braucht Hilfe", + jobsNeedsTitle: "Braucht Hilfe", jobsSearchLabel: "Suche", - jobsSearchPlaceholder: "Search title, tags, description...", - jobsMinSalaryLabel: "Min salary", - jobsMaxSalaryLabel: "Max salary", - jobsSortLabel: "Sort by", - jobsSortRecent: "Most recent", - jobsSortSalary: "Highest salary", - jobsSortSubscribers: "Most applicants", + jobsSearchPlaceholder: "Titel, Tags, Beschreibung suchen...", + jobsMinSalaryLabel: "Mindestgehalt", + jobsMaxSalaryLabel: "Höchstgehalt", + jobsSortLabel: "Sortieren nach", + jobsSortRecent: "Neueste zuerst", + jobsSortSalary: "Höchstes Gehalt", + jobsSortSubscribers: "Meiste Bewerber", jobsSearchButton: "Suche", - jobsFavoriteButton: "Favorite", - jobsUnfavoriteButton: "Unfavorite", - jobsMessageAuthorButton: "PM", - jobsApplicants: "Applicants", - jobsUpdatedAt: "Updated", - jobSetOpen: "Set open", - jobNewBadge: "NEW", + jobsFavoriteButton: "Favorit", + jobsUnfavoriteButton: "Kein Favorit", + jobsMessageAuthorButton: "PN", + jobsApplicants: "Bewerber", + jobsUpdatedAt: "Aktualisiert", + jobSetOpen: "Als OFFEN setzen", + jobNewBadge: "NEU", jobsTagsLabel: "Tags", jobsTagsPlaceholder: "tag1, tag2, tag3", - noJobsMatch: "No jobs match your search.", - //projects + noJobsMatch: "Keine Stellen gefunden.", projectsTitle: "Projekte", - projectsDescription: "Create, fund, and follow community-driven projects in your network.", - projectCreateProject: "Create Project", - projectCreateButton: "Create Project", - projectUpdateButton: "UPDATE", - projectDeleteButton: "DELETE", - projectNoProjectsFound: "No projects found.", - projectFilterAll: "ALL", - projectFilterMine: "MINE", - projectFilterActive: "ACTIVE", - projectFilterPaused: "PAUSED", - projectFilterCompleted: "COMPLETED", - projectFilterFollowing: "FOLLOWING", - projectFilterRecent: "RECENT", + projectsDescription: "Gemeinschaftsprojekte in deinem Netzwerk erstellen, finanzieren und verfolgen.", + projectCreateProject: "Projekt erstellen", + projectCreateButton: "Projekt erstellen", + projectUpdateButton: "AKTUALISIEREN", + projectDeleteButton: "LÖSCHEN", + projectNoProjectsFound: "Keine Projekte gefunden.", + projectFilterAll: "ALLE", + projectFilterMine: "MEINE", + projectFilterActive: "AKTIV", + projectFilterPaused: "PAUSIERT", + projectFilterCompleted: "ABGESCHLOSSEN", + projectFilterFollowing: "VERFOLGT", + projectFilterRecent: "NEUESTE", projectFilterTop: "TOP", projectAllTitle: "Projekte", - projectMineTitle: "Your Projects", - projectActiveTitle: "Active Projects", - projectPausedTitle: "Paused Projects", - projectCompletedTitle: "Completed Projects", - projectFollowingTitle: "Following Projects", - projectRecentTitle: "Recent Projects", - projectTopTitle: "Top Funded", - projectTitlePlaceholder: "Project name", + projectMineTitle: "Deine Projekte", + projectActiveTitle: "Aktive Projekte", + projectPausedTitle: "Pausierte Projekte", + projectCompletedTitle: "Abgeschlossene Projekte", + projectFollowingTitle: "Verfolgte Projekte", + projectRecentTitle: "Neueste Projekte", + projectTopTitle: "Meistfinanziert", + projectTitlePlaceholder: "Projektname", projectImage: "Medien hochladen (max: 50MB)", projectDescription: "Beschreibung", - projectDescriptionPlaceholder: "Tell the story and goals…", - projectGoal: "Goal (ECO)", + projectDescriptionPlaceholder: "Erzähle die Geschichte und Ziele…", + projectGoal: "Ziel (ECO)", projectGoalPlaceholder: "50000", - projectDeadline: "Deadline", - projectProgress: "Starting Progress (%)", + projectDeadline: "Frist", + projectProgress: "Anfangsfortschritt (%)", projectStatus: "Status", - projectFunding: "Funding", - projectPledged: "Pledged", - projectSetStatus: "Set Status", - projectSetProgress: "Update Progress", - projectFollowButton: "FOLLOW", - projectUnfollowButton: "UNFOLLOW", - projectStatusACTIVE: "ACTIVE", - projectStatusPAUSED: "PAUSED", - projectStatusCOMPLETED: "COMPLETED", - projectStatusCANCELLED: "CANCELLED", - projectPledgeTitle: "Back this project", - projectPledgePlaceholder: "Amount in ECO", - projectBounties: "Bounties", - projectBountiesInputLabel: "Bounties (one per line: Title|Amount [ECO]|Description)", - projectBountiesPlaceholder: "Fix UI bug|100|Link to issue\nWrite docs|250|Outline usage examples", - projectNoBounties: "No bounties found.", + projectFunding: "Finanzierung", + projectPledged: "Zugesagt", + projectSetStatus: "Status setzen", + projectSetProgress: "Fortschritt aktualisieren", + projectFollowButton: "FOLGEN", + projectUnfollowButton: "ENTFOLGEN", + projectStatusACTIVE: "AKTIV", + projectStatusPAUSED: "PAUSIERT", + projectStatusCOMPLETED: "ABGESCHLOSSEN", + projectStatusCANCELLED: "ABGEBROCHEN", + projectPledgeTitle: "Dieses Projekt unterstützen", + projectPledgePlaceholder: "Betrag in ECO", + projectBounties: "Prämien", + projectBountiesInputLabel: "Prämien (eine pro Zeile: Titel|Betrag [ECO]|Beschreibung)", + projectBountiesPlaceholder: "UI-Fehler beheben|100|Link zum Problem\\nDoku schreiben|250|Anwendungsbeispiele skizzieren", + projectNoBounties: "Keine Prämien gefunden.", projectTitle: "Titel", - projectAddBountyTitle: "New Bounty", - projectBountyTitle: "Bounty Title", - projectBountyAmount: "Amount (ECO)", + projectAddBountyTitle: "Neue Prämie", + projectBountyTitle: "Prämientitel", + projectBountyAmount: "Betrag (ECO)", projectBountyDescription: "Beschreibung", - projectMilestoneSelect: "Select Milestone", - projectBountyCreateButton: "Create Bounty", - projectBountyStatus: "Bounty Status", - projectBountyOpen: "open", - projectBountyClaimed: "claimed", - projectBountyDone: "completed", - projectBountyClaimedBy: "claimed by", - projectBountyClaimButton: "claim", - projectBountyCompleteButton: "Mark Completed", - projectMilestones: "Milestones", - projectAddMilestoneTitle: "New milestone", - projectMilestoneTitle: "Milestone Title", - projectMilestoneTargetPercent: "Percent (%)", + projectMilestoneSelect: "Meilenstein auswählen", + projectBountyCreateButton: "Prämie erstellen", + projectBountyStatus: "Prämienstatus", + projectBountyOpen: "offen", + projectBountyClaimed: "beansprucht", + projectBountyDone: "abgeschlossen", + projectBountyClaimedBy: "beansprucht von", + projectBountyClaimButton: "beanspruchen", + projectBountyCompleteButton: "Als abgeschlossen markieren", + projectMilestones: "Meilensteine", + projectAddMilestoneTitle: "Neuer Meilenstein", + projectMilestoneTitle: "Meilensteintitel", + projectMilestoneTargetPercent: "Prozent (%)", projectMilestoneDueDate: "Datum", - projectMilestoneCreateButton: "Create Milestone", - projectMilestoneStatus: "Milestone Status", - projectMilestoneOpen: "open", - projectMilestoneDone: "completed", - projectMilestoneMarkDone: "Mark as Completed", - projectMilestoneDue: "due", - projectNoMilestones: "No milestones found.", - projectMilestoneMarkDone: "Mark as Done", - projectMilestoneTitlePlaceholder: "Enter milestone title", - projectMilestoneDescriptionPlaceholder: "Enter description for this milestone", - projectMilestoneDescription: "Milestone Description", - projectBudgetGoal: "Budget (Goal)", - projectBudgetAssigned: "Assigned to bounties", - projectBudgetRemaining: "Remaining", - projectBudgetOver: "⚠ Over budget: assigned exceeds goal", - projectFollowers: "Followers", - projectFollowersTitle: "Followers", - projectFollowersNone: "No followers yet.", - projectMore: "more", - projectYouFollowHint: "You follow this project", - projectBackers: "Backers", - projectBackersTitle: "Backers", - projectBackersTotal: "Total backers", - projectBackersTotalPledged: "Total pledged", - projectBackersYourPledge: "Your pledge", - projectBackersNone: "No pledges yet.", - projectNoRemainingBudget: "No remaining budget.", - projectFilterBackers: "BACKERS", - projectFilterApplied: "APPLIED", - projectAppliedTitle: "APPLIED", - projectBackersLeaderboardTitle: "Top Backers", - projectNoBackersFound: "No backers found.", - projectBackerAmount: "Total contributed", - projectBackerPledges: "Pledges", + projectMilestoneCreateButton: "Meilenstein erstellen", + projectMilestoneStatus: "Meilensteinstatus", + projectMilestoneOpen: "offen", + projectMilestoneDone: "abgeschlossen", + projectMilestoneMarkDone: "Als abgeschlossen markieren", + projectMilestoneDue: "fällig", + projectNoMilestones: "Keine Meilensteine gefunden.", + projectMilestoneMarkDone: "Als abgeschlossen markieren", + projectMilestoneTitlePlaceholder: "Meilensteintitel eingeben", + projectMilestoneDescriptionPlaceholder: "Beschreibung für diesen Meilenstein eingeben", + projectMilestoneDescription: "Meilensteinbeschreibung", + projectBudgetGoal: "Budget (Ziel)", + projectBudgetAssigned: "Prämien zugewiesen", + projectBudgetRemaining: "Verbleibend", + projectBudgetOver: "Budget überschritten: Zuweisungen übersteigen das Ziel", + projectFollowers: "Follower", + projectFollowersTitle: "Follower", + projectFollowersNone: "Noch keine Follower.", + projectMore: "mehr", + projectYouFollowHint: "Du verfolgst dieses Projekt", + projectBackers: "Unterstützer", + projectBackersTitle: "Unterstützer", + projectBackersTotal: "Unterstützer gesamt", + projectBackersTotalPledged: "Zugesagt gesamt", + projectBackersYourPledge: "Deine Zusage", + projectBackersNone: "Noch keine Zusagen.", + projectNoRemainingBudget: "Kein verbleibendes Budget.", + projectFilterBackers: "UNTERSTÜTZER", + projectFilterApplied: "BEWORBEN", + projectAppliedTitle: "BEWORBEN", + projectBackersLeaderboardTitle: "Top-Unterstützer", + projectNoBackersFound: "Keine Unterstützer gefunden.", + projectBackerAmount: "Gesamtbeitrag", + projectBackerPledges: "Zusagen", projectBackerProjects: "Projekte", projectPledgeAmount: "Betrag", - projectSelectMilestoneOrBounty: "Select Milestone or Bounty", - projectPledgeButton: "Pledge", - //footer + projectSelectMilestoneOrBounty: "Meilenstein oder Prämie auswählen", + projectPledgeButton: "Zusagen", footerLicense: "GPLv3", - footerPackage: "Package", + footerPackage: "Paket", footerVersion: "Version", - //modules modulesModuleName: "Name", modulesModuleDescription: "Beschreibung", modulesModuleStatus: "Status", - modulesTotalModulesLabel: "Loaded Modules", + modulesTotalModulesLabel: "Geladene Module", modulesEnabledModulesLabel: "Aktiviert", modulesDisabledModulesLabel: "Deaktiviert", - modulesPopularLabel: "Popular", - modulesPopularDescription: "Module to receive posts that are trending, most viewed, or most commented on.", + modulesPopularLabel: "Beliebt", + modulesPopularDescription: "Modul zum Empfang von Beiträgen, die im Trend liegen, am meisten angesehen oder kommentiert werden.", modulesTopicsLabel: "Themen", - modulesTopicsDescription: "Module to receive discussion categories based on shared interests.", + modulesTopicsDescription: "Modul zum Empfang von Diskussionskategorien basierend auf gemeinsamen Interessen.", modulesSummariesLabel: "Zusammenfassungen", - modulesSummariesDescription: "Module to receive summaries of long discussions or posts.", + modulesSummariesDescription: "Modul zum Empfang von Zusammenfassungen langer Diskussionen oder Beiträge.", modulesLatestLabel: "Neueste", - modulesLatestDescription: "Module to receive the most recent posts and discussions.", - modulesThreadsLabel: "Threads", - modulesThreadsDescription: "Module to receive conversations grouped by topic or question.", + modulesLatestDescription: "Modul zum Empfang der neuesten Beiträge und Diskussionen.", + modulesThreadsLabel: "Diskussionen", + modulesThreadsDescription: "Modul zum Empfang von Unterhaltungen, gruppiert nach Thema oder Frage.", modulesMultiverseLabel: "Multiversum", - modulesMultiverseDescription: "Module to receive content from other federated peers.", + modulesMultiverseDescription: "Modul zum Empfang von Inhalten anderer föderierter Peers.", modulesInvitesLabel: "Einladungen", - modulesInvitesDescription: "Module to manage and apply invite codes.", + modulesInvitesDescription: "Modul zum Verwalten und Einlösen von Einladungscodes.", modulesWalletLabel: "Geldbörse", - modulesWalletDescription: "Module to manage your digital assets (ECOin).", - modulesLegacyLabel: "Legacy", - modulesLegacyDescription: "Module to manage your secret (private key) quickly and securely.", - modulesCipherLabel: "Cipher", - modulesCipherDescription: "Module to encrypt and decrypt your text symmetrically (using a shared password).", + modulesWalletDescription: "Modul zum Verwalten deiner digitalen Vermögenswerte (ECOin).", + modulesLegacyLabel: "Schlüssel", + modulesLegacyDescription: "Modul zum schnellen und sicheren Verwalten deines geheimen Schlüssels (privater Schlüssel).", + modulesCipherLabel: "Verschlüsselung", + modulesCipherDescription: "Modul zum symmetrischen Ver- und Entschlüsseln von Text (mit einem gemeinsamen Passwort).", modulesBookmarksLabel: "Lesezeichen", - modulesBookmarksDescription: "Module to discover and manage bookmarks.", + modulesBookmarksDescription: "Modul zum Entdecken und Verwalten von Lesezeichen.", modulesVideosLabel: "Videos", - modulesVideosDescription: "Module to discover and manage videos.", + modulesVideosDescription: "Modul zum Entdecken und Verwalten von Videos.", modulesDocsLabel: "Dokumente", - modulesDocsDescription: "Module to discover and manage documents.", + modulesDocsDescription: "Modul zum Entdecken und Verwalten von Dokumenten.", modulesAudiosLabel: "Audios", - modulesAudiosDescription: "Module to discover and manage audios.", + modulesAudiosDescription: "Modul zum Entdecken und Verwalten von Audios.", modulesTagsLabel: "Tags", - modulesTagsDescription: "Module to discover and explore taxonomy patterns (tags).", + modulesTagsDescription: "Modul zum Entdecken und Erkunden von Taxonomiemustern (Tags).", modulesImagesLabel: "Bilder", - modulesImagesDescription: "Module to discover and manage images.", + modulesImagesDescription: "Modul zum Entdecken und Verwalten von Bildern.", modulesTrendingLabel: "Trends", - modulesTrendingDescription: "Module to explore the most popular content.", + modulesTrendingDescription: "Modul zum Erkunden der beliebtesten Inhalte.", modulesEventsLabel: "Termine", - modulesEventsDescription: "Module to discover and manage events.", + modulesEventsDescription: "Modul zum Entdecken und Verwalten von Terminen.", modulesTasksLabel: "Aufgaben", - modulesTasksDescription: "Module to discover and manage tasks.", + modulesTasksDescription: "Modul zum Entdecken und Verwalten von Aufgaben.", modulesMarketLabel: "Markt", - modulesMarketDescription: "Module to exchange goods or services.", - modulesTribesLabel: "Tribes", - modulesTribesDescription: "Module to explore or create tribes (groups).", - modulesVotationsLabel: "Votations", - modulesVotationsDescription: "Module to discover and manage votations.", + modulesMarketDescription: "Modul zum Austausch von Waren oder Dienstleistungen.", + modulesShopsLabel: "Shops", + modulesShopsDescription: "Modul zum Verwalten und Entdecken von Shops.", + modulesTribesLabel: "Stämme", + modulesTribesDescription: "Modul zum Erkunden oder Erstellen von Stämmen (Gruppen).", + modulesVotationsLabel: "Abstimmungen", + modulesVotationsDescription: "Modul zum Entdecken und Verwalten von Abstimmungen.", modulesReportsLabel: "Berichte", - modulesReportsDescription: "Module to manage and track reports related to issues, bugs, abuses, and content warnings.", + modulesReportsDescription: "Modul zum Verwalten und Verfolgen von Berichten zu Problemen, Fehlern, Missbrauch und Inhaltswarnungen.", modulesOpinionsLabel: "Meinungen", - modulesOpinionsDescription: "Module to discover and vote on opinions.", + modulesOpinionsDescription: "Modul zum Entdecken und Bewerten von Meinungen.", modulesTransfersLabel: "Überweisungen", - modulesTransfersDescription: "Module to discover and manage smart-contracts (transfers).", + modulesTransfersDescription: "Modul zum Entdecken und Verwalten von Smart Contracts (Überweisungen).", modulesFeedLabel: "Feed", - modulesFeedDescription: "Module to discover and share short-texts (feeds).", + modulesFeedDescription: "Modul zum Entdecken und Teilen von Kurztexten (Feeds).", modulesParliamentLabel: "Parlament", - modulesParliamentDescription: "Module to elect governments and vote on laws.", + modulesParliamentDescription: "Modul zum Wählen von Regierungen und Abstimmen über Gesetze.", modulesCourtsLabel: "Gerichte", - modulesCourtsDescription: "Module to resolve conflicts and emit veredicts.", + modulesCourtsDescription: "Modul zur Konfliktlösung und Urteilsfindung.", modulesPixeliaLabel: "Pixelia", - modulesPixeliaDescription: "Module to draw on a collaborative grid.", + modulesPixeliaDescription: "Modul zum Zeichnen auf einem gemeinschaftlichen Raster.", modulesAgendaLabel: "Agenda", - modulesAgendaDescription: "Module to manage all your assigned items.", - modulesAILabel: "AI", - modulesAIDescription: "Module to talk with a LLM called '42'.", - modulesForumLabel: "Forums", - modulesForumDescription: "Module to discover and manage forums.", + modulesAgendaDescription: "Modul zum Verwalten aller dir zugewiesenen Einträge.", + modulesAILabel: "KI", + modulesAIDescription: "Modul zum Kommunizieren mit einer KI namens '42'.", + modulesForumLabel: "Foren", + modulesForumDescription: "Modul zum Entdecken und Verwalten von Foren.", modulesJobsLabel: "Stellen", - modulesJobsDescription: "Module to discover and manage jobs.", + modulesJobsDescription: "Modul zum Entdecken und Verwalten von Stellen.", modulesProjectsLabel: "Projekte", - modulesProjectsDescription: "Module to explore, crowd-funding and manage projects.", + modulesProjectsDescription: "Modul zum Erkunden, Crowdfunding und Verwalten von Projekten.", modulesBankingLabel: "Bankwesen", - modulesBankingDescription: "Module to determine the real value of ECOIN and distribute a UBI using the common treasury.", + modulesBankingDescription: "Modul zur Bestimmung des realen Werts von ECOIN und Verteilung eines UBI über die gemeinsame Kasse.", modulesFavoritesLabel: "Favoriten", - modulesFavoritesDescription: "Module to manage your favorite content.", - fileTooLargeTitle: "File too large", - fileTooLargeMessage: "The file exceeds the maximum allowed size (50 MB). Please select a smaller file.", - goBack: "Go back", + modulesFavoritesDescription: "Modul zum Verwalten deiner favorisierten Inhalte.", + fileTooLargeTitle: "Datei zu groß", + fileTooLargeMessage: "Die Datei überschreitet die maximal erlaubte Größe (50 MB). Bitte wähle eine kleinere Datei.", + goBack: "Zurück", directConnect: "Direkte Verbindung", directConnectDescription: "Verbinde dich direkt mit einem Peer, indem du IP-Adresse, Port und öffentlichen Schlüssel eingibst.", peerHost: "IP / Hostname", @@ -2696,7 +2769,422 @@ module.exports = { feedSuccessMsg: "Feed erfolgreich veröffentlicht!", dominantOpinionLabel: "Vorherrschende Meinung", uploadMedia: "Medien hochladen (max: 50MB)", + cipherPasswordDecryptLabel: "Passwort (zum Entschlüsseln)", + courtsRespondentInvalid: "Ungültiger Beklagter", + feedDetailTitle: "Feed-Details", + feedOpenDiscussion: "Diskussion eröffnen", + feedPostComment: "Kommentar veröffentlichen", + noComments: "Noch keine Kommentare.", + mapsLabel: "Karten", + mapTitle: "Karten", + mapDescription: "Erkunden und verwalten Sie Offline-Karten in Ihrem Netzwerk.", + mapMineSectionTitle: "Ihre Karten", + mapCreateSectionTitle: "Karte erstellen", + mapUpdateSectionTitle: "Karte aktualisieren", + mapAllSectionTitle: "Karten", + mapRecentSectionTitle: "Neueste Karten", + mapFavoritesSectionTitle: "Favoriten", + mapFilterAll: "ALLE", + mapFilterMine: "MEINE", + mapFilterRecent: "NEUESTE", + mapFilterFavorites: "FAVORITEN", + mapUploadButton: "Karte erstellen", + mapCreateButton: "Karte erstellen", + mapUpdateButton: "Aktualisieren", + mapDeleteButton: "Löschen", + mapAddFavoriteButton: "Zu Favoriten", + mapRemoveFavoriteButton: "Aus Favoriten", + mapLatLabel: "Breitengrad", + mapLatPlaceholder: "z.B. 52.5200", + mapLngLabel: "Längengrad", + mapLngPlaceholder: "z.B. 13.4050", + mapDescriptionLabel: "Beschreibung", + mapDescriptionPlaceholder: "Beschreiben Sie die Karte oder den Standort...", + mapTypeLabel: "Kartentyp", + mapTypeSingle: "EINZELN (nur initialer Standort)", + mapTypeOpen: "OFFEN (jeder kann Markierungen hinzufügen)", + mapTypeClosed: "GESCHLOSSEN (nur Ersteller fügt Markierungen hinzu)", + mapTagsLabel: "Tags", + mapTagsPlaceholder: "Tags durch Kommas getrennt eingeben", + mapUrlLabel: "Karten-URL", + mapPickCoordLabel: "Oder wählen Sie einen Standort auf dem Raster:", + mapMarkersLabel: "Markierungen", + mapMarkersTitle: "Markierungen", + mapMarkerDefault: "Markierung", + mapMarkerLatLabel: "Markierung Breitengrad", + mapMarkerLngLabel: "Markierung Längengrad", + mapMarkerLabelField: "Markierungsbezeichnung", + mapMarkerLabelPlaceholder: "Beschreiben Sie diese Markierung...", + markerImageLabel: "Marker-Bild", + mapAddMarkerTitle: "Markierung hinzufügen", + mapAddMarkerButton: "Markierung hinzufügen", + mapCleanMarkerButton: "Clean Marker", + mapApplyZoom: "Zoom anwenden", + mapSearchPlaceholder: "Beschreibung, Tags, Autor suchen...", + mapSearchButton: "Suchen", + mapUpdatedAt: "Aktualisiert", + mapNoMatch: "Keine Karten entsprechen Ihrer Suche.", + noMaps: "Keine Karten verfügbar.", + mapLocationTitle: "Standort", + mapVisitLabel: "Karte besuchen", + typeMap: "KARTEN", + typeMapMarker: "KARTENMARKIERUNG", + modulesMapLabel: "Karten", + modulesMapDescription: "Modul zum Verwalten und Teilen von Offline-Karten.", + padsTitle: "Pads", + padTitle: "Pad", + modulesPadsLabel: "Pads", + modulesPadsDescription: "Modul zur Verwaltung kollaborativer Texteditoren.", + padFilterAll: "ALLE", + padFilterMine: "MEINE", + padFilterRecent: "AKTUELL", + padFilterOpen: "OFFEN", + padFilterClosed: "GESCHLOSSEN", + padCreate: "Pad Erstellen", + padUpdate: "Pad Aktualisieren", + padDelete: "Pad Löschen", + padTitleLabel: "Titel", + padTitlePlaceholder: "Pad-Titel eingeben...", + padStatusLabel: "Status", + padStatusOpen: "OFFEN", + padStatusInviteOnly: "NUR AUF EINLADUNG", + padStatusClosed: "GESCHLOSSEN", + padDeadlineLabel: "Frist", + padTagsLabel: "Tags", + padTagsPlaceholder: "tag1, tag2, ...", + padMembersLabel: "Mitglieder", + padVisitPad: "Pad Besuchen", + padShareUrl: "URL Teilen", + padCreated: "Erstellt", + padAuthor: "Autor", + padGenerateCode: "Code Generieren", + padInviteCodeLabel: "Einladungscode", + padInviteCodePlaceholder: "Einladungscode eingeben...", + padValidateInvite: "Validieren", + padStartEditing: "BEARBEITUNG STARTEN!", + padEditorPlaceholder: "Schreiben beginnen...", + padSubmitEntry: "Senden", + padNoEntries: "Noch keine Einträge.", + padAllSectionTitle: "Alle Pads", + padMineSectionTitle: "Meine Pads", + padRecentSectionTitle: "Aktuelle Pads", + padOpenSectionTitle: "Offene Pads", + padClosedSectionTitle: "Geschlossene Pads", + padCreateSectionTitle: "Neues Pad Erstellen", + padUpdateSectionTitle: "Pad Aktualisieren", + padInviteGenerated: "Einladungscode Generiert", + typePad: "PAD", + padNew: "NEU", + padAddFavorite: "Zu Favoriten Hinzufügen", + padRemoveFavorite: "Aus Favoriten Entfernen", + padClose: "Pad schließen", + padBackToEditor: "Zurück zum Editor", + padSearchPlaceholder: "Pads suchen...", + gamesTitle: "Spiele", + gamesDescription: "Entdecke und spiele einige Spiele.", + gamesFilterAll: "ALLE", + gamesPlayButton: "SPIELEN!", + gamesBackToGames: "Zurück zu Spielen", + modulesGamesLabel: "Spiele", + modulesGamesDescription: "Modul zum Entdecken und Spielen von Spielen.", + gamesCocolandTitle: "Cocoland", + gamesCocolandDesc: "Eine Kokosnuss mit Augen, die über Palmen springt und ECOins sammelt.", + gamesTheFlowTitle: "ECOinflow", + gamesTheFlowDesc: "Verbinde PUBs mit Bewohnern über Validatoren, Shops und Akkumulatoren. Überstehe die CBDC-Bedrohung!", + gamesNeonInfiltratorTitle: "Neon Infiltrator", + gamesNeonInfiltratorDesc: "Infiltriere das Gitter, sammle vertrauliche Daten, weiche Sicherheitsdrohnen aus und fliehe. Wie viele Level schaffst du?", + gamesSpaceInvadersTitle: "Space Invaders", + gamesSpaceInvadersDesc: "Stoppt die Alien-Invasion! Schießt Wellen von Eindringlingen ab.", + gamesArkanoidTitle: "Arkanoid", + gamesArkanoidDesc: "Brecht alle Steine mit eurem Schläger und Ball. Ein klassisches Arcade-Spiel.", + gamesPingPongTitle: "PingPong", + gamesPingPongDesc: "Klassisches Ping-Pong gegen eine KI. Wer zuerst 5 Punkte hat, gewinnt.", + gamesOutrunTitle: "Outrun", + gamesOutrunDesc: "Rennen gegen die Zeit! Weiche dem Verkehr aus und erreiche das Ziel rechtzeitig.", + gamesAsteroidsTitle: "Asteroids", + gamesAsteroidsDesc: "Steuere dein Raumschiff durch ein tödliches Asteroidenfeld. Schieße sie ab, bevor sie dich treffen.", + gamesRockPaperScissorsTitle: "Schere Stein Papier", + gamesRockPaperScissorsDesc: "Schere, Stein, Papier gegen eine KI. Das Beste aus drei Runden gewinnt.", + gamesTikTakToeTitle: "TikTakToe", + gamesTikTakToeDesc: "Klassisches Tic-Tac-Toe gegen die KI. Drei in einer Reihe gewinnt.", + gamesFlipFlopTitle: "FlipFlop", + gamesFlipFlopDesc: "Werfe eine Münze und wette auf Kopf oder Zahl. Wie viel Glück hast du?", + games8BallTitle: "8Ball Pool", + games8BallDesc: "Top-down pool. Click to aim, hold to charge power. Pot all balls in the fewest shots.", + gamesArtilleryTitle: "Artillery", + gamesArtilleryDesc: "Aim your cannon, factor in the wind, and hit the target. 5 rounds, fewest shots wins.", + gamesLabyrinthTitle: "Labyrinth", + gamesLabyrinthDesc: "Escape the maze before your moves run out. Each level gets bigger and harder.", + gamesCocomanTitle: "Cocoman", + gamesCocomanDesc: "Eat all the dots, avoid the ghosts. Turn-based Pac-Man — every key press counts.", + gamesTetrisTitle: "Tetris", + gamesAudioPendulumTitle: "Audio Pendulum", + gamesAudioPendulumDesc: "Chaotic physics simulator with real-time audio synthesis. Angular velocities become frequencies, peaks become drum hits. No two simulations sound alike.", + gamesTetrisDesc: "Classic falling blocks. Clear lines to score. How long can you last?", + gamesQuakeTitle: "Quake Arena", + gamesQuakeDesc: "First-person raycasting arena. Move and shoot your way through waves of enemies.", + gamesFilterScoring: "SCORING", + gamesHallOfFame: "Hall of Fame", + gamesHallPlayer: "Player", + gamesHallScore: "Score", + gamesNoScores: "Noch keine Ergebnisse.", + modulesChatsLabel: "Chats", + modulesChatsDescription: "Modul zum Entdecken und Verwalten verschlüsselter Chats.", + chatMessageLabel: "CHATNACHRICHTEN", + chatsTitle: "Chats", + chatMineSectionTitle: "Meine Chats", + chatRecentTitle: "Aktuelle Chats", + chatFavoritesTitle: "Favoriten", + chatOpenTitle: "Offene Chats", + chatClosedTitle: "Geschlossene Chats", + chatDescription: "Beschreibung", + chatCategory: "Kategorie", + chatStatus: "STATUS", + chatFilterAll: "ALLE", + chatFilterMine: "MEINE", + chatFilterRecent: "AKTUELL", + chatFilterFavorites: "FAVORITEN", + chatFilterOpen: "OFFEN", + chatFilterClosed: "GESCHLOSSEN", + chatCreate: "Chat Erstellen", + chatUpdate: "Chat Aktualisieren", + chatDelete: "Chat Löschen", + chatClose: "Chat Schließen", + chatVisitChat: "CHAT BESUCHEN", + chatUntitled: "Unbenannter Chat", + chatNoItems: "Keine Chats gefunden.", + chatParticipants: "Teilnehmer", + chatStartChatting: "CHAT STARTEN!", + chatGenerateCode: "Code Generieren", + chatShareUrl: "URL Teilen", + chatCreatedAt: "ERSTELLT", + chatSearchPlaceholder: "Chats suchen...", + chatStatusOpen: "OFFEN", + chatStatusInviteOnly: "NUR AUF EINLADUNG", + chatStatusClosed: "GESCHLOSSEN", + chatSendMessage: "Senden", + chatMessagePlaceholder: "Nachricht eingeben...", + chatNoMessages: "Noch keine Nachrichten.", + chatLeave: "Chat Verlassen", + chatInviteCodeLabel: "Einladungscode eingeben", + chatJoinByInvite: "Beitreten", + chatTitlePlaceholder: "Chat-Titel", + chatDescriptionPlaceholder: "Chat-Beschreibung", + chatTagsPlaceholder: "tag1, tag2, tag3", + chatImageLabel: "Bilddatei auswählen (.jpeg, .jpg, .png, .gif)", + chatInviteCode: "Einladungscode", + chatAuthor: "Autor", + chatCreated: "Erstellt", + chatAddFavorite: "Zu Favoriten Hinzufügen", + chatRemoveFavorite: "Aus Favoriten Entfernen", + chatPM: "PM", + chatStatusLabel: "Status", + chatCategoryLabel: "Kategorie", + chatParticipantsLabel: "Teilnehmer", + calendarsTitle: "Kalender", + calendarTitle: "Kalender", + modulesCalendarsLabel: "Kalender", + modulesCalendarsDescription: "Modul zum Entdecken und Verwalten von Kalendern.", + typeCalendar: "KALENDER", + calendarFilterAll: "ALLE", + calendarFilterMine: "MEINE", + calendarFilterOpen: "OFFEN", + calendarFilterClosed: "GESCHLOSSEN", + calendarFilterRecent: "KÜRZLICH", + calendarFilterFavorites: "FAVORITEN", + calendarCreate: "Kalender erstellen", + calendarUpdate: "Aktualisieren", + calendarDelete: "Löschen", + calendarTitleLabel: "Titel", + calendarTitlePlaceholder: "Kalendertitel...", + calendarStatusLabel: "Status", + calendarStatusOpen: "OFFEN", + calendarStatusClosed: "GESCHLOSSEN", + calendarDeadlineLabel: "Deadline", + calendarTagsLabel: "Tags", + calendarTagsPlaceholder: "tag1, tag2...", + calendarParticipantsLabel: "Teilnehmer", + calendarParticipantsCount: "Teilnehmer", + calendarVisitCalendar: "Kalender besuchen", + calendarCreated: "Erstellt", + calendarAuthor: "Autor", + calendarJoin: "Beitreten", + calendarJoined: "Beigetreten", + calendarAddDate: "Datum hinzufügen", + calendarAddNote: "Notiz hinzufügen", + calendarDateLabel: "Datum", + calendarDatePlaceholder: "Dieses Datum beschreiben...", + calendarNoteLabel: "Notiz", + calendarNotePlaceholder: "Notiz hinzufügen...", + calendarFirstDateLabel: "Datum", + calendarFirstNoteLabel: "Notizen", + calendarIntervalLabel: "Interval", + calendarIntervalWeekly: "Weekly", + calendarIntervalMonthly: "Monthly", + calendarIntervalYearly: "Yearly", + calendarFormDescription: "Beschreibung", + calendarNoDates: "Noch keine Daten hinzugefügt.", + calendarNoNotes: "Keine Notizen.", + calendarsNoItems: "Keine Kalender gefunden.", + calendarsDescription: "Entdecke und verwalte Kalender in deinem Netzwerk.", + calendarMonthPrev: "← Zurück", + calendarMonthNext: "Weiter →", + calendarMonthLabel: "Daten", + calendarsShareUrl: "Teilen-URL", + calendarAllSectionTitle: "Kalender", + calendarRecentSectionTitle: "Kürzliche Kalender", + calendarFavoritesSectionTitle: "Favoriten", + calendarMineSectionTitle: "Deine Kalender", + calendarOpenSectionTitle: "Offene Kalender", + calendarClosedSectionTitle: "Geschlossene Kalender", + calendarCreateSectionTitle: "Neuen Kalender erstellen", + calendarUpdateSectionTitle: "Kalender aktualisieren", + calendarAddFavorite: "Zu Favoriten hinzufügen", + calendarDeleteNote: "Delete", + calendarRemoveFavorite: "Aus Favoriten entfernen", + calendarSearchPlaceholder: "Kalender suchen...", + calendarAddEntry: "Eintrag hinzufügen", + calendarLeave: "Kalender verlassen", + statsCalendar: "Kalender", + statsCalendarDate: "Kalenderdaten", + statsCalendarNote: "Kalendernotizen", + chatAccessDenied: "Sie haben keinen Zugang zu diesem Chat. Fordern Sie eine Einladung an.", + padAccessDenied: "Sie haben keinen Zugang zu diesem Pad. Fordern Sie eine Einladung an.", + contentAccessDenied: "Sie haben keinen Zugang zu diesem Inhalt.", + blockAccessRestricted: "Zugang gesperrt", + tribeContentAccessDenied: "Zugang Verweigert", + tribeContentAccessDeniedMsg: "Dieser Inhalt gehört zu einem Stamm. Sie müssen Mitglied sein, um darauf zuzugreifen.", + tribeViewTribes: "Stämme Anzeigen", + torrentsTitle: "Torrents", + torrentsDescription: "Torrents in Ihrem Netzwerk erkunden und verwalten.", + torrentAllSectionTitle: "Torrents", + torrentMineSectionTitle: "Ihre Torrents", + torrentRecentSectionTitle: "Neueste Torrents", + torrentTopSectionTitle: "Top Torrents", + torrentFavoritesSectionTitle: "Favoriten", + torrentFilterAll: "ALLE", + torrentFilterMine: "MEINE", + torrentFilterRecent: "NEUESTE", + torrentFilterTop: "TOP", + torrentFilterFavorites: "FAVORITEN", + torrentCreateSectionTitle: "Torrent Hochladen", + torrentUpdateSectionTitle: "Torrent Aktualisieren", + torrentCreateButton: "Torrent Hochladen", + torrentUpdateButton: "Aktualisieren", + torrentDeleteButton: "Löschen", + torrentAddFavoriteButton: "Zu Favoriten Hinzufügen", + torrentRemoveFavoriteButton: "Aus Favoriten Entfernen", + torrentFileLabel: "Torrent-Datei auswählen (.torrent)", + torrentTitleLabel: "Titel", + torrentTitlePlaceholder: "Titel", + torrentDescriptionLabel: "Beschreibung", + torrentDescriptionPlaceholder: "Beschreibung", + torrentTagsLabel: "Tags", + torrentTagsPlaceholder: "Tags durch Kommas getrennt eingeben", + torrentSizeLabel: "Größe", + torrentDownloadButton: "DOWNLOAD IT!", + torrentNoFile: "Keine Torrent-Datei", + noTorrents: "Keine Torrents gefunden.", + torrentSearchPlaceholder: "Titel, Tags, Autor suchen...", + torrentSearchButton: "Suchen", + torrentSortRecent: "Neueste", + torrentSortOldest: "Älteste", + torrentSortTop: "Meistgewählt", + torrentNoMatch: "Keine passenden Torrents.", + torrentMessageAuthorButton: "Nachricht an Autor", + torrentUpdatedAt: "Aktualisiert", + statsTorrent: "Torrents", + typeTorrent: "TORRENTS", + modulesTorrentsLabel: "Torrents", + modulesTorrentsDescription: "Modul zum Entdecken und Verwalten von Torrents.", + favoritesFilterTorrents: "TORRENTS", + tribeSectionTorrents: "TORRENTS", + tribeCreateTorrent: "Torrent Hochladen", + tribeMediaTypeTorrent: "Torrent", + settingsWishTitle: "Wunsch", + settingsWishDesc: "Konfiguriere den Wunsch deines Avatars.", + settingsWishWhole: "Multiverse", + settingsWishMutuals: "Only mutual-support", + settingsPmVisibilityTitle: "Private Nachrichten", + settingsPmVisibilityDesc: "Konfiguriere dein Niveau der Offenlegung für private Nachrichten.", + settingsPmVisibilityWhole: "Multiverse", + settingsPmVisibilityMutuals: "Only mutual-support", + pmMutualNotice: "Ausgang ist ein UX-Schutz. Eingang ist ein Aufmerksamkeitsfilter.", + pmBlockedNonMutual: "Du kannst PNs nur an Bewohner mit gegenseitiger Unterstützung senden.", + inhabitantsPendingFollowsTitle: "Ausstehende Unterstützungsanfragen", + inhabitantsPendingAccept: "Akzeptieren", + inhabitantsPendingReject: "Ablehnen", + bxEncrypted: "VERSCHLÜSSELT", + bxEncryptedHexLabel: "Chiffretext (Vorschau)", + tribeSectionGovernance: "GOVERNANCE", + tribeSubStatusPublic: "ÖFFENTLICH", + tribeSubStatusPrivate: "PRIVAT", + tribeSubInheritedPrivate: "PRIVAT (vom Haupt-Stamm geerbt)", + tribePadInviteRequired: "Kein Zugriff auf das Pad. Bitte um Einladung.", + tribeChatInviteRequired: "Kein Zugriff auf den Chat. Bitte um Einladung.", + tribeGovernanceDesc: "Interne Governance dieses Stammes.", + tribeGovernanceNoGov: "Keine aktive Regierung", + tribeGovernanceNoGovDesc: "Dieser Stamm hat noch keine Regierung gewählt.", + tribeGovernanceAlreadyPublished: "Dieser Stamm hat bereits eine offene Kandidatur.", + tribeGovernanceProposeInternal: "Interne Kandidatur vorschlagen", + tribeGovernanceInternalCandidatures: "Interne Kandidaturen", + tribeGovernanceNoCandidatures: "Keine offenen Kandidaturen.", + tribeGovernanceAddRule: "Regel hinzufügen", + tribeGovernanceNoRules: "Noch keine Regeln.", + tribeGovernanceNoLeaders: "Noch keine Führungskräfte gewählt.", + tribeGovernanceComingSoon: "Bald im Governance-Modul.", + logsTitle: "Logbuch", + logsDescription: "Erfasse deine Erfahrung im Netzwerk.", + logsReadMore: "Mehr lesen", + logsViewTitle: "Logbuch", + logsColumnType: "Typ", + logsView: "Ansehen", + logsManualPrompt: "Schreibe dein Logbuch", + logsUpdateButton: "Aktualisieren", + logsEditTitle: "Eintrag bearbeiten", + logsCreateDescription: "Erfasse deine Erfahrung...", + logsCreateTitle: "Eintrag erstellen", + logsWriteButton: "Schreiben", + logsTextPlaceholder: "Beschreibe deine Erfahrungen...", + logsTextField: "Text", + logsLabelPlaceholder: "Bezeichnung...", + logsLabelField: "Schreibe dein Logbuch (Bezeichnung)", + logsAiDisabledWarn: "Aktiviere das KI-Modul in /modules, um KI-Einträge zu verwenden.", + logsAiContextValue: "Blockchain-Tag", + logsAiContext: "Kontext", + logsAiModStatus: "AImod", + logsModeApply: "Anwenden!", + logsModeAIWritten: "AI-Assistant", + logsModeManual: "Manuell", + logsModeAI: "KI", + logsColumnDelete: "Löschen", + logsColumnEdit: "Bearbeiten", + logsColumnLog: "Logbuch", + logsColumnDate: "Datum", + logsDelete: "Löschen", + logsEdit: "Bearbeiten", + logsFilterAlways: "IMMER", + logsFilterYear: "LETZTES JAHR", + logsFilterMonth: "LETZTER MONAT", + logsFilterWeek: "LETZTE WOCHE", + logsFilterToday: "HEUTE", + logsFilterRecent: "AKTUELL", + logsFilterAll: "ALLE", + logsCreate: "Eintrag erstellen", + logsExport: "Logbuch exportieren", + logsExportOne: "Exportieren", + logsViewDetails: "Details ansehen", + logsGenerateButton: "Text generieren", + logsSearchText: "In Logbüchern suchen...", + logsSearchAnyType: "Beliebiger Typ", + logsSearchButton: "Suchen", + logsEmpty: "Noch keine Einträge.", + modulesLogsLabel: "Logbuch", + modulesLogsDescription: "Modul, um (über einen KI-Assistenten) deine Erfahrungen aufzuzeichnen.", + statsLogsTitle: "Logbuch", + statsLogsEntries: "Einträge", + typeLog: "LOGBUCH", + blockchainCycle: "Zyklus", - //END } -}; +} \ No newline at end of file diff --git a/nodejs-project/nodejs-project/src/client/assets/translations/oasis_en.js b/nodejs-project/nodejs-project/src/client/assets/translations/oasis_en.js index bbddb936..0c3a84e5 100644 --- a/nodejs-project/nodejs-project/src/client/assets/translations/oasis_en.js +++ b/nodejs-project/nodejs-project/src/client/assets/translations/oasis_en.js @@ -74,7 +74,6 @@ module.exports = { continueReading: "Continue reading", moreComments: "more comment", readThread: "read the rest of the thread", - // pixelia pixeliaTitle: 'Pixelia', pixeliaDescription: 'Draw pixels on the grid and collaborARTe with others in your network.', coordLabel: 'Coordinate (e.g., A3)', @@ -86,7 +85,6 @@ module.exports = { invalidCoordinate: 'Incorrect coordinate', goToMuralButton: "View Mural", totalPixels: 'Total Pixels', - // modules modules: "Modules", modulesViewTitle: "Modules", modulesViewDescription: "Set your environment by enabling or disabling modules.", @@ -119,7 +117,6 @@ module.exports = { opinionsTitle: "Opinions", saveSettings: "Save configuration", apply: "Apply", - // menu categories menuPersonal: "Personal", menuContent: "Content", menuGovernance: "Governance", @@ -130,13 +127,11 @@ module.exports = { menuEconomy: "Economy", menuMedia: "Media", menuTools: "Tools", - // post actions comment: "Comment", subtopic: "Subtopic", json: "JSON", createdAt: "Created At", createdBy: "by", - // relationships unfollow: "Unsupport", follow: "Support", block: "Block", @@ -159,11 +154,9 @@ module.exports = { relationshipNone: "You are not supporting", relationshipConflict: "Conflict", relationshipBlockingPost: "Blocked post", - // spreads view viewLikes: "View spreads", spreadedDescription: "List of posts spread by the inhabitant.", totalspreads: "Total spreads", - // composer attachFiles: "Attach files", preview: "Preview", publish: "Write", @@ -198,12 +191,10 @@ module.exports = { ], publishCustom: "Write advanced post", subtopicLabel: "Create a subtopic of this post", - //mentions messagePreview: "Post Preview", mentionsMatching: "Matching Mentions", mentionsName: "Name", mentionsRelationship: "Relationship", - //settings updateit: "GET UPDATES!", updateBannerText: "A new version of Oasis is available.", updateBannerAction: "Update now →", @@ -273,7 +264,6 @@ module.exports = { homePageTitle: "Home", homePageDescription: "Select which module you want as your home page.", saveHomePage: "Set home", - //invites invites: "Invites", invitesTitle: "Invites", invitesInvites: "Invitations", @@ -296,9 +286,7 @@ module.exports = { currentlyUnreachable: "ERROR!", errorDetails: "Error Details", genericError: "An error occurred.", - //panic panicMode: "Panic Mode!", - //cipher encryptData: "Set password (min 32 characters long) to encrypt your blockchain", decryptData: "Enter password to decrypt your blockchain", panicModeDescription: "Encrypt/Decrypt or DELETE your blockchain", @@ -306,7 +294,6 @@ module.exports = { encryptPanicButton: "Encrypt blockchain", decryptPanicButton: "Decrypt blockchain", removePanicButton: "DELETE ALL YOUR DATA!", - //search searchTitle: "Search", searchDescriptionLabel: "Search for content in your network.", searchLanguagesLabel: "Languages", @@ -354,9 +341,7 @@ module.exports = { votesCreatedByLabel:"Created by", voteStatusOpen:"OPEN", voteStatusClosed:"CLOSED", - //image search page imageSearchLabel: "Enter words to search for images labelled with them.", - //posts and comments commentDescription: ({ parentUrl }) => [ " commented on ", a({ href: parentUrl }, " thread"), @@ -368,7 +353,6 @@ module.exports = { ], subtopicTitle: ({ authorName }) => [`Subtopic on @${authorName}'s post`], mysteryDescription: "posted a mysterious post", - // misc + search oasisDescription: "OASIS Project Network", searchSubmit: "Let's Search...", hashtagDescription: "Posts tagged with this hashtag.", @@ -381,6 +365,7 @@ module.exports = { videoLabel: "VIDEOS", audioLabel: "AUDIOS", documentLabel: "DOCUMENTS", + torrentLabel: "TORRENTS", pdfFallbackLabel: "PDF Document", eventLabel: "EVENTS", taskLabel: "TASKS", @@ -389,6 +374,17 @@ module.exports = { bookmarkLabel: "BOOKMARKS", tribeLabel: "TRIBES", marketLabel: "MARKET", + shopLabel: "SHOPS", + shopProductLabel: "SHOP PRODUCTS", + mapLabel: "MAPS", + jobLabel: "JOBS", + forumLabel: "FORUMS", + projectLabel: "PROJECTS", + bankWalletLabel: "WALLETS", + bankClaimLabel: "UBI CLAIMS", + voteLabel: "VOTES", + contactLabel: "CONTACTS", + pubLabel: "PUBS", cvLabel: "CVs", submit: "Submit", subjectLabel: "Subject", @@ -449,7 +445,6 @@ module.exports = { walletUser: "Username", walletPass: "Password", walletConfiguration: "Set wallet", - //cipher cipher: "Crypter", cipherTitle: "Crypter", cipherDescription: "Encrypt and decrypt your text symmetrically (using a shared password).", @@ -459,6 +454,7 @@ module.exports = { cipherTextLabel: "Text to Encrypt", cipherTextPlaceholder: "Enter text to encrypt...", cipherPasswordLabel: "Set password (min 32 characters long) to encrypt your text", + cipherPasswordDecryptLabel: "Set password (min 32 characters long) to decrypt your text", cipherPasswordPlaceholder: "Enter a password...", cipherEncryptButton: "Encrypt", cipherDecryptTitle: "Decrypt Text", @@ -484,7 +480,6 @@ module.exports = { missingFieldsError: "Text, password or IV not provided.", encryptionError: "Error encrypting text.", decryptionError: "Error decrypting text.", - //bookmarking bookmarkTitle: "Bookmarks", bookmarkDescription: "Discover and manage bookmarks in your network.", bookmarkAllSectionTitle: "Bookmarks", @@ -524,7 +519,6 @@ module.exports = { noUrl: "No link", noCategory: "No category", noLastVisit: "No last visit", - //videos videoTitle: "Videos", videoDescription: "Explore and manage video content in your network.", videoPluginTitle: "Title", @@ -563,7 +557,6 @@ module.exports = { videoMessageAuthorButton: "PM", videoUpdatedAt: "Updated", videoNoMatch: "No videos match your search.", - //documents documentTitle: "Documents", documentDescription: "Discover and manage documents in your network.", documentAllSectionTitle: "Documents", @@ -600,7 +593,6 @@ module.exports = { documentSearchButton: "Search", documentNoMatch: "No documents match your search.", documentUpdatedAt: "Updated", - //audios audioTitle: "Audios", audioDescription: "Explore and manage audio content in your network.", audioPluginTitle: "Title", @@ -639,7 +631,6 @@ module.exports = { audioNoMatch: "No audios match your search.", audioFavoritesSectionTitle: "Favorites", audioFilterFavorites: "FAVORITES", - //favorites favoritesTitle: "Favorites", favoritesDescription: "All your favorited media in one place.", favoritesFilterAll: "ALL", @@ -648,10 +639,13 @@ module.exports = { favoritesFilterBookmarks: "BOOKMARKS", favoritesFilterDocuments: "DOCUMENTS", favoritesFilterImages: "IMAGES", + favoritesFilterMaps: "MAPS", + favoritesFilterPads: "PADS", + favoritesFilterChats: "CHATS", + favoritesFilterCalendars: "CALENDARS", favoritesFilterVideos: "VIDEOS", favoritesRemoveButton: "Remove from favorites", favoritesNoItems: "No favorites yet.", - //inhabitants yourContacts: "Your Contacts", allInhabitants: "Inhabitants", allCVs: "All CVs", @@ -688,7 +682,7 @@ module.exports = { oasisId: "ID", noInhabitantsFound: "No inhabitants found, yet.", inhabitantActivityLevel: "Activity Level", - //parliament + deviceLabel: "Device", parliamentTitle: "Parliament", parliamentDescription: "Explore forms of government and collective management laws.", parliamentFilterGovernment: "GOVERMENT", @@ -830,7 +824,6 @@ module.exports = { parliamentProposalVoteStatusLabel: "Vote status", parliamentProposalOnTrackYes: "Threshold reached", parliamentProposalOnTrackNo: "Below threshold", - //courts courtsTitle: "Courts", courtsDescription: "Explore forms of conflict resolution and collective justice management.", courtsFilterCases: "CASES", @@ -881,6 +874,7 @@ module.exports = { courtsNoNominations: "No nominations yet.", courtsAccuser: "Accuser", courtsRespondent: "Respondent", + courtsRespondentInvalid: "Must be a valid SSB ID (@...ed25519)", courtsThStatus: "Status", courtsThAnswerBy: "Answer by", courtsThEvidenceBy: "Evidence by", @@ -945,7 +939,6 @@ module.exports = { courtsRoleDictator: "Dictator", courtsAssignJudgeTitle: "Choose judge", courtsAssignJudgeBtn: "Choose judge", - //trending trendingTitle: "Trending", exploreTrending: "Explore the most popular content in your network.", ALLButton: "ALL", @@ -964,6 +957,7 @@ module.exports = { audioButton: "AUDIOS", videoButton: "VIDEOS", documentButton: "DOCUMENTS", + torrentButton: "TORRENTS", author: "By", createdAtLabel: "Created At", totalVotes: "Total Votes", @@ -991,7 +985,6 @@ module.exports = { trendingAuthor: "By", trendingCreatedAtLabel: "Created At", trendingTotalCount: "Total Count", - //tasks tasksTitle: "Tasks", tasksDescription: "Discover and manage tasks in your network.", taskTitleLabel: "Title", @@ -1047,7 +1040,6 @@ module.exports = { notasks: "No tasks available.", noLocation: "No location specified", taskSetStatus: "Set Status", - //events eventTitle: "Events", eventDateLabel: "Date", eventsTitle: "Events", @@ -1115,7 +1107,6 @@ module.exports = { eventUnattended: "Unattended", eventStatusOpen: "Open", eventStatusClosed: "Closed", - //tags tagsTitle: "Tags", tagsDescription: "Discover and explore taxonomy patterns in your network.", tagsAllSectionTitle: "Tags", @@ -1127,13 +1118,13 @@ module.exports = { tagsNoItems: "No tags available.", tagsTableHeaderTag: "TAG/LINK:", tagsTableHeaderCount: "COUNTER:", - //transfers transfersTitle: "Transfers", transfersDescription: "Discover and manage transfers in your network.", transfersFrom: "From", transfersTo: "To", transfersFilterAll: "ALL", transfersFilterMine: "MINE", + transfersFilterUBI: "UBI", transfersFilterMarket: "MARKET", transfersFilterTop: "TOP", transfersFilterPending: "PENDING", @@ -1158,12 +1149,14 @@ module.exports = { transfersConfirmButton: "Confirm Transfer", transfersNoItems: "No transfers found.", transfersMineSectionTitle: "Your Transfers", + transfersUBISectionTitle: "UBI Transfers", transfersMarketSectionTitle: "Market Transfers", transfersTopSectionTitle: "Top Transfers", transfersPendingSectionTitle: "Pending Transfers", transfersUnconfirmedSectionTitle: "Unconfirmed Transfers", transfersClosedSectionTitle: "Closed Transfers", transfersDiscardedSectionTitle: "Discarded Transfers", + transfersCreateSectionTitle: "Create transfer", transfersAllSectionTitle: "Transfers", transfersFilterFavs: "Favorites", transfersFavsSectionTitle: "Favorite transfers", @@ -1183,7 +1176,6 @@ module.exports = { transfersExpiredBadge: "EXPIRED", transfersUpdatedAt: "Updated", transfersNoMatch: "No transfers match your search.", - //votations (voting/polls) votationsTitle: "Votations", votationsDescription: "Discover and manage votations in your network.", voteMineSectionTitle: "Your Votations", @@ -1240,7 +1232,6 @@ module.exports = { voteNewCommentPlaceholder: 'Write your comment here…', voteNewCommentButton: 'Post comment', voteNewCommentLabel: 'Add a comment', - //CV cvTitle: "CV", cvLabel: "Curriculum Vitae (CV)", cvEditSectionTitle: "Edit CV", @@ -1279,13 +1270,11 @@ module.exports = { cvEditButton: "Update", cvDeleteButton: "Delete", cvNoCV: "No CV found.", - // blog/post, blogSubject: "Subject", blogMessage: "Message", blogImage: "Upload media (max-size: 50MB)", blogPublish: "Preview", noPopularMessages: "No popular messages published, yet", - //forum forumTitle: "Forums", forumCategoryLabel: "Category", forumTitleLabel: "Title", @@ -1326,7 +1315,6 @@ module.exports = { forumCatPRIVACY: "Privacy", forumCatCYBERWARFARE: "Cyberwarfare", forumCatSURVIVALISM: "Survivalism", - //images imageTitle: "Images", imageDescription: "Explore and manage image content in your network.", imagePluginTitle: "Title", @@ -1359,7 +1347,7 @@ module.exports = { imageTitlePlaceholder: "Optional", imageDescriptionLabel: "Description", imageDescriptionPlaceholder: "Optional", - imageMemeLabel: "Mark as MEME", + imageMemeLabel: "¿MEME?", imageNoFile: "No image file provided", noImages: "No images available.", imageSearchPlaceholder: "Search title, tags, description, author...", @@ -1370,8 +1358,11 @@ module.exports = { imageMessageAuthorButton: "Message", imageUpdatedAt: "Updated", imageNoMatch: "No images match your search.", - //feed feedTitle: "Feed", + feedDetailTitle: "Feed", + feedOpenDiscussion: "Open discussion", + feedPostComment: "Post comment", + noComments: "No comments yet", createFeedTitle: "Create Feed", createFeedButton: "Send Feed!", feedPlaceholder: "What's happening? (max 280 characters)", @@ -1387,10 +1378,8 @@ module.exports = { author: "By", createdAtLabel: "Created at", FeedshareYourOpinions: "Discover and share short-texts in your network.", - //feed refeedButton: "Refeed", alreadyRefeeded: "You already refeeded this.", - //activity activityTitle: "Activity", yourActivity: "Your Activity", globalActivity: "Global Activity", @@ -1565,7 +1554,6 @@ module.exports = { courtsPublicPrefSubmit: 'Save visibility preference', courtsMethodMEDIATION: 'Mediation', courtsNoCases: 'No cases.', - //reports reportsTitle: "Reports", reportsDescription: "Manage and track reports related to issues, bugs, abuses and content warnings in your network.", reportsFilterAll: "ALL", @@ -1733,12 +1721,12 @@ module.exports = { updateTribeTitle: "Update Tribe", tribeSectionOverview: "Overview", tribeSectionInhabitants: "Inhabitants", - tribeSectionVotations: "Votations", - tribeSectionEvents: "Events", + tribeSectionVotations: "VOTATIONS", + tribeSectionEvents: "EVENTS", tribeSectionReports: "Reports", - tribeSectionTasks: "Tasks", - tribeSectionFeed: "Feed", - tribeSectionForum: "Forum", + tribeSectionTasks: "TASKS", + tribeSectionFeed: "FEED", + tribeSectionForum: "FORUM", tribeSectionMarket: "Market", tribeSectionJobs: "Jobs", tribeSectionProjects: "Projects", @@ -1748,6 +1736,16 @@ module.exports = { tribeSectionVideos: "VIDEOS", tribeSectionDocuments: "DOCUMENTS", tribeSectionBookmarks: "BOOKMARKS", + tribeSectionMaps: "MAPS", + tribeSectionPads: "PADS", + tribeSectionChats: "CHATS", + tribeSectionCalendars: "CALENDARS", + tribePadCreate: "Create Pad", + tribeChatCreate: "Create Chat", + tribeCalendarCreate: "Create Calendar", + tribePadsEmpty: "No pads, yet.", + tribeChatsEmpty: "No chats, yet.", + tribeCalendarsEmpty: "No calendars, yet.", tribeInhabitantsEmpty: "No inhabitants in this tribe, yet.", tribeEventCreate: "Create Event", tribeEventsEmpty: "No events, yet.", @@ -1913,6 +1911,7 @@ module.exports = { agendaFilterTransfers: "TRANSFERS", agendaFilterJobs: "JOBS", agendaFilterProjects: "PROJECTS", + agendaFilterCalendars: "CALENDARS", agendaNoItems: "No assignments found.", agendaAuthor: "By", agendaDiscardButton: "Discard", @@ -1951,7 +1950,6 @@ module.exports = { agendaTransferConcept: "Concept", agendaTransferAmount: "Amount", agendaTransferDeadline: "Deadline", - //opinions opinionsTitle: "Opinions", shareYourOpinions: "Discover and vote for opinions in your network.", author: "By", @@ -2039,7 +2037,6 @@ module.exports = { voteCreative: "Creative", voteSpam: "Spam", voteAdultOnly: "Adult Only", - //inbox publishBlog: "Publish Blog", privateMessage: "PM", pmSendTitle: "Private Messages", @@ -2079,7 +2076,6 @@ module.exports = { inboxProjectPledgedTitle: "New pledge to your project", pmHasPledged: "has pledged", pmToYourProject: "to your project", - //blockexplorer blockchain: 'BlockExplorer', blockchainTitle: 'BlockExplorer', blockchainDescription: 'Explore and visualize the blocks in the blockchain.', @@ -2100,7 +2096,6 @@ module.exports = { blockchainBack: 'Back to Blockexplorer', blockchainContentDeleted: "This content has been tombstoned", visitContent: "Visit Content", - //banking banking: 'Banking', bankingTitle: 'Banking', bankingDescription: 'Explore the current value of ECOin and the corresponding UBI allocation, distributed per epoch based on participation and trust.', @@ -2112,7 +2107,14 @@ module.exports = { bankBack: 'Back to Banking', bankViewTx: 'View Tx', bankClaimNow: 'Claim now', - bankPubBalance: 'PUB Balance', + bankClaimUBI: 'Claim UBI!', + bankClaimAndPay: 'Claim & Pay', + bankClaimedPending: 'Claim pending...', + bankStatusUnclaimed: 'Unclaimed', + bankStatusClaimed: 'Claimed', + bankStatusExpired: 'Expired', + bankPubOnly: 'PUB-only operation', + bankNoPendingUBI: 'No pending UBI allocations for this epoch.', bankEpoch: 'Epoch', bankPool: 'Pool (this epoch)', bankWeightsSum: 'Sum of weights', @@ -2160,20 +2162,106 @@ module.exports = { bankMyAddress: 'Your address', bankRemoveMyAddress: 'Remove my address', bankNotRemovableOasis: 'Addresses cannot be removed locally', - bankingFutureUBI: "Estimated UBI Allocation", + bankingFutureUBI: "UBI", + pubIdTitle: "PUB Wallet", + pubIdDescription: "Set the PUB OASIS ID. This will be used for PUB transactions (including the UBI).", + pubIdLabel: "PUB ID", + pubIdSave: "Save configuration", + pubIdPlaceholder: "@PUB_ID.ed25519", + bankUbiAvailableNo: "NO FUNDS!", + bankUbiAvailableOk: "AVAILABLE!", + bankUbiAvailability: "UBI availability", + bankAlreadyClaimedThisMonth: "Already claimed this month", + bankUbiThisMonth: "UBI (this month)", + bankUbiLastClaimed: "UBI (last claimed)", + bankUbiNeverClaimed: "Never claimed", + bankUbiTotalClaimed: "UBI (total claimed)", + bankUbiPub: "PUB", + bankUbiInhabitant: "INHABITANT", + bankUbiClaimedAmount: "CLAIMED (ECO)", + typeBankUbiResult: "BANKING - UBI", + bankNoPubConfigured: "No PUB configured. Set your PUB ID in Settings.", + shopsTitle: "Shops", + shopDescription: "Discover and manage shops in the network.", + shopTitle: "Shop", + shopFilterAll: "ALL", + shopFilterMine: "MINE", + shopFilterRecent: "RECENT", + shopFilterTop: "TOP", + shopFilterProducts: "PRODUCTS", + shopFilterPrices: "PRICES", + shopFilterFavorites: "FAVORITES", + shopUpload: "Create Shop", + shopAllSectionTitle: "Shops", + shopMineSectionTitle: "Your Shops", + shopRecentSectionTitle: "Recent Shops", + shopTopSectionTitle: "Top Shops", + shopProductsSectionTitle: "Top Products", + shopPricesSectionTitle: "Products by Price", + shopFavoritesSectionTitle: "Favorites", + shopCreateSectionTitle: "Create Shop", + shopUpdateSectionTitle: "Update Shop", + shopCreate: "Create", + shopUpdate: "Update", + shopDelete: "Delete", + shopAddFavorite: "Add Favorite", + shopRemoveFavorite: "Remove Favorite", + shopOpen: "OPEN", + shopClosed: "CLOSED", + shopOpenShop: "Open Shop", + shopCloseShop: "Close Shop", + shopProducts: "Products", + shopProductAdd: "Add Product", + shopProductTitle: "Product", + shopProductUpdate: "Update Product", + shopProductPrice: "Price (ECO)", + shopProductStock: "Stock", + shopProductUntitled: "Untitled Product", + shopUntitled: "Untitled Shop", + shopNoItems: "No shops found.", + shopNoProducts: "No products yet.", + shopOutOfStock: "Out of stock", + shopBuy: "Buy", + shopBackToShop: "Back to Shop", + shopShareUrl: "Share URL", + shopVisitShop: "VISIT SHOP", + shopStatus: "STATUS", + shopCreatedAt: "CREATED", + shopSearchPlaceholder: "Search shops...", + shopUrl: "URL", + shopLocation: "Location", + shopTags: "Tags", + shopVisibility: "Visibility", + shopImage: "Image", + shopShortDescription: "Short Description", + shopShortDescriptionPlaceholder: "Brief description of your shop", + shopTitlePlaceholder: "Name of your shop", + shopDescriptionPlaceholder: "Detailed description of your shop", + shopUrlPlaceholder: "https://your-shop-url.com", + shopLocationPlaceholder: "City, Country", + shopTagsPlaceholder: "tag1, tag2, tag3", + mapTitlePlaceholder: "Map title", + shopProductFeatured: "Featured Product", + shopSendToMarket: "Send to Market", + typeShop: "SHOP", + typeShopProduct: "SHOP PRODUCT", bankExchange: 'Exchange', bankExchangeCurrentValue: 'ECOin Value (1h)', bankTotalSupply: 'ECOin Total Supply', bankEcoinHours: "ECOin Equivalence in Time", bankHoursOfWork: 'hours', + bankUnitMs: "ms", + bankUnitSeconds: "seconds", + bankUnitMinutes: "minutes", + bankUnitDays: "days", bankExchangeNoData: 'No data available', bankExchangeIndex: 'ECOin Value (1h)', - bankInflation: 'ECOin Inflation', + bankInflation: 'ECOin Inflation (anual)', + bankInflationMonthly: 'ECOin Inflation (mensual)', bankCurrentSupply: 'ECOin Current Supply', bankingSyncStatus: 'ECOin Status', bankingSyncStatusSynced: 'Synced', bankingSyncStatusOutdated: 'Outdated', - //stats statsTitle: 'Statistics', statistics: "Statistics", statsInhabitant: "Inhabitant Stats", @@ -2223,6 +2311,9 @@ module.exports = { statsAudio: "Audios", statsVideo: "Videos", statsDocument: "Documents", + statsMap: "Maps", + statsShop: "Shops", + statsShopProduct: "Shop products", statsTransfer: "Transfers", statsAiExchange: "AI", statsPUBs: 'PUBs', @@ -2289,7 +2380,6 @@ module.exports = { statsCourtsSettlementAccepted: "Settlements accepted", statsCourtsNomination: "Judge nominations", statsCourtsNominationVote: "Nomination votes", - //AI ai: "AI", aiTitle: "AI", aiDescription: "A Collective Artificial Intelligence (CAI) called '42' that learns from your network.", @@ -2321,7 +2411,6 @@ module.exports = { aiApproveCustomTrain: "Train using this custom answer", aiCustomAnswerPlaceholder: "Write your custom answer…", statsAIExchanges: "Model Exchanges", - //market marketMineSectionTitle: "Your Items", marketCreateSectionTitle: "Create Item", marketUpdateSectionTitle: "Update", @@ -2348,6 +2437,7 @@ module.exports = { marketItemDescription: "Description", marketItemDescriptionPlaceholder: "Describe the item you're selling", marketItemStatus: "Status", + marketShopLabel: "Shop", marketItemCondition: "Condition", marketItemPrice: "Price", marketItemTags: "Tags", @@ -2384,7 +2474,6 @@ module.exports = { marketAuctionEnded: "Ended", marketMyBidBadge: "You bid", marketNoItemsMatch: "No items match your search.", - //jobs jobsTitle: "Jobs", jobsDescription: "Discover and manage jobs in your network.", jobsFilterRecent: "RECENT", @@ -2475,7 +2564,6 @@ module.exports = { jobsTagsLabel: "Tags", jobsTagsPlaceholder: "tag1, tag2, tag3", noJobsMatch: "No jobs match your search.", - //projects projectsTitle: "Projects", projectsDescription: "Create, fund, and follow community-driven projects in your network.", projectCreateProject: "Create Project", @@ -2581,11 +2669,9 @@ module.exports = { projectPledgeAmount: "Amount", projectSelectMilestoneOrBounty: "Select Milestone or Bounty", projectPledgeButton: "Pledge", - //footer footerLicense: "GPLv3", footerPackage: "Package", footerVersion: "Version", - //modules modulesModuleName: "Name", modulesModuleDescription: "Description", modulesModuleStatus: "Status", @@ -2632,6 +2718,8 @@ module.exports = { modulesTasksDescription: "Module to discover and manage tasks.", modulesMarketLabel: "Market", modulesMarketDescription: "Module to exchange goods or services.", + modulesShopsLabel: "Shops", + modulesShopsDescription: "Module to manage and discover shops.", modulesTribesLabel: "Tribes", modulesTribesDescription: "Module to explore or create tribes (groups).", modulesVotationsLabel: "Votations", @@ -2686,8 +2774,441 @@ module.exports = { statsCarbonTombstone: "Tombstoning footprint", feedSuccessMsg: "Feed published successfully!", dominantOpinionLabel: "Dominant opinion", - uploadMedia: "Upload media (max-size: 50MB)" + uploadMedia: "Upload media (max-size: 50MB)", + mapsLabel: "Maps", + mapTitle: "Maps", + mapDescription: "Explore and manage offline maps in your network.", + mapMineSectionTitle: "Your Maps", + mapCreateSectionTitle: "Create Map", + mapUpdateSectionTitle: "Update Map", + mapAllSectionTitle: "Maps", + mapRecentSectionTitle: "Recent Maps", + mapFavoritesSectionTitle: "Favorites", + mapFilterAll: "ALL", + mapFilterMine: "MINE", + mapFilterRecent: "RECENT", + mapFilterFavorites: "FAVORITES", + mapUploadButton: "Upload Map", + mapCreateButton: "Create Map", + mapUpdateButton: "Update", + mapDeleteButton: "Delete", + mapAddFavoriteButton: "Add favorite", + mapRemoveFavoriteButton: "Remove favorite", + mapLatLabel: "Latitude", + mapLatPlaceholder: "e.g. 40.4168", + mapLngLabel: "Longitude", + mapLngPlaceholder: "e.g. -3.7038", + mapDescriptionLabel: "Description", + mapDescriptionPlaceholder: "Describe the map or location...", + mapTypeLabel: "Map type", + mapTypeSingle: "SINGLE (only initial location)", + mapTypeOpen: "OPEN (anyone can add markers)", + mapTypeClosed: "CLOSED (only creator adds markers)", + mapTagsLabel: "Tags", + mapTagsPlaceholder: "Enter tags separated by commas", + mapUrlLabel: "Map URL", + mapPickCoordLabel: "Or select a location on the grid:", + mapMarkersLabel: "markers", + mapMarkersTitle: "Markers", + mapMarkerDefault: "Marker", + mapMarkerLatLabel: "Marker latitude", + mapMarkerLngLabel: "Marker longitude", + mapMarkerLabelField: "Marker label", + mapMarkerLabelPlaceholder: "Describe this marker...", + markerImageLabel: "Marker Image", + mapAddMarkerTitle: "Add Marker", + mapAddMarkerButton: "Add Marker", + mapCleanMarkerButton: "Clean Marker", + mapApplyZoom: "Apply Zoom", + mapSearchPlaceholder: "Search description, tags, author...", + mapSearchButton: "Search", + mapZoomIn: "Zoom +", + mapZoomOut: "Zoom −", + mapClickToCreate: "Click on the map to select a location", + mapClickToAddMarker: "Click on the map to add a marker", + mapUpdatedAt: "Updated", + mapNoMatch: "No maps match your search.", + noMaps: "No maps available.", + mapLocationTitle: "Map Location", + mapVisitLabel: "Visit map", + mapUrlPlaceholder: "/maps/MAP_ID", + typeMap: "MAPS", + typeMapMarker: "MAP MARKER", + modulesMapLabel: "Maps", + modulesMapDescription: "Module to manage and share offline maps.", + padsTitle: "Pads", + padTitle: "Pad", + modulesPadsLabel: "Pads", + modulesPadsDescription: "Module to manage collaborative text editors.", + padFilterAll: "ALL", + padFilterMine: "MINE", + padFilterRecent: "RECENT", + padFilterOpen: "OPEN", + padFilterClosed: "CLOSED", + padCreate: "Create Pad", + padUpdate: "Update Pad", + padDelete: "Delete Pad", + padTitleLabel: "Title", + padTitlePlaceholder: "Enter pad title...", + padStatusLabel: "Status", + padStatusOpen: "OPEN", + padStatusInviteOnly: "INVITE-ONLY", + padStatusClosed: "CLOSED", + padDeadlineLabel: "Deadline", + padTagsLabel: "Tags", + padTagsPlaceholder: "tag1, tag2, ...", + padMembersLabel: "Members", + padVisitPad: "Visit Pad", + padShareUrl: "Share URL", + padCreated: "Created", + padAuthor: "Author", + padGenerateCode: "Generate Code", + padInviteCodeLabel: "Invite Code", + padInviteCodePlaceholder: "Enter invite code...", + padValidateInvite: "Validate", + padStartEditing: "START EDITING!", + padEditorPlaceholder: "Start writing...", + padSubmitEntry: "Submit", + padNoEntries: "No entries yet.", + padAllSectionTitle: "Pads", + padMineSectionTitle: "Your Pads", + padsNoItems: "No pads found.", + padsDescription: "Manage collaborative encrypted text editors in your network.", + padVersionHistory: "Version History", + padVersionView: "View", + padRecentSectionTitle: "Recent Pads", + padOpenSectionTitle: "Open Pads", + padClosedSectionTitle: "Closed Pads", + padCreateSectionTitle: "Create New Pad", + padUpdateSectionTitle: "Update Pad", + padInviteGenerated: "Invite Code Generated", + typePad: "PAD", + padNew: "NEW", + padAddFavorite: "Add to Favorites", + padRemoveFavorite: "Remove from Favorites", + padClose: "Close Pad", + padBackToEditor: "Back to editor", + padSearchPlaceholder: "Search pads...", + + calendarsTitle: "Calendars", + calendarTitle: "Calendar", + modulesCalendarsLabel: "Calendars", + modulesCalendarsDescription: "Module to discover and manage calendars.", + typeCalendar: "CALENDAR", + calendarFilterAll: "ALL", + calendarFilterMine: "MINE", + calendarFilterOpen: "OPEN", + calendarFilterClosed: "CLOSED", + calendarFilterRecent: "RECENT", + calendarFilterFavorites: "FAVORITES", + calendarCreate: "Create Calendar", + calendarUpdate: "Update", + calendarDelete: "Delete", + calendarTitleLabel: "Title", + calendarTitlePlaceholder: "Calendar title...", + calendarStatusLabel: "Status", + calendarStatusOpen: "OPEN", + calendarStatusClosed: "CLOSED", + calendarDeadlineLabel: "Deadline", + calendarTagsLabel: "Tags", + calendarTagsPlaceholder: "tag1, tag2...", + calendarParticipantsLabel: "Participants", + calendarParticipantsCount: "Participants", + calendarVisitCalendar: "Visit Calendar", + calendarCreated: "Created", + calendarAuthor: "Author", + calendarJoin: "Join Calendar", + calendarJoined: "Joined", + calendarAddDate: "Add Date", + calendarAddNote: "Add Note", + calendarDateLabel: "Date", + calendarDatePlaceholder: "Describe this date...", + calendarNoteLabel: "Note", + calendarNotePlaceholder: "Add a note...", + calendarFirstDateLabel: "Date", + calendarFirstNoteLabel: "Notes", + calendarIntervalLabel: "Interval", + calendarIntervalWeekly: "Weekly", + calendarIntervalMonthly: "Monthly", + calendarIntervalYearly: "Yearly", + calendarFormDescription: "Description", + calendarNoDates: "No dates added yet.", + calendarNoNotes: "No notes.", + calendarsNoItems: "No calendars found.", + calendarsDescription: "Discover and manage calendars in your network.", + calendarMonthPrev: "\u2190 Prev", + calendarMonthNext: "Next \u2192", + calendarMonthLabel: "Dates", + calendarsShareUrl: "Share URL", + calendarAllSectionTitle: "Calendars", + calendarRecentSectionTitle: "Recent Calendars", + calendarFavoritesSectionTitle: "Favorites", + calendarMineSectionTitle: "Your Calendars", + calendarOpenSectionTitle: "Open Calendars", + calendarClosedSectionTitle: "Closed Calendars", + calendarCreateSectionTitle: "Create New Calendar", + calendarUpdateSectionTitle: "Update Calendar", + calendarAddFavorite: "Add to Favorites", + calendarDeleteNote: "Delete", + calendarRemoveFavorite: "Remove from Favorites", + calendarSearchPlaceholder: "Search calendars...", + calendarAddEntry: "Add Entry", + calendarLeave: "Leave Calendar", + statsCalendar: "Calendars", + statsCalendarDate: "Calendar Dates", + statsCalendarNote: "Calendar Notes", + + modulesChatsLabel: "Chats", + modulesChatsDescription: "Module to discover and manage encrypted chats.", + typeChat: "CHAT", + typeChatMessage: "CHAT MESSAGE", + chatLabel: "CHATS", + chatMessageLabel: "CHAT MESSAGES", + chatsTitle: "Chats", + chatMineSectionTitle: "Your Chats", + chatRecentTitle: "Recent Chats", + chatFavoritesTitle: "Favorites", + chatOpenTitle: "Open Chats", + chatClosedTitle: "Closed Chats", + chatDescription: "Description", + chatCategory: "Category", + chatStatus: "STATUS", + chatFilterAll: "ALL", + chatFilterMine: "MINE", + chatFilterRecent: "RECENT", + chatFilterFavorites: "FAVORITES", + chatFilterOpen: "OPEN", + chatFilterClosed: "CLOSED", + chatCreate: "Create Chat", + chatUpdate: "Update Chat", + chatDelete: "Delete Chat", + chatClose: "Close Chat", + chatVisitChat: "VISIT CHAT", + chatUntitled: "Untitled Chat", + chatNoItems: "No chats found.", + chatParticipants: "Participants", + chatStartChatting: "START CHATTING!", + chatGenerateCode: "Generate Code", + chatShareUrl: "Share URL", + chatCreatedAt: "CREATED", + chatSearchPlaceholder: "Search chats...", + chatStatusOpen: "OPEN", + chatStatusInviteOnly: "INVITE-ONLY", + chatStatusClosed: "CLOSED", + chatSendMessage: "Send", + chatMessagePlaceholder: "Type your message...", + chatNoMessages: "No messages yet.", + chatLeave: "Leave Chat", + chatInviteCodeLabel: "Enter invite code", + chatJoinByInvite: "Join", + chatTitlePlaceholder: "Chat title", + chatDescriptionPlaceholder: "Chat description", + chatTagsPlaceholder: "tag1, tag2, tag3", + chatImageLabel: "Select an image file (.jpeg, .jpg, .png, .gif)", + chatInviteCode: "Invite Code", + chatAuthor: "Author", + chatCreated: "Created", + chatAddFavorite: "Add to Favorites", + chatRemoveFavorite: "Remove from Favorites", + chatPM: "PM", + chatStatusLabel: "Status", + chatCategoryLabel: "Category", + chatParticipantsLabel: "Participants", + gamesTitle: "Games", + gamesDescription: "Discover and play some mini-games in your network.", + gamesFilterAll: "ALL", + gamesPlayButton: "PLAY!", + gamesBackToGames: "Back to Games", + modulesGamesLabel: "Games", + modulesGamesDescription: "Module to discover and play some games.", + gamesCocolandTitle: "Cocoland", + gamesCocolandDesc: "A coconut with eyes jumping over palm trees and collecting ECOins. How far can you go?", + gamesTheFlowTitle: "ECOinflow", + gamesTheFlowDesc: "Connect PUBs to habitants through validators, shops and accumulators. Survive the CBDC threat!", + gamesNeonInfiltratorTitle: "Neon Infiltrator", + gamesNeonInfiltratorDesc: "Infiltrate the grid, collect confidential data, evade security drones and escape. How many levels can you clear?", + gamesSpaceInvadersTitle: "Space Invaders", + gamesSpaceInvadersDesc: "Stop the alien invasion! Shoot down waves of invaders before they reach the ground.", + gamesArkanoidTitle: "Arkanoid", + gamesArkanoidDesc: "Break all the bricks with your paddle and ball. A classic arcade challenge.", + gamesPingPongTitle: "PingPong", + gamesPingPongDesc: "Classic ping-pong against an AI opponent. First to 5 points wins.", + gamesOutrunTitle: "Outrun", + gamesOutrunDesc: "Race against time! Dodge traffic and reach the finish line before the clock runs out.", + gamesAsteroidsTitle: "Asteroids", + gamesAsteroidsDesc: "Pilot your ship through a deadly asteroid field. Shoot them down before they hit you.", + gamesRockPaperScissorsTitle: "Rock Paper Scissors", + gamesRockPaperScissorsDesc: "Rock, Paper, Scissors against an AI. Best of three rounds wins.", + gamesTikTakToeTitle: "TikTakToe", + gamesTikTakToeDesc: "Classic Tic-Tac-Toe against an AI. Get three in a row to win.", + gamesFlipFlopTitle: "FlipFlop", + gamesFlipFlopDesc: "Flip a coin and bet on heads or tails. How lucky are you?", + games8BallTitle: "8Ball Pool", + games8BallDesc: "Top-down pool. Click to aim, hold to charge power. Pot all balls in the fewest shots.", + gamesArtilleryTitle: "Artillery", + gamesArtilleryDesc: "Aim your cannon, factor in the wind, and hit the target. 5 rounds, fewest shots wins.", + gamesLabyrinthTitle: "Labyrinth", + gamesLabyrinthDesc: "Escape the maze before your moves run out. Each level gets bigger and harder.", + gamesCocomanTitle: "Cocoman", + gamesCocomanDesc: "Eat all the dots, avoid the ghosts. Ghosts move in real time — keep moving!", + gamesTetrisTitle: "Tetris", + gamesAudioPendulumTitle: "Audio Pendulum", + gamesAudioPendulumDesc: "Chaotic physics simulator with real-time audio synthesis. Angular velocities become frequencies, peaks become drum hits. No two simulations sound alike.", + gamesTetrisDesc: "Classic falling blocks. Clear lines to score. How long can you last?", + gamesQuakeTitle: "Quake Arena", + gamesQuakeDesc: "First-person raycasting arena. Move and shoot your way through waves of enemies.", + gamesFilterScoring: "SCORING", + gamesHallOfFame: "Hall of Fame", + gamesHallPlayer: "Player", + gamesHallScore: "Score", + gamesNoScores: "No scores yet.", + gamesHallDate: "Date", + typeGameScore: "GAME SCORE", + gamesNewRecord: "New Record", + gameScoreLabel: "GAME SCORES", + statsChat: "Chats", + statsChatMessage: "Chat messages", + statsPad: "Pads", + statsPadEntry: "Pad entries", + statsGameScore: "Game scores", + chatAccessDenied: "You do not have access to the chat. Ask for an invitation to access the content.", + padAccessDenied: "You do not have access to the pad. Ask for an invitation to access the content.", + contentAccessDenied: "You do not have access to content.", + blockAccessRestricted: "Access restricted", + tribeContentAccessDenied: "Access Denied", + tribeContentAccessDeniedMsg: "This content belongs to a tribe. You must be a member to access it.", + tribeViewTribes: "View Tribes", + torrentsTitle: "Torrents", + torrentsDescription: "Explore and manage torrents in your network.", + torrentAllSectionTitle: "Torrents", + torrentMineSectionTitle: "Your Torrents", + torrentRecentSectionTitle: "Recent Torrents", + torrentTopSectionTitle: "Top Torrents", + torrentFavoritesSectionTitle: "Favorites", + torrentFilterAll: "ALL", + torrentFilterMine: "MINE", + torrentFilterRecent: "RECENT", + torrentFilterTop: "TOP", + torrentFilterFavorites: "FAVORITES", + torrentCreateSectionTitle: "Upload Torrent", + torrentUpdateSectionTitle: "Update Torrent", + torrentCreateButton: "Upload Torrent", + torrentUpdateButton: "Update", + torrentDeleteButton: "Delete", + torrentAddFavoriteButton: "Add Favorite", + torrentRemoveFavoriteButton: "Remove Favorite", + torrentFileLabel: "Select torrent file (.torrent)", + torrentTitleLabel: "Title", + torrentTitlePlaceholder: "Title", + torrentDescriptionLabel: "Description", + torrentDescriptionPlaceholder: "Description", + torrentTagsLabel: "Tags", + torrentTagsPlaceholder: "Enter tags separated by commas", + torrentSizeLabel: "Size", + torrentDownloadButton: "DOWNLOAD IT!", + torrentNoFile: "No torrent file", + noTorrents: "No torrents found.", + torrentSearchPlaceholder: "Search title, tags, author...", + torrentSearchButton: "Search", + torrentSortRecent: "Most recent", + torrentSortOldest: "Oldest", + torrentSortTop: "Most voted", + torrentNoMatch: "No matching torrents.", + torrentMessageAuthorButton: "Message Author", + torrentUpdatedAt: "Updated", + statsTorrent: "Torrents", + typeTorrent: "TORRENTS", + modulesTorrentsLabel: "Torrents", + modulesTorrentsDescription: "Module to discover and manage torrents.", + favoritesFilterTorrents: "TORRENTS", + tribeSectionTorrents: "TORRENTS", + tribeCreateTorrent: "Upload Torrent", + tribeMediaTypeTorrent: "Torrent", + settingsWishTitle: "Wish", + settingsWishDesc: "Configure the wish of your Avatar. This determines how to access the whole content and your level of experiences into the network.", + settingsWishWhole: "Multiverse", + settingsWishMutuals: "Only mutual-support", + settingsPmVisibilityTitle: "Private Messages", + settingsPmVisibilityDesc: "Configure the level of exposition to private messages that you want to have in the network.", + settingsPmVisibilityWhole: "Multiverse", + settingsPmVisibilityMutuals: "Only mutual-support", + pmMutualNotice: "Outbound is a UX guardrail. Inbound is an attention filter (ciphertext is still replicated).", + pmBlockedNonMutual: "You can only send private messages to habitants with mutual support.", + inhabitantsPendingFollowsTitle: "Pending follow requests", + inhabitantsPendingAccept: "Accept", + inhabitantsPendingReject: "Reject", + bxEncrypted: "ENCRYPTED", + bxEncryptedHexLabel: "Ciphertext (preview)", + tribeSectionGovernance: "GOVERNANCE", + tribeSubStatusPublic: "PUBLIC", + tribeSubStatusPrivate: "PRIVATE", + tribeSubInheritedPrivate: "PRIVATE (inherited from main tribe)", + tribePadInviteRequired: "You do not have access to the pad. Ask for an invitation to access the content.", + tribeChatInviteRequired: "You do not have access to the chat. Ask for an invitation to access the content.", + tribeGovernanceDesc: "Internal governance for this tribe. Propose candidatures, debate rules, elect leaders.", + tribeGovernanceNoGov: "No active government", + tribeGovernanceNoGovDesc: "This tribe has not yet elected a government. Propose candidatures to start the process.", + tribeGovernanceAlreadyPublished: "This tribe already has an open candidature in the current global parliament cycle.", + tribeGovernanceProposeInternal: "Propose internal candidature", + tribeGovernanceInternalCandidatures: "Internal candidatures", + tribeGovernanceNoCandidatures: "No open candidatures.", + tribeGovernanceAddRule: "Add rule", + tribeGovernanceNoRules: "No rules yet.", + tribeGovernanceNoLeaders: "No leaders elected yet.", + tribeGovernanceComingSoon: "Coming soon in this tribe's governance module.", + logsTitle: "Logs", + logsDescription: "Record your experience in the network.", + logsReadMore: "Read more", + logsViewTitle: "Log", + logsColumnType: "Type", + logsView: "View", + logsManualPrompt: "Write your log", + logsUpdateButton: "Update", + logsEditTitle: "Edit Log", + logsCreateDescription: "Record your experience...", + logsCreateTitle: "Create Log", + logsWriteButton: "Write", + logsTextPlaceholder: "Describe your experiences...", + logsTextField: "Text", + logsLabelPlaceholder: "Label...", + logsLabelField: "Write your log (label)", + logsAiDisabledWarn: "Enable the AI module in /modules to use AI-written logs.", + logsAiContextValue: "Blockchain day", + logsAiContext: "Context", + logsAiModStatus: "AImod", + logsModeApply: "Apply!", + logsModeAIWritten: "AI-Assistant", + logsModeManual: "Manual", + logsModeAI: "AI", + logsColumnDelete: "Delete", + logsColumnEdit: "Edit", + logsColumnLog: "Log", + logsColumnDate: "Date", + logsDelete: "Delete", + logsEdit: "Edit", + logsFilterAlways: "ALWAYS", + logsFilterYear: "LAST YEAR", + logsFilterMonth: "LAST MONTH", + logsFilterWeek: "LAST WEEK", + logsFilterToday: "TODAY", + logsFilterRecent: "RECENT", + logsFilterAll: "ALL", + logsCreate: "Create Log", + logsExport: "Export Logs", + logsExportOne: "Export", + logsViewDetails: "View Details", + logsGenerateButton: "Generate Text", + logsSearchText: "Search in logs...", + logsSearchAnyType: "Any type", + logsSearchButton: "Search", + logsEmpty: "No logs yet.", + modulesLogsLabel: "Logs", + modulesLogsDescription: "Module to record (via AI assistant) your experiences.", + statsLogsTitle: "Logs", + statsLogsEntries: "Entries", + typeLog: "LOGS", + blockchainCycle: "Cycle", + - //END } }; diff --git a/nodejs-project/nodejs-project/src/client/assets/translations/oasis_es.js b/nodejs-project/nodejs-project/src/client/assets/translations/oasis_es.js index e9cc1260..f580c084 100644 --- a/nodejs-project/nodejs-project/src/client/assets/translations/oasis_es.js +++ b/nodejs-project/nodejs-project/src/client/assets/translations/oasis_es.js @@ -67,7 +67,6 @@ module.exports = { continueReading: "Continuar leyendo", moreComments: "más comentarios", readThread: "leer el resto del hilo", - // pixelia pixeliaTitle: 'Pixelia', pixeliaDescription: 'Dibuja pixeles en un grid y colabor-ART con habitantes en tu red.', coordLabel: 'Coordenadas (e.g., A3)', @@ -79,7 +78,6 @@ module.exports = { invalidCoordinate: 'Coordenada incorrecta', goToMuralButton: "Ver Mural", totalPixels: 'Total Pixeles', - // modules modules: "Módulos", modulesViewTitle: "Módulos", modulesViewDescription: "Define tu entorno ideal activando y desactivando módulos.", @@ -112,7 +110,6 @@ module.exports = { opinionsTitle: "Opiniones", saveSettings: "Guardar configuración", apply: "Aplicar", - // menu categories menuPersonal: "Personal", menuContent: "Contenido", menuGovernance: "Gobernanza", @@ -123,13 +120,11 @@ module.exports = { menuEconomy: "Economía", menuMedia: "Multimedia", menuTools: "Herramientas", - // post actions comment: "Comentar", - subtopic: "Subtopic", + subtopic: "Subtema", json: "JSON", createdAt: "Creado el", createdBy: "por", - // relationships unfollow: "Dejar de soportar", follow: "Soportar", block: "Bloquear", @@ -152,11 +147,9 @@ module.exports = { relationshipNone: "No estás dando soporte", relationshipConflict: "Conflicto", relationshipBlockingPost: "Post bloqueado", - // spreads view viewLikes: "Ver replicas", spreadedDescription: "Lista de posts replicados por habitante.", totalspreads: "Replicas totales", - // composer attachFiles: "Adjuntar ficheros", preview: "Previsualizar", publish: "Publicar", @@ -191,12 +184,10 @@ module.exports = { ], publishCustom: "Escribir un post avanzado", subtopicLabel: "Crea un subtopic para éste post", - // mentions messagePreview: "Previsualización", mentionsMatching: "Menciones", mentionsName: "Nombre", mentionsRelationship: "Relación", - // settings updateit: "OBTENER ACTUALIZACIONES!", updateBannerText: "Hay una nueva versión de Oasis disponible.", updateBannerAction: "Actualizar ahora →", @@ -204,7 +195,7 @@ module.exports = { settingsIntro: ({ version }) => [ `[SNH] ꖒ OASIS [ v.${version} ]`, ], - timeAgo: "", + timeAgo: "hace", sendTime: "escrito ", theme: "Tema", legacy: "Llaves", @@ -217,7 +208,7 @@ module.exports = { saveSettings: "Guardar configuración", exportTitle: "Exportar datos", exportDescription: "Establece una contraseña (min 32 caracteres de longitud) para cifrar tu secreto", - exportDataTitle: "Backup", + exportDataTitle: "Copia de Seguridad", exportDataDescription: "Descargar tu blockchain (llave privada excluida!)", exportDataButton: "Descargar blockchain", pubWallet: "Cartera del PUB", @@ -241,8 +232,8 @@ module.exports = { status: "Estado", peerConnections: "Nodos", peerConnectionsIntro: "Maneja todas tus conexiones con otros nodos.", - online: "Online", - offline: "Offline", + online: "Conectado", + offline: "Desconectado", discovered: 'Descubiertos', unknown: 'Desconocidos', pub: 'PUB', @@ -266,7 +257,6 @@ module.exports = { homePageTitle: "Página de inicio", homePageDescription: "Selecciona qué módulo quieres como tu página de inicio.", saveHomePage: "Establecer página de inicio", - //invites invites: "Invitaciones", invitesTitle: "Invitaciones", invitesInvites: "Invitaciones", @@ -281,17 +271,15 @@ module.exports = { invitesNoInvites: "No hay invitaciones aceptadas, aún.", invitesUnfollow: 'Dejar de seguir', invitesFollow: 'Seguir', - invitesUnfollowedInvites: 'Redes No Federadas', + invitesUnfollowedInvites: 'Invitaciones no seguidas', invitesNoFederatedPubs: "No hay redes federadas.", - invitesNoUnfollowed: 'No hay redes no federadas.', + invitesNoUnfollowed: 'Sin invitaciones no seguidas.', invitesUnreachablePubs: "Redes Inalcanzables", invitesNoUnreachablePubs: "No hay redes inalcanzables.", - currentlyUnreachable: "ERROR!", + currentlyUnreachable: "¡ERROR!", errorDetails: "Detalles del error", genericError: "A ocurrido un error.", - //panic panicMode: "Modo Pánico!", - //cipher encryptData: "Establece una contraseña (min 32 caracteres de longitud) para cifrar tu blockchain", decryptData: "Introduce contraseña para descifrar tu blockchain", panicModeDescription: "Cifrar/Descifrar o BORRAR tu blockchain", @@ -299,7 +287,6 @@ module.exports = { encryptPanicButton: "Cifrar blockchain", decryptPanicButton: "Descifrar blockchain", removePanicButton: "BORRAR TODOS TUS DATOS!", - //search searchTitle: "Buscar", searchDescriptionLabel: "Buscar contenido en tu red.", searchLanguagesLabel: "Lenguajes", @@ -346,9 +333,7 @@ module.exports = { votesCreatedByLabel:"Creado el", voteStatusOpen:"ABIERTO", voteStatusClosed:"CERRADO", - //image search page imageSearchLabel: "Introduce palabras para buscar las imagenes que hayan sido etiquetadas con ellas.", - //posts and comments commentDescription: ({ parentUrl }) => [ " ha comentado en ", a({ href: parentUrl }, " hilo"), @@ -360,7 +345,6 @@ module.exports = { ], subtopicTitle: ({ authorName }) => [`Ha creado un subtopic en el post de @${authorName}`], mysteryDescription: "publicado un post misterioso", - // misc + search oasisDescription: "OASIS Red de Proyectos", searchSubmit: "Buscar...", hashtagDescription: "Posts etiquetados con éste hashtag.", @@ -373,14 +357,26 @@ module.exports = { videoLabel: "VIDEOS", audioLabel: "AUDIOS", documentLabel: "DOCUMENTOS", + torrentLabel: "TORRENTS", pdfFallbackLabel: "Documento PDF", eventLabel: "EVENTOS", taskLabel: "TAREAS", transferLabel: "TRANSFERENCIAS", - curriculumLabel: "CURRICULUM", + curriculumLabel: "CURRÍCULUM", bookmarkLabel: "ENLACES", tribeLabel: "TRIBUS", marketLabel: "MERCADO", + shopLabel: "SHOPS", + shopProductLabel: "SHOP PRODUCTS", + mapLabel: "MAPS", + jobLabel: "JOBS", + forumLabel: "FORUMS", + projectLabel: "PROJECTS", + bankWalletLabel: "CARTERAS", + bankClaimLabel: "UBI CLAIMS", + voteLabel: "VOTES", + contactLabel: "CONTACTS", + pubLabel: "PUBS", cvLabel: "CVs", submit: "Aplicar", subjectLabel: "Asunto", @@ -399,12 +395,12 @@ module.exports = { walletAddressLine: ({ address }) => `Dirección: ${address}`, walletAmountLine: ({ amount }) => `Cantidad: ${amount} ECO`, walletBack: "Volver", - walletBalanceTitle: "Balance", + walletBalanceTitle: "Saldo", walletWalletSendTitle: "Enviar", walletReceiveTitle: "Recibir", walletHistoryTitle: "Historial", walletBalanceLine: ({ balance }) => `${balance} ECO`, - walletCnfrs: "Cnfrs", + walletCnfrs: "Conf.", walletConfirm: "Confirmar", walletDescription: "Administra tus activos digitales, incluido el envío y la recepción de ECOin, la visualización del saldo y el acceso al historial de transacciones.", walletDate: "Fecha", @@ -436,12 +432,11 @@ module.exports = { walletTitle: "Cartera", walletTotalCostLine: ({ totalCost }) => `Coste total: ECO ${totalCost}`, walletTransactionId: "ID de transacción", - walletTxId: "Tx ID", + walletTxId: "ID Tx", walletType: "Tipo", walletUser: "Usuario", walletPass: "Contraseña", walletConfiguration: "Configurar cartera", - //cipher cipher: "Cifrador", cipherTitle: "Cifrador", cipherDescription: "Encripta y desencripta tu texto de forma simétrica (usando una contraseña compartida).", @@ -451,6 +446,7 @@ module.exports = { cipherTextLabel: "Texto para Encriptar", cipherTextPlaceholder: "Introduce el texto para encriptar...", cipherPasswordLabel: "Establece una contraseña (mínimo 32 caracteres) para encriptar tu texto", + cipherPasswordDecryptLabel: "Establece una contraseña (mínimo 32 caracteres) para desencriptar tu texto", cipherPasswordPlaceholder: "Introduce una contraseña...", cipherEncryptButton: "Encriptar", cipherDecryptTitle: "Desencriptar Texto", @@ -476,7 +472,6 @@ module.exports = { missingFieldsError: "Texto, contraseña o IV no proporcionados.", encryptionError: "Error al encriptar el texto.", decryptionError: "Error al desencriptar el texto.", - //bookmarking bookmarkTitle: "Marcadores", bookmarkDescription: "Descubre y gestiona marcadores en tu red.", bookmarkAllSectionTitle: "Marcadores", @@ -500,7 +495,7 @@ module.exports = { bookmarkUrlPlaceholder: "https://ejemplo.com", bookmarkDescriptionLabel: "Descripción", bookmarkDescriptionPlaceholder: "Opcional", - bookmarkTagsLabel: "Tags", + bookmarkTagsLabel: "Etiquetas", bookmarkTagsPlaceholder: "Introduce tags separadas por comas", bookmarkCategoryLabel: "Categoría", bookmarkCategoryPlaceholder: "Opcional", @@ -516,7 +511,6 @@ module.exports = { noUrl: "Sin enlace", noCategory: "Sin categoría", noLastVisit: "Sin última visita", - //videos videoTitle: "Vídeos", videoDescription: "Explora y gestiona contenido de vídeo en tu red.", videoPluginTitle: "Título", @@ -555,7 +549,6 @@ module.exports = { videoMessageAuthorButton: "MP", videoUpdatedAt: "Actualizado", videoNoMatch: "Ningún vídeo coincide con tu búsqueda.", - //documents documentTitle: "Documentos", documentDescription: "Descubre y gestiona documentos en tu red.", documentAllSectionTitle: "Documentos", @@ -592,7 +585,6 @@ module.exports = { documentSearchButton: "Buscar", documentNoMatch: "No hay documentos que coincidan con tu búsqueda.", documentUpdatedAt: "Actualizado", - //audios audioTitle: "Audios", audioDescription: "Explora y gestiona contenido de audio en tu red.", audioPluginTitle: "Título", @@ -631,7 +623,6 @@ module.exports = { audioNoMatch: "Ningún audio coincide con tu búsqueda.", audioFavoritesSectionTitle: "Favoritos", audioFilterFavorites: "FAVORITOS", - //favorites favoritesTitle: "Favoritos", favoritesDescription: "Todos tus elementos marcados como favoritos en un solo lugar.", favoritesFilterAll: "TODOS", @@ -640,10 +631,13 @@ module.exports = { favoritesFilterBookmarks: "MARCADORES", favoritesFilterDocuments: "DOCUMENTOS", favoritesFilterImages: "IMÁGENES", + favoritesFilterMaps: "MAPAS", + favoritesFilterPads: "PADS", + favoritesFilterChats: "CHATS", + favoritesFilterCalendars: "CALENDARIOS", favoritesFilterVideos: "VÍDEOS", favoritesRemoveButton: "Quitar de favoritos", favoritesNoItems: "Todavía no hay favoritos.", - //inhabitants yourContacts: "Tus Contactos", allInhabitants: "Habitantes", allCVs: "Todos los CVs", @@ -668,7 +662,7 @@ module.exports = { viewAvatar: "Ver Avatar", viewCV: "Ver CV", suggestedSectionTitle: "Sugeridos", - topkarmaSectionTitle: "Top Karma", + topkarmaSectionTitle: "Mejor Karma", topactivitySectionTitle: "Top Actividad", blockedSectionTitle: "Bloqueados", gallerySectionTitle: "GALERÍA", @@ -680,7 +674,7 @@ module.exports = { oasisId: "ID", noInhabitantsFound: "No se encontraron habitantes, aún.", inhabitantActivityLevel: "Nivel Actividad", - //parliament + deviceLabel: "Dispositivo", parliamentTitle: "Parlamento", parliamentDescription: "Explora formas de gobierno y políticas de gestión colectiva.", parliamentFilterGovernment: "GOBIERNO", @@ -821,7 +815,6 @@ module.exports = { parliamentProposalVoteStatusLabel: "Estado de la votación", parliamentProposalOnTrackYes: "Umbral alcanzado", parliamentProposalOnTrackNo: "Por debajo del umbral", - //courts courtsTitle: "Tribunales", courtsDescription: "Explora formas de resolución de conflictos y de gestión colectiva de la justicia.", courtsFilterCases: "CASOS", @@ -872,6 +865,7 @@ module.exports = { courtsNoNominations: "Todavía no hay nominaciones.", courtsAccuser: "Acusación", courtsRespondent: "Defensa", + courtsRespondentInvalid: "Debe ser un ID SSB válido (@...ed25519)", courtsThStatus: "Estado", courtsThAnswerBy: "Responder antes de", courtsThEvidenceBy: "Aportar pruebas antes de", @@ -936,7 +930,6 @@ module.exports = { courtsRoleDictator: "Dictador", courtsAssignJudgeTitle: "Elegir juez", courtsAssignJudgeBtn: "Elegir juez", - //trending trendingTitle: "Tendencias", exploreTrending: "Explora el contenido más popular en tu red.", ALLButton: "TODOS", @@ -955,6 +948,7 @@ module.exports = { audioButton: "AUDIOS", videoButton: "VIDEOS", documentButton: "DOCUMENTOS", + torrentButton: "TORRENTS", author: "Por", createdAtLabel: "Creado el", totalVotes: "Total de Votos", @@ -982,7 +976,6 @@ module.exports = { trendingAuthor: "Por", trendingCreatedAtLabel: "Creado el", trendingTotalCount: "Total de Contadores", - //tasks tasksTitle: "Tareas", tasksDescription: "Descubre y gestiona tareas en tu red.", taskTitleLabel: "Título", @@ -1038,7 +1031,6 @@ module.exports = { notasks: "No hay tareas disponibles.", noLocation: "No se especificó ubicación", taskSetStatus: "Establecer estado", - //events eventTitle: "Eventos", eventDateLabel: "Fecha", eventsTitle: "Eventos", @@ -1106,7 +1098,6 @@ module.exports = { eventUnattended: "No asisto", eventStatusOpen: "Abierto", eventStatusClosed: "Cerrado", - //tags tagsTitle: "Etiquetas", tagsDescription: "Descubre y explora patrones de taxonomía en tu red.", tagsAllSectionTitle: "Etiquetas", @@ -1118,13 +1109,13 @@ module.exports = { tagsNoItems: "No hay etiquetas disponibles.", tagsTableHeaderTag: "ETIQUETA/ENLACE:", tagsTableHeaderCount: "CONTADOR:", - //transfers transfersTitle: "Transferencias", transfersDescription: "Descubre y gestiona transferencias en tu red.", transfersFrom: "De", transfersTo: "A", transfersFilterAll: "TODOS", transfersFilterMine: "MÍAS", + transfersFilterUBI: "RBU", transfersFilterMarket: "MERCADO", transfersFilterTop: "TOP", transfersFilterPending: "PENDIENTES", @@ -1149,12 +1140,14 @@ module.exports = { transfersConfirmButton: "Confirmar Transferencia", transfersNoItems: "No se encontraron transferencias.", transfersMineSectionTitle: "Tus Transferencias", + transfersUBISectionTitle: "Transferencias RBU", transfersMarketSectionTitle: "Transferencias del Mercado", transfersTopSectionTitle: "Transferencias Principales", transfersPendingSectionTitle: "Transferencias Pendientes", transfersUnconfirmedSectionTitle: "Transferencias No Confirmadas", transfersClosedSectionTitle: "Transferencias Cerradas", transfersDiscardedSectionTitle: "Transferencias Descartadas", + transfersCreateSectionTitle: "Crear transferencia", transfersAllSectionTitle: "Transferencias", transfersFilterFavs: "Favoritos", transfersFavsSectionTitle: "Transferencias favoritas", @@ -1174,7 +1167,6 @@ module.exports = { transfersExpiredBadge: "CADUCADA", transfersUpdatedAt: "Actualizado", transfersNoMatch: "No hay transferencias que coincidan con tu búsqueda.", - //votations (voting/polls) votationsTitle: "Votaciones", votationsDescription: "Descubre y gestiona votaciones en tu red.", voteMineSectionTitle: "Tus Votaciones", @@ -1231,7 +1223,6 @@ module.exports = { voteNewCommentPlaceholder: 'Escribe aquí tu comentario…', voteNewCommentButton: 'Publicar comentario', voteNewCommentLabel: 'Añade un comentario', - //CV cvTitle: "CV", cvLabel: "Currículum Vitae (CV)", cvEditSectionTitle: "Editar CV", @@ -1270,13 +1261,11 @@ module.exports = { cvEditButton: "Actualizar", cvDeleteButton: "Eliminar", cvNoCV: "No se encontró ningún CV.", - // blog/post, blogSubject: "Asunto", blogMessage: "Mensaje", blogImage: "Subir contenido multimedia (max: 50MB)", blogPublish: "Vista previa", noPopularMessages: "No se han publicado mensajes populares, aún", - // forum forumTitle: "Foros", forumCategoryLabel: "Categoría", forumTitleLabel: "Título", @@ -1317,7 +1306,6 @@ module.exports = { forumCatPRIVACY: "Privacidad", forumCatCYBERWARFARE: "Ciberguerra", forumCatSURVIVALISM: "Supervivencia", - //images imageTitle: "Imágenes", imageDescription: "Explora y gestiona contenido de imágenes en tu red.", imagePluginTitle: "Título", @@ -1350,7 +1338,7 @@ module.exports = { imageTitlePlaceholder: "Opcional", imageDescriptionLabel: "Descripción", imageDescriptionPlaceholder: "Opcional", - imageMemeLabel: "Marcar como MEME", + imageMemeLabel: "¿MEME?", imageNoFile: "No se ha proporcionado ningún archivo de imagen", noImages: "No hay imágenes disponibles.", imageSearchPlaceholder: "Buscar por título, etiquetas, descripción, autor...", @@ -1361,8 +1349,11 @@ module.exports = { imageMessageAuthorButton: "Mensaje", imageUpdatedAt: "Actualizado", imageNoMatch: "Ninguna imagen coincide con tu búsqueda.", - //feed feedTitle: "Feed", + feedDetailTitle: "Feed", + feedOpenDiscussion: "Abrir discusión", + feedPostComment: "Publicar comentario", + noComments: "Aún no hay comentarios", createFeedTitle: "Crear Feed", createFeedButton: "Enviar Feed!", feedPlaceholder: "¿Qué está pasando? (máximo 280 caracteres)", @@ -1378,10 +1369,8 @@ module.exports = { author: "Por", createdAtLabel: "Creado el", FeedshareYourOpinions: "Descubre y comparte textos breves en tu red.", - //feed refeedButton: "Realimentar", alreadyRefeeded: "Ya has realimentado esto.", - //activity activityTitle: "Actividad", yourActivity: "Tu actividad", globalActivity: "Actividad global", @@ -1428,7 +1417,7 @@ module.exports = { typeFeed: "FEED", typeContact: "CONTACTO", typePub: "PUB", - typeTombstone: "TOMBSTONE", + typeTombstone: "ELIMINADO", typeBanking: "BANCA", typeBankWallet: "BANCA/MONEDERO", typeBankClaim: "BANCA/UBI", @@ -1555,7 +1544,6 @@ module.exports = { courtsPublicPrefSubmit: 'Guardar preferencia de visibilidad', courtsMethodMEDIATION: 'Mediación', courtsNoCases: 'No hay casos.', - //reports reportsTitle: "Informes", reportsDescription: "Gestiona y realiza un seguimiento de los informes relacionados con problemas, errores, abusos y advertencias de contenido en tu red.", reportsFilterAll: "TODOS", @@ -1651,7 +1639,7 @@ module.exports = { reportsEvidenceLinksPlaceholder: 'Pega enlaces, IDs de mensajes, capturas (si aplica), etc.', reportsContentLocationLabel: 'Dónde está el contenido', reportsContentLocationPlaceholder: 'Enlace, ID, canal, hilo, autor, etc.', - reportsWhyInappropriateLabel: 'Por qué es inapropiado', + reportsWhyInappropriateLabel: '¿Por qué es inapropiado?', reportsWhyInappropriatePlaceholder: 'Explica el motivo y el impacto.', reportsRequestedActionLabel: 'Acción solicitada', reportsRequestedActionPlaceholder: 'Eliminar, ocultar, marcar, advertir, etc.', @@ -1712,8 +1700,8 @@ module.exports = { tribeFeedFilterMINE: "MIOS", tribeFeedFilterALL: "TODOS", tribeFeedFilterTOP: "TOP", - tribeFeedRefeeds: "Refeeds", - tribeFeedRefeed: "Refeed", + tribeFeedRefeeds: "Redifusiones", + tribeFeedRefeed: "Redifundir", tribeFeedMessagePlaceholder: "Escribe un feed…", tribeFeedSend: "Enviar", tribeFeedEmpty: "No hay mensajes de feed disponibles, aún.", @@ -1723,21 +1711,31 @@ module.exports = { updateTribeTitle: "Actualizar Tribu", tribeSectionOverview: "Resumen", tribeSectionInhabitants: "Habitantes", - tribeSectionVotations: "Votaciones", - tribeSectionEvents: "Eventos", + tribeSectionVotations: "VOTACIONES", + tribeSectionEvents: "EVENTOS", tribeSectionReports: "Reportes", - tribeSectionTasks: "Tareas", - tribeSectionFeed: "Feed", - tribeSectionForum: "Foro", + tribeSectionTasks: "TAREAS", + tribeSectionFeed: "FEED", + tribeSectionForum: "FORO", tribeSectionMarket: "Mercado", tribeSectionJobs: "Empleos", tribeSectionProjects: "Proyectos", - tribeSectionMedia: "Media", + tribeSectionMedia: "Multimedia", tribeSectionImages: "IMÁGENES", tribeSectionAudios: "AUDIOS", tribeSectionVideos: "VÍDEOS", tribeSectionDocuments: "DOCUMENTOS", tribeSectionBookmarks: "MARCADORES", + tribeSectionMaps: "MAPS", + tribeSectionPads: "PADS", + tribeSectionChats: "CHATS", + tribeSectionCalendars: "CALENDARS", + tribePadCreate: "Create Pad", + tribeChatCreate: "Create Chat", + tribeCalendarCreate: "Create Calendar", + tribePadsEmpty: "No pads, yet.", + tribeChatsEmpty: "No chats, yet.", + tribeCalendarsEmpty: "No calendars, yet.", tribeInhabitantsEmpty: "No hay habitantes en esta tribu, aún.", tribeEventCreate: "Crear Evento", tribeEventsEmpty: "No hay eventos, aún.", @@ -1814,7 +1812,7 @@ module.exports = { tribeMediaDescription: "Descripción", tribeMediaType: "Tipo", tribeMediaTypeImage: "Imagen", - tribeMediaTypeVideo: "Video", + tribeMediaTypeVideo: "Vídeo", tribeMediaTypeAudio: "Audio", tribeMediaTypeDocument: "Documento", tribeMediaTypeBookmark: "Marcador", @@ -1824,7 +1822,7 @@ module.exports = { tribeGroupOffice: "Oficina", tribeGroupNetwork: "Red", tribeGroupEconomy: "Economía", - tribeGroupMedia: "Media", + tribeGroupMedia: "Multimedia", tribeStatusOpen: "ABIERTO", tribeStatusClosed: "CERRADO", tribeStatusInProgress: "EN PROGRESO", @@ -1875,7 +1873,7 @@ module.exports = { tribeTrendingEngagement: "interacción", tribeOpinionsEmpty: "Sin opiniones aún.", tribeOpinionsCast: "Votar", - tribeOpinionsRankings: "Rankings", + tribeOpinionsRankings: "Clasificaciones", tribeOpinionsAlreadyVoted: "Ya has votado", tribeTopCategory: "Más votado", tribePixeliaTitle: "Pixelia", @@ -1903,6 +1901,7 @@ module.exports = { agendaFilterTransfers: "TRANSFERENCIAS", agendaFilterJobs: "TRABAJOS", agendaFilterProjects: "PROYECTOS", + agendaFilterCalendars: "CALENDARIOS", agendaNoItems: "No se encontraron asignaciones.", agendaDiscardButton: "Descartar", agendaRestoreButton: "Restaurar", @@ -1941,7 +1940,6 @@ module.exports = { agendaTransferConcept: "Concepto", agendaTransferAmount: "Cantidad", agendaTransferDeadline: "Plazo", - //opinions opinionsTitle: "Opiniones", shareYourOpinions: "Descubre y vota por opiniones en tu red.", author: "Por", @@ -1982,7 +1980,7 @@ module.exports = { misleadingButton: "ENGAÑOSO", offTopicButton: "FUERA DE TEMA", duplicateButton: "DUPLICADO", - clickbaitButton: "CLICKBAIT", + clickbaitButton: "CEBO DE CLICS", spamButton: "SPAM", trollButton: "TROLL", nsfwButton: "NSFW", @@ -2007,7 +2005,7 @@ module.exports = { voteMisleading: "Engañoso", voteOffTopic: "Fuera de tema", voteDuplicate: "Duplicado", - voteClickbait: "Clickbait", + voteClickbait: "Cebo de clics", votePropaganda: "Propaganda", voteFunny: "Divertido", voteInspiring: "Inspirador", @@ -2029,7 +2027,6 @@ module.exports = { voteCreative: "Creativo", voteSpam: "Spam", voteAdultOnly: "Solo adultos", - //inbox publishBlog: "Publicar Blog", privateMessage: "MP", pmSendTitle: "Mensajes Privados", @@ -2062,9 +2059,9 @@ module.exports = { pmNoSubject: "(sin asunto)", pmSubjectLabel: "Asunto:", pmBodyLabel: "Cuerpo", - pmBotJobs: "42-JobsBOT", - pmBotProjects: "42-ProjectsBOT", - pmBotMarket: "42-MarketBOT", + pmBotJobs: "42-EmpleosBOT", + pmBotProjects: "42-ProyectosBOT", + pmBotMarket: "42-MercadoBOT", inboxJobSubscribedTitle: "Nueva suscripción a tu oferta de trabajo", pmInhabitantWithId: "Habitante con ID OASIS:", pmHasSubscribedToYourJobOffer: "se ha suscrito a tu oferta de trabajo", @@ -2077,9 +2074,8 @@ module.exports = { inboxProjectPledgedTitle: "Nueva aportación a tu proyecto", pmHasPledged: "ha aportado", pmToYourProject: "a tu proyecto", - //blockexplorer - blockchain: 'Explorador de Bloques', - blockchainTitle: 'Explorador de Bloques', + blockchain: 'Explorador', + blockchainTitle: 'Explorador', blockchainDescription: 'Explora y visualiza los bloques de la cadena.', blockchainNoBlocks: 'No se encontraron bloques en la cadena.', blockchainBlockID: 'ID del Bloque', @@ -2096,9 +2092,8 @@ module.exports = { blockchainBlockInfo: 'Información del Bloque', blockchainBlockDetails: 'Detalles del bloque seleccionado', blockchainBack: 'Volver al Blockexplorer', - blockchainContentDeleted: 'Este contenido ha sido eliminado.', + blockchainContentDeleted: 'Contenido eliminado', visitContent: 'Visitar contenido', - // banking banking: 'Banking', bankingTitle: 'Banking', bankingDescription: 'Explora el valor actual de ECOin y la asignación de RBU correspondiente, distribuida semanalmente en función de la participación y la confianza.', @@ -2110,7 +2105,14 @@ module.exports = { bankBack: 'Volver a Banking', bankViewTx: 'Ver Tx', bankClaimNow: 'Reclamar', - bankPubBalance: 'Saldo del PUB', + bankClaimUBI: '¡Reclamar RBU!', + bankClaimAndPay: 'Claim & Pay', + bankClaimedPending: 'Claim pending...', + bankStatusUnclaimed: 'Unclaimed', + bankStatusClaimed: 'Claimed', + bankStatusExpired: 'Expired', + bankPubOnly: 'PUB-only operation', + bankNoPendingUBI: 'No hay asignaciones RBU pendientes para esta época.', bankEpoch: 'Época', bankPool: 'Fondo (esta época)', bankWeightsSum: 'Suma de pesos', @@ -2158,20 +2160,106 @@ module.exports = { bankMyAddress: 'Tu dirección', bankRemoveMyAddress: 'Eliminar mi dirección', bankNotRemovableOasis: 'Las direcciones no se pueden eliminar localmente', - bankingFutureUBI: "Asignación Estimada de UBI", + bankingFutureUBI: "UBI", + pubIdTitle: "PUB Wallet", + pubIdDescription: "Set the PUB OASIS ID. This will be used for PUB transactions (including the UBI).", + pubIdLabel: "PUB ID", + pubIdSave: "Save configuration", + pubIdPlaceholder: "@PUB_ID.ed25519", + bankUbiAvailableNo: "SIN FONDOS!", + bankUbiAvailableOk: "¡DISPONIBLE!", + bankUbiAvailability: "Disponibilidad de UBI", + bankAlreadyClaimedThisMonth: "Ya reclamado este mes", + bankUbiThisMonth: "UBI (este mes)", + bankUbiLastClaimed: "UBI (última reclamada)", + bankUbiNeverClaimed: "Nunca reclamado", + bankUbiTotalClaimed: "UBI (total reclamado)", + bankUbiPub: "PUB", + bankUbiInhabitant: "HABITANTE", + bankUbiClaimedAmount: "RECLAMADO (ECO)", + typeBankUbiResult: "BANCARIO - UBI", + bankNoPubConfigured: "Sin PUB configurado. Establece tu ID de PUB en Ajustes.", + shopsTitle: "Tiendas", + shopDescription: "Descubre y gestiona tiendas en la red.", + shopTitle: "Tienda", + shopFilterAll: "TODAS", + shopFilterMine: "MÍAS", + shopFilterRecent: "RECIENTES", + shopFilterTop: "TOP", + shopFilterProducts: "PRODUCTOS", + shopFilterPrices: "PRECIOS", + shopFilterFavorites: "FAVORITAS", + shopUpload: "Crear Tienda", + shopAllSectionTitle: "Tiendas", + shopMineSectionTitle: "Mis Tiendas", + shopRecentSectionTitle: "Tiendas Recientes", + shopTopSectionTitle: "Tiendas Destacadas", + shopProductsSectionTitle: "Productos Destacados", + shopPricesSectionTitle: "Productos por Precio", + shopFavoritesSectionTitle: "Favoritas", + shopCreateSectionTitle: "Crear Tienda", + shopUpdateSectionTitle: "Actualizar Tienda", + shopCreate: "Crear", + shopUpdate: "Actualizar", + shopDelete: "Eliminar", + shopAddFavorite: "Añadir Favorito", + shopRemoveFavorite: "Quitar Favorito", + shopOpen: "ABIERTA", + shopClosed: "CERRADA", + shopOpenShop: "Abrir Tienda", + shopCloseShop: "Cerrar Tienda", + shopProducts: "Productos", + shopProductAdd: "Añadir Producto", + shopProductTitle: "Producto", + shopProductUpdate: "Actualizar Producto", + shopProductPrice: "Precio (ECO)", + shopProductStock: "Stock", + shopProductUntitled: "Producto sin título", + shopUntitled: "Tienda sin título", + shopNoItems: "No se encontraron tiendas.", + shopNoProducts: "Aún no hay productos.", + shopOutOfStock: "Agotado", + shopBuy: "Comprar", + shopBackToShop: "Volver a la Tienda", + shopShareUrl: "URL para compartir", + shopVisitShop: "VISITAR TIENDA", + shopStatus: "ESTADO", + shopCreatedAt: "CREADO", + shopSearchPlaceholder: "Buscar tiendas...", + shopUrl: "URL", + shopLocation: "Ubicación", + shopTags: "Etiquetas", + shopVisibility: "Visibilidad", + shopImage: "Imagen", + shopShortDescription: "Descripcion Corta", + shopShortDescriptionPlaceholder: "Descripcion breve para las tarjetas (max 160 caracteres)", + shopTitlePlaceholder: "Nombre de tu tienda", + shopDescriptionPlaceholder: "Descripcion detallada de tu tienda", + shopUrlPlaceholder: "https://url-de-tu-tienda.com", + shopLocationPlaceholder: "Ciudad, Pais", + shopTagsPlaceholder: "etiqueta1, etiqueta2, etiqueta3", + mapTitlePlaceholder: "Titulo del mapa", + shopProductFeatured: "Producto Destacado", + shopSendToMarket: "Send to Market", + typeShop: "TIENDA", + typeShopProduct: "PRODUCTO DE TIENDA", bankExchange: 'Intercambio', bankExchangeCurrentValue: 'Valor de ECOin (1h)', bankTotalSupply: 'Suministro Total de ECOin', - bankEcoinHours: 'Equivalencia de ECOin en Tiempo', + bankEcoinHours: 'Horas ECOin', bankHoursOfWork: 'horas', + bankUnitMs: "ms", + bankUnitSeconds: "segundos", + bankUnitMinutes: "minutos", + bankUnitDays: "días", bankExchangeNoData: 'No hay datos disponibles', bankExchangeIndex: 'Valor de ECOin (1h)', - bankInflation: 'Inflación de ECOin', + bankInflation: 'Inflación de ECOin (anual)', + bankInflationMonthly: 'Inflación de ECOin (mensual)', bankCurrentSupply: 'Suministro Actual de ECOin', bankingSyncStatus: 'Estado de ECOin', bankingSyncStatusSynced: 'Sincronizado', bankingSyncStatusOutdated: 'Desactualizado', - //stats statsTitle: 'Estadísticas', statistics: "Estadísticas", statsInhabitant: "Estadísticas del Habitante", @@ -2221,6 +2309,9 @@ module.exports = { statsAudio: "Audios", statsVideo: "Vídeos", statsDocument: "Documentos", + statsMap: "Mapas", + statsShop: "Tiendas", + statsShopProduct: "Productos de tienda", statsTransfer: "Transferencias", statsAiExchange: "IA", statsPUBs: 'PUBs', @@ -2288,7 +2379,6 @@ module.exports = { statsCourtsSettlementAccepted: "Acuerdos aceptados", statsCourtsNomination: "Nominaciones de jueces", statsCourtsNominationVote: "Votos de nominación", - //AI ai: "IA", aiTitle: "IA", aiDescription: "Una Inteligencia Artificial Colectiva (IAC) llamada '42' que aprende de tu red.", @@ -2297,9 +2387,9 @@ module.exports = { aiResponseTitle: "Respuesta", aiSubmitButton: "Enviar!", aiSettingsDescription: "Configura tu prompt (máx 128 caracteres) para el modelo de IA.", - aiPrompt: "Provide an informative and precise response.", + aiPrompt: "Proporciona una respuesta informativa y precisa.", aiConfiguration: "Configurar prompt", - aiPromptUsed: "Prompt", + aiPromptUsed: "Indicación", aiClearHistory: "Borrar historial de chat", aiSharePrompt: "Añadir esta respuesta al entrenamiento colectivo?", aiShareYes: "Sí", @@ -2307,7 +2397,7 @@ module.exports = { aiSharedLabel: "Añadida al entrenamiento", aiRejectedLabel: "No añadida al entrenamiento", aiServerError: "La IA no ha podido responder. Inténtalo de nuevo.", - aiInputPlaceholder: "What is Oasis?", + aiInputPlaceholder: "¿Qué es Oasis?", typeAiExchange: "IA", aiApproveTrain: "Añadir al entrenamiento colectivo", aiRejectTrain: "No entrenar", @@ -2320,7 +2410,6 @@ module.exports = { aiApproveCustomTrain: "Entrenar con esta respuesta personalizada", aiCustomAnswerPlaceholder: "Escribe tu respuesta personalizada…", statsAIExchanges: "Intercambio de Modelos", - //market marketMineSectionTitle: "Tus artículos", marketCreateSectionTitle: "Crear artículo", marketUpdateSectionTitle: "Actualizar", @@ -2347,6 +2436,7 @@ module.exports = { marketItemDescription: "Descripción", marketItemDescriptionPlaceholder: "Describe el artículo que estás vendiendo", marketItemStatus: "Estado", + marketShopLabel: "Tienda", marketItemCondition: "Condición", marketItemPrice: "Precio", marketItemTags: "Etiquetas", @@ -2355,7 +2445,7 @@ module.exports = { marketItemIncludesShipping: "¿Incluye envío?", marketItemHighestBid: "Puja más alta", marketItemHighestBidder: "Mejor postor", - marketItemStock: "Stock", + marketItemStock: "Existencias", marketOutOfStock: "Sin stock", marketItemBidTime: "Fecha de la puja", marketActionsUpdate: "Actualizar", @@ -2383,8 +2473,7 @@ module.exports = { marketAuctionEnded: "Terminó", marketMyBidBadge: "Has pujado", marketNoItemsMatch: "No hay artículos que coincidan con tu búsqueda.", - //jobs - jobsTitle: "Ofertas de trabajo", + jobsTitle: "Laboral", jobsDescription: "Descubre y gestiona ofertas de trabajo en tu red.", jobsFilterRecent: "RECIENTES", jobsFilterMine: "MIOS", @@ -2471,10 +2560,9 @@ module.exports = { jobsUpdatedAt: "Actualizado", jobSetOpen: "Marcar abierto", jobNewBadge: "NUEVO", - jobsTagsLabel: "Tags", - jobsTagsPlaceholder: "tag1, tag2, tag3", + jobsTagsLabel: "Etiquetas", + jobsTagsPlaceholder: "etiqueta1, etiqueta2, etiqueta3", noJobsMatch: "No hay ofertas que coincidan con tu búsqueda.", - //projects projectsTitle: "Proyectos", projectsDescription: "Crea, financia y sigue proyectos impulsados por la comunidad en tu red.", projectCreateProject: "Crear Proyecto", @@ -2580,11 +2668,9 @@ module.exports = { projectPledgeAmount: "Cantidad", projectSelectMilestoneOrBounty: "Seleccionar Hito o Recompensa", projectPledgeButton: "Aportar", - //footer footerLicense: "GPLv3", footerPackage: "Paquete", footerVersion: "Versión", - //modules modulesModuleName: "Nombre", modulesModuleDescription: "Descripción", modulesModuleStatus: "Estado", @@ -2631,6 +2717,8 @@ module.exports = { modulesTasksDescription: "Módulo para descubrir y gestionar tareas.", modulesMarketLabel: "Mercado", modulesMarketDescription: "Módulo para intercambiar bienes o servicios.", + modulesShopsLabel: "Tiendas", + modulesShopsDescription: "Módulo para gestionar y descubrir tiendas.", modulesTribesLabel: "Tribus", modulesTribesDescription: "Módulo para explorar o crear tribus (grupos).", modulesVotationsLabel: "Votaciones", @@ -2668,7 +2756,7 @@ module.exports = { goBack: "Volver", directConnect: "Conexión Directa", directConnectDescription: "Conéctate directamente a un nodo introduciendo su dirección IP, puerto y clave pública. El nodo se añadirá como conexión seguida.", - peerHost: "IP / Hostname", + peerHost: "IP / Nombre de host", peerPort: "Puerto (por defecto: 8008)", peerPublicKey: "Clave Pública (@...ed25519)", connectAndFollow: "Conectar", @@ -2685,8 +2773,432 @@ module.exports = { statsCarbonTombstone: "Huella del tombstoning", feedSuccessMsg: "¡Feed publicado correctamente!", dominantOpinionLabel: "Opinión predominante", - uploadMedia: "Subir contenido multimedia (max: 50MB)" + uploadMedia: "Subir contenido multimedia (max: 50MB)", + invitesUnfollow: "Dejar de seguir", + invitesFollow: "Seguir", + invitesUnfollowedInvites: "Redes no federadas", + invitesNoUnfollowed: "Sin redes no federadas.", + reportsWhyInappropriateLabel: "¿Por qué es inapropiado?", + blockchainContentDeleted: "Este contenido ha sido eliminado", + visitContent: "Visitar contenido", + bankEcoinHours: "Equivalencia ECOin en tiempo", + mapsLabel: "Mapas", + mapTitle: "Mapas", + mapDescription: "Explora y gestiona mapas offline en tu red.", + mapMineSectionTitle: "Tus Mapas", + mapCreateSectionTitle: "Crear Mapa", + mapUpdateSectionTitle: "Actualizar Mapa", + mapAllSectionTitle: "Mapas", + mapRecentSectionTitle: "Mapas Recientes", + mapFavoritesSectionTitle: "Favoritos", + mapFilterAll: "TODOS", + mapFilterMine: "MÍOS", + mapFilterRecent: "RECIENTES", + mapFilterFavorites: "FAVORITOS", + mapUploadButton: "Crear Mapa", + mapCreateButton: "Crear Mapa", + mapUpdateButton: "Actualizar", + mapDeleteButton: "Eliminar", + mapAddFavoriteButton: "Añadir favorito", + mapRemoveFavoriteButton: "Quitar favorito", + mapLatLabel: "Latitud", + mapLatPlaceholder: "ej. 40.4168", + mapLngLabel: "Longitud", + mapLngPlaceholder: "ej. -3.7038", + mapDescriptionLabel: "Descripción", + mapDescriptionPlaceholder: "Describe el mapa o ubicación...", + mapTypeLabel: "Tipo de mapa", + mapTypeSingle: "ÚNICO (solo ubicación inicial)", + mapTypeOpen: "ABIERTO (cualquiera añade marcadores)", + mapTypeClosed: "CERRADO (solo el creador añade marcadores)", + mapTagsLabel: "Etiquetas", + mapTagsPlaceholder: "Introduce etiquetas separadas por comas", + mapUrlLabel: "URL del mapa", + mapPickCoordLabel: "O selecciona una ubicación en la cuadrícula:", + mapMarkersLabel: "marcadores", + mapMarkersTitle: "Marcadores", + mapMarkerDefault: "Marcador", + mapMarkerLatLabel: "Latitud del marcador", + mapMarkerLngLabel: "Longitud del marcador", + mapMarkerLabelField: "Etiqueta del marcador", + mapMarkerLabelPlaceholder: "Describe este marcador...", + markerImageLabel: "Imagen del Marker", + mapAddMarkerTitle: "Añadir Marcador", + mapAddMarkerButton: "Añadir Marcador", + mapCleanMarkerButton: "Clean Marker", + mapApplyZoom: "Aplicar Zoom", + mapSearchPlaceholder: "Buscar descripción, etiquetas, autor...", + mapSearchButton: "Buscar", + mapClickToCreate: "Haz click en el mapa para seleccionar ubicación", + mapClickToAddMarker: "Haz click en el mapa para añadir un marcador", + mapUpdatedAt: "Actualizado", + mapNoMatch: "Ningún mapa coincide con tu búsqueda.", + noMaps: "No hay mapas disponibles.", + mapLocationTitle: "Ubicación", + mapVisitLabel: "Visitar mapa", + typeMap: "MAPAS", + typeMapMarker: "MARCADOR DE MAPA", + modulesMapLabel: "Mapas", + modulesMapDescription: "Módulo para gestionar y compartir mapas offline.", + padsTitle: "Pads", + padTitle: "Pad", + modulesPadsLabel: "Pads", + modulesPadsDescription: "Módulo para gestionar editores de texto colaborativos.", + padFilterAll: "TODOS", + padFilterMine: "MÍO", + padFilterRecent: "RECIENTE", + padFilterOpen: "ABIERTO", + padFilterClosed: "CERRADO", + padCreate: "Crear Pad", + padUpdate: "Actualizar Pad", + padDelete: "Eliminar Pad", + padTitleLabel: "Título", + padTitlePlaceholder: "Escribe el título del pad...", + padStatusLabel: "Estado", + padStatusOpen: "ABIERTO", + padStatusInviteOnly: "SOLO INVITADOS", + padStatusClosed: "CERRADO", + padDeadlineLabel: "Fecha límite", + padTagsLabel: "Etiquetas", + padTagsPlaceholder: "etiqueta1, etiqueta2, ...", + padMembersLabel: "Miembros", + padVisitPad: "Visitar Pad", + padShareUrl: "Compartir URL", + padCreated: "Creado", + padAuthor: "Autor", + padGenerateCode: "Generar Código", + padInviteCodeLabel: "Código de Invitación", + padInviteCodePlaceholder: "Introduce el código de invitación...", + padValidateInvite: "Validar", + padStartEditing: "¡EMPEZAR A EDITAR!", + padEditorPlaceholder: "Empieza a escribir...", + padSubmitEntry: "Enviar", + padNoEntries: "Sin entradas aún.", + padAllSectionTitle: "Todos los Pads", + padMineSectionTitle: "Mis Pads", + padRecentSectionTitle: "Pads Recientes", + padOpenSectionTitle: "Pads Abiertos", + padClosedSectionTitle: "Pads Cerrados", + padCreateSectionTitle: "Crear Nuevo Pad", + padUpdateSectionTitle: "Actualizar Pad", + padInviteGenerated: "Código de Invitación Generado", + typePad: "PAD", + padNew: "NUEVO", + padAddFavorite: "Añadir a Favoritos", + padRemoveFavorite: "Quitar de Favoritos", + padClose: "Cerrar Pad", + padBackToEditor: "Volver al editor", + padSearchPlaceholder: "Buscar pads...", + + calendarsTitle: "Calendarios", + calendarTitle: "Calendario", + modulesCalendarsLabel: "Calendarios", + modulesCalendarsDescription: "Módulo para descubrir y gestionar calendarios.", + typeCalendar: "CALENDARIO", + calendarFilterAll: "TODOS", + calendarFilterMine: "MÍOs", + calendarFilterOpen: "ABIERTOS", + calendarFilterClosed: "CERRADOS", + calendarFilterRecent: "RECIENTES", + calendarFilterFavorites: "FAVORITOS", + calendarCreate: "Crear Calendario", + calendarUpdate: "Actualizar", + calendarDelete: "Eliminar", + calendarTitleLabel: "Título", + calendarTitlePlaceholder: "Título del calendario...", + calendarStatusLabel: "Estado", + calendarStatusOpen: "ABIERTO", + calendarStatusClosed: "CERRADO", + calendarDeadlineLabel: "Deadline", + calendarTagsLabel: "Etiquetas", + calendarTagsPlaceholder: "etiqueta1, etiqueta2...", + calendarParticipantsLabel: "Participantes", + calendarParticipantsCount: "Participantes", + calendarVisitCalendar: "Ver Calendario", + calendarCreated: "Creado", + calendarAuthor: "Autor", + calendarJoin: "Unirse al Calendario", + calendarJoined: "Unido", + calendarAddDate: "Añadir Fecha", + calendarAddNote: "Añadir Nota", + calendarDateLabel: "Fecha", + calendarDatePlaceholder: "Describe esta fecha...", + calendarNoteLabel: "Nota", + calendarNotePlaceholder: "Añadir una nota...", + calendarFirstDateLabel: "Fecha", + calendarFirstNoteLabel: "Notas", + calendarIntervalLabel: "Interval", + calendarIntervalWeekly: "Weekly", + calendarIntervalMonthly: "Monthly", + calendarIntervalYearly: "Yearly", + calendarFormDescription: "Descripción", + calendarNoDates: "No hay fechas añadidas.", + calendarNoNotes: "Sin notas.", + calendarsNoItems: "No se encontraron calendarios.", + calendarsDescription: "Descubre y gestiona calendarios en tu red.", + calendarMonthPrev: "\u2190 Anterior", + calendarMonthNext: "Siguiente \u2192", + calendarMonthLabel: "Fechas", + calendarsShareUrl: "URL para compartir", + calendarAllSectionTitle: "Calendarios", + calendarRecentSectionTitle: "Calendarios Recientes", + calendarFavoritesSectionTitle: "Favoritos", + calendarMineSectionTitle: "Tus Calendarios", + calendarOpenSectionTitle: "Calendarios Abiertos", + calendarClosedSectionTitle: "Calendarios Cerrados", + calendarCreateSectionTitle: "Crear Nuevo Calendario", + calendarUpdateSectionTitle: "Actualizar Calendario", + calendarAddFavorite: "Añadir a Favoritos", + calendarDeleteNote: "Delete", + calendarRemoveFavorite: "Quitar de Favoritos", + calendarSearchPlaceholder: "Buscar calendarios...", + calendarAddEntry: "Añadir Entrada", + calendarLeave: "Salir del Calendario", + statsCalendar: "Calendarios", + statsCalendarDate: "Fechas de Calendario", + statsCalendarNote: "Notas de Calendario", + + modulesChatsLabel: "Chats", + modulesChatsDescription: "Módulo para descubrir y gestionar chats cifrados.", + typeChat: "CHAT", + typeChatMessage: "MENSAJE DE CHAT", + chatLabel: "CHATS", + chatMessageLabel: "MENSAJES DE CHAT", + chatsTitle: "Chats", + chatMineSectionTitle: "Your Chats", + chatRecentTitle: "Recent Chats", + chatFavoritesTitle: "Favoritos", + chatOpenTitle: "Open Chats", + chatClosedTitle: "Closed Chats", + chatDescription: "Descripción", + chatCategory: "Categoría", + chatStatus: "ESTADO", + chatFilterAll: "TODOS", + chatFilterMine: "MÍO", + chatFilterRecent: "RECIENTE", + chatFilterFavorites: "FAVORITOS", + chatFilterOpen: "ABIERTO", + chatFilterClosed: "CERRADO", + chatCreate: "Crear Chat", + chatUpdate: "Actualizar Chat", + chatDelete: "Eliminar Chat", + chatClose: "Cerrar Chat", + chatVisitChat: "VER CHAT", + chatUntitled: "Chat sin título", + chatNoItems: "No se encontraron chats.", + chatParticipants: "Participantes", + chatStartChatting: "¡EMPEZAR A CHATEAR!", + chatGenerateCode: "Generar Código", + chatShareUrl: "Compartir URL", + chatCreatedAt: "CREADO", + chatSearchPlaceholder: "Buscar chats...", + chatStatusOpen: "ABIERTO", + chatStatusInviteOnly: "SOLO INVITADOS", + chatStatusClosed: "CERRADO", + chatSendMessage: "Enviar", + chatMessagePlaceholder: "Escribe tu mensaje...", + chatNoMessages: "Sin mensajes aún.", + chatLeave: "Salir del Chat", + chatInviteCodeLabel: "Introduce el código de invitación", + chatJoinByInvite: "Unirse", + chatTitlePlaceholder: "Título del chat", + chatDescriptionPlaceholder: "Descripción del chat", + chatTagsPlaceholder: "etiqueta1, etiqueta2", + chatImageLabel: "Selecciona un archivo de imagen (.jpeg, .jpg, .png, .gif)", + chatInviteCode: "Código de Invitación", + chatAuthor: "Autor", + chatCreated: "Creado", + chatAddFavorite: "Añadir a Favoritos", + chatRemoveFavorite: "Quitar de Favoritos", + chatPM: "MP", + chatStatusLabel: "Estado", + chatCategoryLabel: "Categoría", + chatParticipantsLabel: "Participantes", + gamesTitle: "Juegos", + gamesDescription: "Descubre y juega algunos juegos.", + gamesFilterAll: "TODOS", + gamesPlayButton: "¡JUGAR!", + gamesBackToGames: "Volver a Juegos", + modulesGamesLabel: "Juegos", + modulesGamesDescription: "Módulo para descubrir y jugar algunos juegos.", + gamesCocolandTitle: "Cocoland", + gamesCocolandDesc: "Un coco con ojos saltando palmeras y coleccionando ECOins. ¿Hasta dónde puedes llegar?", + gamesTheFlowTitle: "ECOinflow", + gamesTheFlowDesc: "Conecta PUBs a habitantes mediante validadores, tiendas y acumuladores. ¡Sobrevive a la amenaza CBDC!", + gamesNeonInfiltratorTitle: "Neon Infiltrator", + gamesNeonInfiltratorDesc: "Infiltra la cuadricula, recolecta datos confidenciales, evade los drones de seguridad y escapa. ¿Cuantos niveles puedes superar?", + gamesSpaceInvadersTitle: "Space Invaders", + gamesSpaceInvadersDesc: "¡Detén la invasión alienígena! Destruye oleadas de invasores antes de que lleguen al suelo.", + gamesArkanoidTitle: "Arkanoid", + gamesArkanoidDesc: "Rompe todos los ladrillos con tu paleta y pelota. Un clásico desafío arcade.", + gamesPingPongTitle: "PingPong", + gamesPingPongDesc: "Ping-pong clásico contra una IA. El primero en llegar a 5 puntos gana.", + gamesOutrunTitle: "Outrun", + gamesOutrunDesc: "¡Corre contra el tiempo! Esquiva el tráfico y llega a la meta antes de que se acabe el tiempo.", + gamesAsteroidsTitle: "Asteroids", + gamesAsteroidsDesc: "Pilota tu nave por un campo de asteroides mortal. Dispárales antes de que te alcancen.", + gamesRockPaperScissorsTitle: "Piedra Papel Tijeras", + gamesRockPaperScissorsDesc: "Piedra, papel o tijera contra una IA. Gana el mejor de tres rondas.", + gamesTikTakToeTitle: "TikTakToe", + gamesTikTakToeDesc: "Tres en raya clásico contra la IA. Consigue tres en línea para ganar.", + gamesFlipFlopTitle: "FlipFlop", + gamesFlipFlopDesc: "Lanza una moneda y apuesta cara o cruz. ¿Cuánta suerte tienes?", + games8BallTitle: "8Ball Pool", + games8BallDesc: "Top-down pool. Click to aim, hold to charge power. Pot all balls in the fewest shots.", + gamesArtilleryTitle: "Artillery", + gamesArtilleryDesc: "Aim your cannon, factor in the wind, and hit the target. 5 rounds, fewest shots wins.", + gamesLabyrinthTitle: "Labyrinth", + gamesLabyrinthDesc: "Escape the maze before your moves run out. Each level gets bigger and harder.", + gamesCocomanTitle: "Cocoman", + gamesCocomanDesc: "Eat all the dots, avoid the ghosts. Turn-based Pac-Man — every key press counts.", + gamesTetrisTitle: "Tetris", + gamesAudioPendulumTitle: "Audio Pendulum", + gamesAudioPendulumDesc: "Chaotic physics simulator with real-time audio synthesis. Angular velocities become frequencies, peaks become drum hits. No two simulations sound alike.", + gamesTetrisDesc: "Classic falling blocks. Clear lines to score. How long can you last?", + gamesQuakeTitle: "Quake Arena", + gamesQuakeDesc: "First-person raycasting arena. Move and shoot your way through waves of enemies.", + gamesFilterScoring: "SCORING", + gamesHallOfFame: "Hall of Fame", + gamesHallPlayer: "Player", + gamesHallScore: "Score", + gamesNoScores: "No scores yet.", + chatAccessDenied: "No tienes acceso a este chat. Solicita una invitación para acceder al contenido.", + padAccessDenied: "No tienes acceso a este pad. Solicita una invitación para acceder al contenido.", + contentAccessDenied: "No tienes acceso a este contenido.", + blockAccessRestricted: "Acceso restringido", + tribeContentAccessDenied: "Acceso Denegado", + tribeContentAccessDeniedMsg: "Este contenido pertenece a una tribu. Debes ser miembro para acceder.", + tribeViewTribes: "Ver Tribus", + torrentsTitle: "Torrents", + torrentsDescription: "Explora y gestiona torrents en tu red.", + torrentAllSectionTitle: "Torrents", + torrentMineSectionTitle: "Tus Torrents", + torrentRecentSectionTitle: "Torrents Recientes", + torrentTopSectionTitle: "Torrents Destacados", + torrentFavoritesSectionTitle: "Favoritos", + torrentFilterAll: "TODOS", + torrentFilterMine: "MÍOS", + torrentFilterRecent: "RECIENTES", + torrentFilterTop: "DESTACADOS", + torrentFilterFavorites: "FAVORITOS", + torrentCreateSectionTitle: "Subir Torrent", + torrentUpdateSectionTitle: "Actualizar Torrent", + torrentCreateButton: "Subir Torrent", + torrentUpdateButton: "Actualizar", + torrentDeleteButton: "Eliminar", + torrentAddFavoriteButton: "Añadir Favorito", + torrentRemoveFavoriteButton: "Quitar Favorito", + torrentFileLabel: "Seleccionar archivo torrent (.torrent)", + torrentTitleLabel: "Título", + torrentTitlePlaceholder: "Título", + torrentDescriptionLabel: "Descripción", + torrentDescriptionPlaceholder: "Descripción", + torrentTagsLabel: "Etiquetas", + torrentTagsPlaceholder: "Introduce etiquetas separadas por comas", + torrentSizeLabel: "Tamaño", + torrentDownloadButton: "DOWNLOAD IT!", + torrentNoFile: "Sin archivo torrent", + noTorrents: "No se encontraron torrents.", + torrentSearchPlaceholder: "Buscar título, etiquetas, autor...", + torrentSearchButton: "Buscar", + torrentSortRecent: "Más recientes", + torrentSortOldest: "Más antiguos", + torrentSortTop: "Más votados", + torrentNoMatch: "No se encontraron torrents coincidentes.", + torrentMessageAuthorButton: "Enviar Mensaje al Autor", + torrentUpdatedAt: "Actualizado", + statsTorrent: "Torrents", + typeTorrent: "TORRENTS", + modulesTorrentsLabel: "Torrents", + modulesTorrentsDescription: "Módulo para descubrir y gestionar torrents.", + favoritesFilterTorrents: "TORRENTS", + tribeSectionTorrents: "TORRENTS", + tribeCreateTorrent: "Subir Torrent", + tribeMediaTypeTorrent: "Torrent", + settingsWishTitle: "Deseo", + settingsWishDesc: "Configura el deseo de tu Avatar. Determina cómo accedes a todo el contenido y tu experiencia en la red Oasis.", + settingsWishWhole: "Multiverse", + settingsWishMutuals: "Only mutual-support", + settingsPmVisibilityTitle: "Mensajes Privados", + settingsPmVisibilityDesc: "Configura el nivel de exposición a mensajes privados que deseas tener en la red.", + settingsPmVisibilityWhole: "Multiverse", + settingsPmVisibilityMutuals: "Only mutual-support", + pmMutualNotice: "El envío es una barrera de UX. La recepción es un filtro de atención (el cifrado ya está replicado).", + pmBlockedNonMutual: "Solo puedes enviar mensajes privados a habitantes con apoyo mutuo.", + inhabitantsPendingFollowsTitle: "Solicitudes de apoyo pendientes", + inhabitantsPendingAccept: "Aceptar", + inhabitantsPendingReject: "Rechazar", + bxEncrypted: "CIFRADO", + bxEncryptedHexLabel: "Texto cifrado (vista previa)", + tribeSectionGovernance: "GOBIERNO", + tribeSubStatusPublic: "PÚBLICA", + tribeSubStatusPrivate: "PRIVADA", + tribeSubInheritedPrivate: "PRIVADA (heredada de la tribu principal)", + tribePadInviteRequired: "No tienes acceso al pad. Pide una invitación para acceder al contenido.", + tribeChatInviteRequired: "No tienes acceso al chat. Pide una invitación para acceder al contenido.", + tribeGovernanceDesc: "Gobierno interno de esta tribu.", + tribeGovernanceNoGov: "Sin gobierno activo", + tribeGovernanceNoGovDesc: "Esta tribu aún no tiene gobierno. Propón candidaturas para iniciar el proceso.", + tribeGovernanceAlreadyPublished: "Esta tribu ya tiene una candidatura abierta en el ciclo actual del parlamento global.", + tribeGovernanceProposeInternal: "Proponer candidatura interna", + tribeGovernanceInternalCandidatures: "Candidaturas internas", + tribeGovernanceNoCandidatures: "Sin candidaturas abiertas.", + tribeGovernanceAddRule: "Añadir regla", + tribeGovernanceNoRules: "Sin reglas todavía.", + tribeGovernanceNoLeaders: "Sin líderes elegidos todavía.", + tribeGovernanceComingSoon: "Próximamente en el módulo de gobierno de esta tribu.", + logsTitle: "Bitácora", + logsDescription: "Registra tu experiencia en la red.", + logsReadMore: "Leer más", + logsViewTitle: "Bitácora", + logsColumnType: "Tipo", + logsView: "Ver", + logsManualPrompt: "Escribe tu bitácora", + logsUpdateButton: "Actualizar", + logsEditTitle: "Editar entrada", + logsCreateDescription: "Registra tu experiencia...", + logsCreateTitle: "Crear entrada", + logsWriteButton: "Escribir", + logsTextPlaceholder: "Describe tus experiencias...", + logsTextField: "Texto", + logsLabelPlaceholder: "Etiqueta...", + logsLabelField: "Escribe tu bitácora (etiqueta)", + logsAiDisabledWarn: "Activa el módulo de IA en /modules para usar entradas escritas por IA.", + logsAiContextValue: "Día de blockchain", + logsAiContext: "Contexto", + logsAiModStatus: "AImod", + logsModeApply: "¡Aplicar!", + logsModeAIWritten: "AI-Assistant", + logsModeManual: "Manual", + logsModeAI: "IA", + logsColumnDelete: "Eliminar", + logsColumnEdit: "Editar", + logsColumnLog: "Bitácora", + logsColumnDate: "Fecha", + logsDelete: "Eliminar", + logsEdit: "Editar", + logsFilterAlways: "SIEMPRE", + logsFilterYear: "ÚLTIMO AÑO", + logsFilterMonth: "ÚLTIMO MES", + logsFilterWeek: "ÚLTIMA SEMANA", + logsFilterToday: "HOY", + logsFilterRecent: "RECIENTES", + logsFilterAll: "TODOS", + logsCreate: "Crear entrada", + logsExport: "Exportar bitácora", + logsExportOne: "Exportar", + logsViewDetails: "Ver detalles", + logsGenerateButton: "Generar texto", + logsSearchText: "Buscar en bitácoras...", + logsSearchAnyType: "Cualquier tipo", + logsSearchButton: "Buscar", + logsEmpty: "Aún no hay entradas.", + modulesLogsLabel: "Bitácora", + modulesLogsDescription: "Módulo para registrar (vía asistente de IA) tus experiencias.", + statsLogsTitle: "Bitácora", + statsLogsEntries: "Entradas", + typeLog: "BITÁCORA", + blockchainCycle: "Ciclo", - //END } }; diff --git a/nodejs-project/nodejs-project/src/client/assets/translations/oasis_eu.js b/nodejs-project/nodejs-project/src/client/assets/translations/oasis_eu.js index fa22eff8..70db4857 100644 --- a/nodejs-project/nodejs-project/src/client/assets/translations/oasis_eu.js +++ b/nodejs-project/nodejs-project/src/client/assets/translations/oasis_eu.js @@ -2,7 +2,7 @@ const { a, em, strong } = require('../../../server/node_modules/hyperaxe'); module.exports = { eu: { languageName: "Basque", - extended: "Multiverse", + extended: "Multibertsoa", extendedDescription: [ "Norbait laguntzen duzunean, laguntzen dituzun erabiltzaileen bidalketak deskargatu ditzakezu. Mezu horiek hemen azalduko dira, dataren arabera antolatuta.", ], @@ -31,7 +31,7 @@ module.exports = { "Zure ", strong("gai eta iruzkin batzuk"), " eta laguntzen dituzun bizilagunenak, gaurkotasunaren arabera antolatuta. Hautatu edozein bidalketaren ordu-marka hari osoa ikusteko.", ], - threads: "Threads", + threads: "Hariak", threadsDescription: [ "Zure ", strong("iruzkindutako bidalketak"), " eta laguntzen dituzun bizilagunenak, gaurkotasunaren arabera antolatuta. Hautatu edozein bidalketaren ordu-marka hari osoa ikusteko.", @@ -48,8 +48,8 @@ module.exports = { previousPage: "Aurrekoa", noMentions: "Ez duzu aipamenik jaso, oraindik.", private: "Sarrera-ontzia", - privateDescription: "View and manage your private messages.", - privateInbox: "INBOX", + privateDescription: "Ikusi eta kudeatu zure mezu pribatuak.", + privateInbox: "SARRERA-ONTZIA", privateSent: "BIDALITAKOAK", privateFrom: "Nork", privateTo: "Nori", @@ -60,14 +60,13 @@ module.exports = { peers: "Parekoak", privateDescription: ["Mezu pribatuak ", strong("zure gako publikoarekin zifratzen dira")," eta 7 hartzaile izan ditzakete gehienez."], search: "Bilatu", - searchDescription: "Bilatu edukia zure sarean.", + searchDescription: "Deskribapena", imageSearch: "Irudiak bilatu", searchPlaceholder: "Bilatu @bizilagunak, #etiketak eta gako-hitzak...", settings: "Ezarpenak", continueReading: "Irakurtzen jarraitu", moreComments: "iruzkin gehiago", readThread: "irakurri hari osoa", - // pixelia pixeliaTitle: 'Pixelia', pixeliaDescription: 'Draw pixels on the grid and collaborARTe with others in your network.', pixeliaDescription: 'Marraztu pixelak saretan eta ekin elkARTlanari zure sarean.', @@ -80,7 +79,6 @@ module.exports = { goToMuralButton: "Ikusi Murala", totalPixels: 'Pixelak guztira', pixeliaBy: "egilea", - // modules modules: "Moduluak", modulesViewTitle: "Moduluak", modulesViewDescription: "Konfiguratu zure ingurunea moduluak gaitu edo desgaituz.", @@ -113,7 +111,6 @@ module.exports = { opinionsTitle: "Iritziak", saveSettings: "Gorde konfigurazioa", apply: "Aplikatu", - // menu categories menuPersonal: "Pertsonala", menuContent: "Edukia", menuGovernance: "Gobernantza", @@ -124,13 +121,11 @@ module.exports = { menuEconomy: "Ekonomia", menuMedia: "Multimedia", menuTools: "Tresnak", - // post actions comment: "Iruzkindu", subtopic: "Azpi-gaia", json: "JSON", createdAt: "Sorrera data", createdBy: "Sortzailea", - // relationships unfollow: "Laguntza eten", follow: "Lagundu", block: "Blokeatu", @@ -153,11 +148,9 @@ module.exports = { relationshipNone: "Ez duzu laguntzen", relationshipConflict: "Gatazka", relationshipBlockingPost: "Blokeatutako bidalketa", - // spreads view viewLikes: "Ikusi zabalpenak", spreadedDescription: "Bizilagunak zabaldutako bidalketen zerrenda.", totalspreads: "Hedapenak guztira", - // composer attachFiles: "Erantsi fitxategiak", preview: "Aurrebista", publish: "Idatzi", @@ -192,12 +185,10 @@ module.exports = { ], publishCustom: "Idatzi bidalketa aurreratua", subtopicLabel: "Bidalketa honen azpi-gaia sortu", - // mentions messagePreview: "Aurreikusi bidalketa", mentionsMatching: "Bat datozen aipamenak", mentionsName: "Izena", mentionsRelationship: "Erlazioa", - // settings updateit: "LORTU EGUNERAKETAK!", updateBannerText: "Oasis-en bertsio berri bat eskuragarri dago.", updateBannerAction: "Eguneratu orain →", @@ -267,7 +258,6 @@ module.exports = { homePageTitle: "Hasierako orria", homePageDescription: "Hautatu nahi duzun moduluaren orria hasiera gisa.", saveHomePage: "Gorde hasierako orria", - //invites invites: "Gonbidapenak", invitesTitle: "Gonbidapenak", invitesInvites: "Gonbidapenak", @@ -290,9 +280,7 @@ module.exports = { currentlyUnreachable: "ERROR!", errorDetails: "Errore Xehetasunak", genericError: "Errore bat gertatu da.", - //panic panicMode: "Izu Modua!", - //cipher encryptData: "Idatzi pasahitza (gutxienez 32 karaketere) zure blockchain-a zifratzeko.", decryptData: "Sartu pasahitza zure blockchain-a deszifratzeko.", panicModeDescription: "Zifratu/deszifratu edo EZABATU zure blockchain-a", @@ -300,7 +288,6 @@ module.exports = { encryptPanicButton: "Zifratu blockchain-a", decryptPanicButton: "Deszifratu blockchain-a", removePanicButton: "EZABATU ZURE DATU GUZTIAK!", - //search searchTitle: "Bilatu", searchDescriptionLabel: "Bilatu edukia zure sarean.", searchLanguagesLabel: "Hizkuntzak", @@ -348,9 +335,7 @@ module.exports = { votesCreatedByLabel:"Noiz", voteStatusOpen:"IREKITA", voteStatusClosed:"ITXITA", - //image search page imageSearchLabel: "Hitz hauek dituzten irudiak bilatu.", - //posts and comments commentDescription: ({ parentUrl }) => [ " noiz komentatuta ", a({ href: parentUrl }, " haria"), @@ -362,7 +347,6 @@ module.exports = { ], subtopicTitle: ({ authorName }) => [`Subtopic on @${authorName}'s post`], mysteryDescription: " bidalketa misteriotsua argitaratu du", - // misc + search oasisDescription: "OASIS Proiektuko Sarea", searchSubmit: "Bilatu...", hashtagDescription: "Traola honekin etiketaturiko bidalketak.", @@ -375,6 +359,7 @@ module.exports = { videoLabel: "BIDEOAK", audioLabel: "AUDIOAK", documentLabel: "DOKUMENTUAK", + torrentLabel: "TORRENTAK", pdfFallbackLabel: "PDF Dokumentua", eventLabel: "EKITALDIAK", taskLabel: "ATAZAK", @@ -383,6 +368,17 @@ module.exports = { bookmarkLabel: "MARKAGAILUAK", tribeLabel: "TRIBUAK", marketLabel: "MERKATUA", + shopLabel: "SHOPS", + shopProductLabel: "SHOP PRODUCTS", + mapLabel: "MAPS", + jobLabel: "JOBS", + forumLabel: "FORUMS", + projectLabel: "PROJECTS", + bankWalletLabel: "ZORROTAK", + bankClaimLabel: "UBI CLAIMS", + voteLabel: "VOTES", + contactLabel: "CONTACTS", + pubLabel: "PUBS", cvLabel: "CV-ak", submit: "Bidali", subjectLabel: "Gaia", @@ -406,7 +402,7 @@ module.exports = { walletReceiveTitle: "Jaso", walletHistoryTitle: "Historia", walletBalanceLine: ({ balance }) => `${balance} ECO`, - walletCnfrs: "Berrespen", + walletCnfrs: "Berr.", walletConfirm: "Berretsi", walletDescription: "Kudeatu zure ondasun digitalak. Hala nola, ECOin-ak bidali eta jaso, zure balantzea ikusi eta zure transakzio historia kontsultatu.", walletDate: "Data", @@ -443,7 +439,6 @@ module.exports = { walletUser: "Erabiltzaile izena", walletPass: "Pasahitza", walletConfiguration: "Ezarri zorroa", - //cipher cipher: "Zifratzailea", cipherTitle: "Zifratzailea", cipherDescription: "Zifratu eta deszifratu testua simetrikoki (Pasahitza erabiliz).", @@ -453,6 +448,7 @@ module.exports = { cipherTextLabel: "Zifratuko den testua", cipherTextPlaceholder: "Idatzi zifratuko den testua...", cipherPasswordLabel: "Pasahitza", + cipherPasswordDecryptLabel: "Pasahitza ezarri (gutxienez 32 karaktere) testua deszifratzeko", cipherPasswordPlaceholder: "Idatzi pasahitza...", cipherEncryptButton: "Zifratu", cipherDecryptTitle: "Deszifratu testua", @@ -478,7 +474,6 @@ module.exports = { missingFieldsError: "Ez da testurik, pasahitzik edo HB-rik sartu.", encryptionError: "Errorea testua zifratzean.", decryptionError: "Errorea testua deszifratzean.", - //bookmarking bookmarkTitle: "Laster-markak", bookmarkDescription: "Zure sareko laster-markak aurkitu eta kudeatu.", bookmarkAllSectionTitle: "Laster-markak", @@ -518,7 +513,6 @@ module.exports = { noUrl: "Estekarik ez", noCategory: "Kategoriarik ez", noLastVisit: "Azken bisitarik ez", - //videos videoTitle: "Bideoak", videoDescription: "Arakatu eta kudeatu zure sareko bideo-edukia.", videoPluginTitle: "Izenburua", @@ -557,7 +551,6 @@ module.exports = { videoMessageAuthorButton: "MP", videoUpdatedAt: "Eguneratua", videoNoMatch: "Ez dago zure bilaketarekin bat datorren bideorik.", - //documents documentTitle: "Dokumentuak", documentDescription: "Aurkitu eta kudeatu dokumentuak zure sarean.", documentAllSectionTitle: "Dokumentuak", @@ -594,7 +587,6 @@ module.exports = { documentSearchButton: "Bilatu", documentNoMatch: "Ez dago bilaketarekin bat datorren dokumenturik.", documentUpdatedAt: "Eguneratua", - //audios audioTitle: "Audioak", audioDescription: "Arakatu eta kudeatu zure sareko audio-edukia.", audioPluginTitle: "Izenburua", @@ -633,7 +625,6 @@ module.exports = { audioNoMatch: "Ez dago zure bilaketarekin bat datorren audiorik.", audioFavoritesSectionTitle: "Gogokoak", audioFilterFavorites: "GOGOKOAK", - //favorites favoritesTitle: "Gogokoak", favoritesDescription: "Zure gogoko guztiak leku berean.", favoritesFilterAll: "GUZTIAK", @@ -642,10 +633,13 @@ module.exports = { favoritesFilterBookmarks: "MARKATZAILEAK", favoritesFilterDocuments: "DOKUMENTUAK", favoritesFilterImages: "IRUDIAK", + favoritesFilterMaps: "MAPAK", + favoritesFilterPads: "PADS", + favoritesFilterChats: "TXATAK", + favoritesFilterCalendars: "EGUTEGIAK", favoritesFilterVideos: "BIDEOAK", favoritesRemoveButton: "Gogokoetatik kendu", favoritesNoItems: "Oraindik ez dago gogokorik.", - //inhabitants yourContacts: "Zure Kontaktuak", allInhabitants: "Bizilagunak", allCVs: "CV guztiak", @@ -670,7 +664,7 @@ module.exports = { viewAvatar: "Ikusi Abatarra", viewCV: "Ikusi CV-a", suggestedSectionTitle: "Gomendatuta", - topkarmaSectionTitle: "Top Karma", + topkarmaSectionTitle: "Karma Onena", topactivitySectionTitle: "Top Jarduera", blockedSectionTitle: "Blokeatuta", gallerySectionTitle: "GALERIA", @@ -682,11 +676,11 @@ module.exports = { oasisId: "ID-a", noInhabitantsFound: "Bizilagunik ez, oraindik.", inhabitantActivityLevel: "Jarduera Maila", - //parliament + deviceLabel: "Gailua", parliamentTitle: "Legebiltzarra", parliamentDescription: "Gobernu formak eta kudeaketa kolektiboko politikak arakatu.", parliamentFilterGovernment: "GOBERNUA", - parliamentFilterCandidatures: "KANDIDATURAK", + parliamentFilterCandidatures: "HAUTAGAITZAK", parliamentFilterProposals: "PROPOSAMENAK", parliamentFilterLaws: "LEGEAK", parliamentFilterHistorical: "HISTORIKOA", @@ -721,7 +715,6 @@ module.exports = { parliamentRevocationLaw: 'Legea', parliamentRevocationTitle: 'Izenburua', parliamentRevocationReasons: 'Arrazoiak', - parliamentRevocationPublish: "Indargabetzea Argitaratu", parliamentCurrentRevocationsTitle: 'Uneko Indargabetzeak', parliamentFutureRevocationsTitle: 'Etorkizuneko Indargabetzeak', parliamentPoliciesRevocated: 'HISTORIKOA', @@ -731,7 +724,7 @@ module.exports = { parliamentNoStableGov: "Oraindik ez da gobernurik hautatu.", parliamentNoGovernments: "Oraindik ez dago gobernurik.", parliamentCandidatureFormTitle: "Kandidatura Proposatu", - parliamentCandidatureId: "Kandidatura", + parliamentCandidatureId: "Hautagaitza", parliamentCandidatureIdPh: "Oasis ID (@...) edo tribuaren izena", parliamentCandidatureSlogan: "Leloa (geh. 140 karaktere)", parliamentCandidatureSloganPh: "Lelo labur bat", @@ -786,7 +779,7 @@ module.exports = { parliamentPopulation: "Biztanleria", parliamentThType: "Mota", parliamentThInPower: "Agintean", - parliamentThPresented: "KANDIDATURAK", + parliamentThPresented: "HAUTAGAITZAK", parliamentNoLeaders: "Oraindik ez dago liderrik.", typeParliament: "PARLAMENTU", typeParliamentCandidature: "Parlamentu · Hautagaitza", @@ -823,7 +816,6 @@ module.exports = { parliamentProposalVoteStatusLabel: "Bozketa egoera", parliamentProposalOnTrackYes: "Atalasea lortuta", parliamentProposalOnTrackNo: "Atalasearen azpitik", - //courts courtsTitle: "Auzitegiak", courtsDescription: "Aztertu gatazkak konpontzeko eta justizia kolektiboa kudeatzeko modu desberdinak.", courtsFilterCases: "KASUAK", @@ -848,9 +840,6 @@ module.exports = { courtsJudgeIdPh: "Oasis ID (@...) edo Biztanle izena", courtsNominateBtn: "Proposatu", courtsJudge: "Epailea", - courtsEvidenceFileLabel: "Froga fitxategia (irudia, audioa, bideoa edo PDF)", - courtsCaseMediators: "Bitartekariak", - courtsMediatorsLabel: "Bitartekariak", courtsAddEvidence: "Frogak gehitu", courtsEvidenceText: "Testua", courtsEvidenceLink: "Esteka", @@ -878,10 +867,11 @@ module.exports = { courtsThJudge: "Epailea", courtsThSupports: "Babesak", courtsThDate: "Data", - courtsThVote: "Bozkatu", + courtsThVote: "Botoa", courtsNoNominations: "Oraindik ez dago izendapenik.", courtsAccuser: "Akusatzailea", courtsRespondent: "Erantzulea", + courtsRespondentInvalid: "SSB ID baliozkoa izan behar da (@...ed25519)", courtsThStatus: "Egoera", courtsThAnswerBy: "Erantzuteko epea", courtsThEvidenceBy: "Frogak aurkezteko epea", @@ -953,7 +943,6 @@ module.exports = { courtsRoleDictator: "Diktadorea", courtsAssignJudgeTitle: "Epailea aukeratu", courtsAssignJudgeBtn: "Epailea aukeratu", - //trending trendingTitle: "Pil-pilean", exploreTrending: "Aurkitu pil-pileko edukia zure sarean.", ALLButton: "GUZTIAK", @@ -972,6 +961,7 @@ module.exports = { audioButton: "AUDIOAK", videoButton: "BIDEOAK", documentButton: "DOKUMENTUAK", + torrentButton: "TORRENTAK", author: "Nork", createdAtLabel: "Noiz", totalVotes: "Bozkak guztira", @@ -999,7 +989,6 @@ module.exports = { trendingAuthor: "Nork", trendingCreatedAtLabel: "Noiz", trendingTotalCount: "Kopurua Guztira", - //tasks tasksTitle: "Atazak", tasksDescription: "Aurkitu eta kudeatu atazak", taskTitleLabel: "Izenburua", @@ -1055,7 +1044,6 @@ module.exports = { notasks: "Atazarik ez.", noLocation: "Ez da kokapenik zehaztu", taskSetStatus: "Egoera ezarri", - //events eventTitle: "Ekitaldiak", eventDateLabel: "Data", eventsTitle: "Ekitaldiak", @@ -1123,7 +1111,6 @@ module.exports = { eventUnattended: "Ez naiz bertaratzen", eventStatusOpen: "Irekia", eventStatusClosed: "Itxita", - //tags tagsTitle: "Etiketak", tagsDescription: "Aurkitu eta kudeatu taxonomia ereduak zure sarean.", tagsAllSectionTitle: "Etiketak", @@ -1135,13 +1122,13 @@ module.exports = { tagsNoItems: "Etiketarik ez.", tagsTableHeaderTag: "ETIKETA/LOTURA:", tagsTableHeaderCount: "KONTAGAILUA:", - //transfers transfersTitle: "Transferentziak", transfersDescription: "Aurkitu eta kudeatu transferentziak zure sarean.", transfersFrom: "Nork", transfersTo: "Nori", transfersFilterAll: "GUZTIAK", transfersFilterMine: "NEUREAK", + transfersFilterUBI: "RBU", transfersFilterMarket: "MERKATUA", transfersFilterTop: "GORENAK", transfersFilterPending: "ZAIN", @@ -1166,12 +1153,14 @@ module.exports = { transfersConfirmButton: "Berretsi Transferentzia", transfersNoItems: "Transferentziarik ez.", transfersMineSectionTitle: "Zeure Transferentziak", + transfersUBISectionTitle: "RBU Transferentziak", transfersMarketSectionTitle: "Merkatuko Transferentziak", transfersTopSectionTitle: "Transferentzia Gorenak", transfersPendingSectionTitle: "Transferentziak Zain", transfersUnconfirmedSectionTitle: "Transferentziak Berretsi Gabe", transfersClosedSectionTitle: "Transferentziak Itxita", transfersDiscardedSectionTitle: "Transferentziak Baztertuta", + transfersCreateSectionTitle: "Sortu transferentzia", transfersAllSectionTitle: "Transferentziak", transfersFilterFavs: "Gustukoak", transfersFavsSectionTitle: "Gustuko transferentziak", @@ -1191,8 +1180,7 @@ module.exports = { transfersExpiredBadge: "IRAUNGITA", transfersUpdatedAt: "Eguneratua", transfersNoMatch: "Ez dago bilaketarekin bat datorren transferentziarik.", - //votations (voting/polls) - votationsTitle: "Bozketak", + votationsTitle: "Bozkatzeak", votationsDescription: "Aurkitu eta kudeatu bozketak zure sarean.", voteMineSectionTitle: "Zeure Bozketak", voteCreateSectionTitle: "Sortu Bozketa", @@ -1248,7 +1236,6 @@ module.exports = { voteNewCommentPlaceholder: 'Idatzi hemen zure iruzkina…', voteNewCommentButton: 'Bidali iruzkina', voteNewCommentLabel: 'Gehitu iruzkina', - // CV cvTitle: "CV", cvLabel: "Curriculum Vitae (CV)", cvEditSectionTitle: "Editatu CV-a", @@ -1281,19 +1268,17 @@ module.exports = { cvAvailabilityView: "Eskuragarritasuna", cvUpdateButton: "Eguneratu", cvCreateButton: "Sortu CV-a", - cvContactLabel: "Harremana", + cvContactLabel: "Kontaktua", cvCreatedAt: "Noiz sortua", cvUpdatedAt: "Noiz eguneratua", cvEditButton: "Eguneratu", cvDeleteButton: "Ezabatu", cvNoCV: "CV-rik ez.", - // blog/post, blogSubject: "Gaia", blogMessage: "Mezua", blogImage: "Multimedia igo (max: 50MB)", blogPublish: "Aurrebista", noPopularMessages: "Pil-pileko mezurike ez, oraindik", - // forum forumTitle: "Foroak", forumCategoryLabel: "Kategoria", forumTitleLabel: "Izenburua", @@ -1334,7 +1319,6 @@ module.exports = { forumCatPRIVACY: "Pribatutasuna", forumCatCYBERWARFARE: "Zibergerra", forumCatSURVIVALISM: "Biziraupena", - //images imageTitle: "Irudiak", imageDescription: "Arakatu eta kudeatu zure sareko irudi-edukia.", imagePluginTitle: "Izenburua", @@ -1367,7 +1351,7 @@ module.exports = { imageTitlePlaceholder: "Aukerakoa", imageDescriptionLabel: "Deskribapena", imageDescriptionPlaceholder: "Aukerakoa", - imageMemeLabel: "MEME gisa markatu", + imageMemeLabel: "¿MEME?", imageNoFile: "Ez da irudi-fitxategirik eman", noImages: "Ez dago irudirik erabilgarri.", imageSearchPlaceholder: "Bilatu izenburua, etiketak, deskribapena, egilea...", @@ -1378,8 +1362,11 @@ module.exports = { imageMessageAuthorButton: "Mezua", imageUpdatedAt: "Eguneratua", imageNoMatch: "Ez dago zure bilaketarekin bat datorren irudirik.", - //feed feedTitle: "Jarioa", + feedDetailTitle: "Feed", + feedOpenDiscussion: "Eztabaida ireki", + feedPostComment: "Iruzkina argitaratu", + noComments: "Oraindik iruzkinik ez", createFeedTitle: "Sortu Jarioa", createFeedButton: "Bidali Jarioa!", feedPlaceholder: "Zer berri? (max 280 characters)", @@ -1395,10 +1382,8 @@ module.exports = { author: "Nork", createdAtLabel: "Noiz", FeedshareYourOpinions: "Aurkitu eta partekatu testu laburrak zure sarean.", - //feed refeedButton: "Realimentatu", alreadyRefeeded: "Berjaiotu duzu jada.", - //activity activityTitle: "Jarduera", yourActivity: "Zure jarduera", globalActivity: "Jarduera globala", @@ -1525,7 +1510,6 @@ module.exports = { parliamentLawEnacted: "Onartutako eguna", parliamentLawVotes: "Botoak", createdAt: "Sortze-data", - //reports reportsTitle: "Txostenak", reportsDescription: "Kudeatu eta jarraitu arazo, akats, gehiegikeri eta eduki-abisuei buruzko txostena zure sarean.", reportsFilterAll: "GUZTIAK", @@ -1621,7 +1605,7 @@ module.exports = { reportsEvidenceLinksPlaceholder: 'Itsatsi estekak, mezu ID-ak, pantaila-argazkiak (bada), etab.', reportsContentLocationLabel: 'Non dago edukia', reportsContentLocationPlaceholder: 'Esteka, ID, kanala, haria, egilea, etab.', - reportsWhyInappropriateLabel: 'Zergatik da desegokia', + reportsWhyInappropriateLabel: 'Zergatik da desegokia?', reportsWhyInappropriatePlaceholder: 'Azaldu arrazoia eta eragina.', reportsRequestedActionLabel: 'Eskatutako ekintza', reportsRequestedActionPlaceholder: 'Kendu, ezkutatu, etiketatu, ohartarazi, etab.', @@ -1642,7 +1626,7 @@ module.exports = { tribeFilterMembership: "BAZKIDETZA", tribeFilterRecent: "BERRIAK", tribeFilterLarp: "L.A.R.P.", - tribeFilterTop: "GORENAK", + tribeFilterTop: "TOP", tribeFilterSubtribes: "AZPI-TRIBUAK", tribeFilterGallery: "GALERIA", tribeMainTribeLabel: "TRIBU NAGUSIA", @@ -1694,12 +1678,12 @@ module.exports = { updateTribeTitle: "Eguneratu Tribua", tribeSectionOverview: "Ikuspegi orokorra", tribeSectionInhabitants: "Biztanleak", - tribeSectionVotations: "Bozkatzeak", - tribeSectionEvents: "Ekitaldiak", + tribeSectionVotations: "BOZKATZEAK", + tribeSectionEvents: "EKITALDIAK", tribeSectionReports: "Txostenak", - tribeSectionTasks: "Atazak", - tribeSectionFeed: "Jarioa", - tribeSectionForum: "Foroa", + tribeSectionTasks: "ATAZAK", + tribeSectionFeed: "JARIOA", + tribeSectionForum: "FOROA", tribeSectionMarket: "Merkatua", tribeSectionJobs: "Lanak", tribeSectionProjects: "Proiektuak", @@ -1709,6 +1693,16 @@ module.exports = { tribeSectionVideos: "BIDEOAK", tribeSectionDocuments: "DOKUMENTUAK", tribeSectionBookmarks: "LASTER-MARKAK", + tribeSectionMaps: "MAPS", + tribeSectionPads: "PADS", + tribeSectionChats: "CHATS", + tribeSectionCalendars: "CALENDARS", + tribePadCreate: "Create Pad", + tribeChatCreate: "Create Chat", + tribeCalendarCreate: "Create Calendar", + tribePadsEmpty: "No pads, yet.", + tribeChatsEmpty: "No chats, yet.", + tribeCalendarsEmpty: "No calendars, yet.", tribeInhabitantsEmpty: "Tribu honetan biztanlerik ez, oraindik.", tribeEventCreate: "Sortu Ekitaldia", tribeEventsEmpty: "Ekitaldirik ez, oraindik.", @@ -1843,7 +1837,7 @@ module.exports = { tribeTrendingPeriodDay: "Gaur", tribeTrendingPeriodWeek: "Aste Honetan", tribeTrendingPeriodAll: "Dena", - tribeTrendingEngagement: "interakzioa", + tribeTrendingEngagement: "parte-hartzea", tribeOpinionsEmpty: "Ez dago iritzirik oraindik.", tribeOpinionsCast: "Bozkatu", tribeOpinionsRankings: "Sailkapenak", @@ -1874,6 +1868,7 @@ module.exports = { agendaFilterTransfers: "TRANSFERENTZIAK", agendaFilterJobs: "LANPOSTUAK", agendaFilterProjects: "PROIEKTUAK", + agendaFilterCalendars: "EGUTEGIAK", agendaInviteModeLabel: "Egoera", agendaNoItems: "Esleipenik ez.", agendaDiscardButton: "Baztertu", @@ -1900,7 +1895,7 @@ module.exports = { agendareportCategory: "Kategoria", agendareportSeverity: "Larritasuna", agendareportStatus: "Egoera", - agendareportDescription: "Description", + agendareportDescription: "Deskribapena", agendaTaskEnd: "Amaiera Data", agendaTaskPriority: "Lehentasuna", agendaTransferFrom: "Nork", @@ -1913,7 +1908,6 @@ module.exports = { agendaTransferConcept: "Kontzeptua", agendaTransferAmount: "Kopurua", agendaTransferDeadline: "Epemuga", - //opinions opinionsTitle: "Iritziak", shareYourOpinions: "Deskubritu eta bozkatu zure sareko iritziak.", author: "Egilea", @@ -1928,7 +1922,7 @@ module.exports = { necessaryButton: "BEHARREZKOA", funnyButton: "BARREGARRIA", disgustingButton: "LOREZTUGARRIA", - sensibleButton: "SENDEKOA", + sensibleButton: "SENTIKORRA", propagandaButton: "PROPAGANDA", adultOnlyButton: "ADULTO BAKARRIK", boringButton: "NEKAGARRIA", @@ -1958,7 +1952,7 @@ module.exports = { spamButton: "SPAM", trollButton: "TROLL", nsfwButton: "NSFW", - violentButton: "BIOLENTOA", + violentButton: "BORTITZA", toxicButton: "TOXIKOA", harassmentButton: "BAZTERKETA", hateButton: "ARRETA", @@ -1989,7 +1983,7 @@ module.exports = { voteConfusing: "Konfusio", voteTroll: "Troll", voteNsfw: "NSFW", - voteViolent: "Indarkeria", + voteViolent: "Bortitza", voteToxic: "Toxikoa", voteHarassment: "Jazarpena", voteHate: "Arraza", @@ -2001,7 +1995,6 @@ module.exports = { voteCreative: "Sortzailea", voteSpam: "Spam", voteAdultOnly: "Ados bakarrik", - //inbox publishBlog: "Bloga argitaratu", privateMessage: "MP", pmSendTitle: "Mezu Pribatuak", @@ -2049,8 +2042,6 @@ module.exports = { inboxProjectPledgedTitle: "Ekarpen berria zure proiektuan", pmHasPledged: "ekarpena egin du", pmToYourProject: "zure proiektura", - //blockexplorer - blockchain: "BlockExplorer", blockchainTitle: 'BlockExplorer', blockchainDescription: 'Blokeak aztertu eta ikusgaitu blockchain-ean.', blockchainNoBlocks: 'Ez da blokeik aurkitu blockchain-ean.', @@ -2069,8 +2060,7 @@ module.exports = { blockchainBlockDetails: 'Hautatutako blokearen xehetasunak', blockchainBack: 'Itzuli blokearen azterkira', blockchainContentDeleted: "Edukia ezabatu egin da", - visitContent: 'Bisitatu Edukia', - // banking + visitContent: 'Edukia bisitatu', banking: 'Banking', bankingTitle: 'Banking', bankingDescription: 'Aztertu ECOin-en egungo balioa eta dagokion RBU esleipena, astero banatzen dena parte-hartzearen eta konfiantzaren arabera.', @@ -2082,7 +2072,14 @@ module.exports = { bankBack: 'Itzuli Banking-era', bankViewTx: 'Tx ikusi', bankClaimNow: 'Esleitu', - bankPubBalance: 'PUB saldoa', + bankClaimUBI: 'RBU eskatu!', + bankClaimAndPay: 'Claim & Pay', + bankClaimedPending: 'Claim pending...', + bankStatusUnclaimed: 'Unclaimed', + bankStatusClaimed: 'Claimed', + bankStatusExpired: 'Expired', + bankPubOnly: 'PUB-only operation', + bankNoPendingUBI: 'Ez dago RBU esleipen zain garai honetan.', bankEpoch: 'Epea', bankPool: 'Funtsa (epe honetan)', bankWeightsSum: 'Pisuen batura', @@ -2131,20 +2128,106 @@ module.exports = { bankRemoveMyAddress: 'Nire helbidea kendu', bankNotRemovableOasis: 'Oasis helbideak ezin dira lokalki kendu', bankingUserEngagementScore: "KARMA puntuazioa", - bankingFutureUBI: "RBUren Estimatutako Esleipena", + bankingFutureUBI: "UBI", + pubIdTitle: "PUB Wallet", + pubIdDescription: "Set the PUB OASIS ID. This will be used for PUB transactions (including the UBI).", + pubIdLabel: "PUB ID", + pubIdSave: "Save configuration", + pubIdPlaceholder: "@PUB_ID.ed25519", + bankUbiAvailableNo: "FUNTSIK EZ!", + bankUbiAvailableOk: "ESKURAGARRI!", + bankUbiAvailability: "UBI eskuragarritasuna", + bankAlreadyClaimedThisMonth: "Hilabete honetan jada aldarrikatu da", + bankUbiThisMonth: "UBI (hilabete honetan)", + bankUbiLastClaimed: "UBI (azken aldarrikapena)", + bankUbiNeverClaimed: "Inoiz aldarrikatu ez", + bankUbiTotalClaimed: "UBI (guztira aldarrikatua)", + bankUbiPub: "PUB", + bankUbiInhabitant: "BIZTANLEA", + bankUbiClaimedAmount: "ALDARRIKATUA (ECO)", + typeBankUbiResult: "BANKUA - UBI", + bankNoPubConfigured: "PUBik ez dago konfiguratuta. Ezarri zure PUB IDa Ezarpenetan.", + shopsTitle: "Dendak", + shopDescription: "Sareko dendak aurkitu eta kudeatu.", + shopTitle: "Denda", + shopFilterAll: "GUZTIAK", + shopFilterMine: "NIREAK", + shopFilterRecent: "BERRIAK", + shopFilterTop: "TOP", + shopFilterProducts: "PRODUKTUAK", + shopFilterPrices: "PREZIOAK", + shopFilterFavorites: "GOGOKOAK", + shopUpload: "Denda sortu", + shopAllSectionTitle: "Denda guztiak", + shopMineSectionTitle: "Nire Dendak", + shopRecentSectionTitle: "Denda Berriak", + shopTopSectionTitle: "Top Dendak", + shopProductsSectionTitle: "Top Produktuak", + shopPricesSectionTitle: "Prezio Arabera Produktuak", + shopFavoritesSectionTitle: "Gogokoak", + shopCreateSectionTitle: "Denda sortu", + shopUpdateSectionTitle: "Denda eguneratu", + shopCreate: "Sortu", + shopUpdate: "Eguneratu", + shopDelete: "Ezabatu", + shopAddFavorite: "Gogoko gehitu", + shopRemoveFavorite: "Gogoko kendu", + shopOpen: "IREKIA", + shopClosed: "ITXIA", + shopOpenShop: "Denda ireki", + shopCloseShop: "Denda itxi", + shopProducts: "Produktuak", + shopProductAdd: "Produktua gehitu", + shopProductTitle: "Produktua", + shopProductUpdate: "Produktua eguneratu", + shopProductPrice: "Prezioa (ECO)", + shopProductStock: "Stock", + shopProductUntitled: "Izengabeko produktua", + shopUntitled: "Izengabeko denda", + shopNoItems: "Ez da dendarik aurkitu.", + shopNoProducts: "Oraindik produkturik ez.", + shopOutOfStock: "Agortuta", + shopBuy: "Erosi", + shopBackToShop: "Dendara itzuli", + shopShareUrl: "Partekatzeko URLa", + shopVisitShop: "DENDA BISITATU", + shopStatus: "EGOERA", + shopCreatedAt: "SORTUA", + shopSearchPlaceholder: "Dendak bilatu...", + shopUrl: "URL", + shopLocation: "Kokapena", + shopTags: "Etiketak", + shopVisibility: "Ikusgarritasuna", + shopImage: "Irudia", + shopShortDescription: "Deskribapen Laburra", + shopShortDescriptionPlaceholder: "Deskribapen laburra txarteletarako (gehienez 160 karaktere)", + shopTitlePlaceholder: "Zure dendaren izena", + shopDescriptionPlaceholder: "Zure dendaren deskribapen zehatza", + shopUrlPlaceholder: "https://zure-denda-url.com", + shopLocationPlaceholder: "Hiria, Herrialdea", + shopTagsPlaceholder: "tag1, tag2, tag3", + mapTitlePlaceholder: "Maparen titulua", + shopProductFeatured: "Produktu Nabarmendua", + shopSendToMarket: "Send to Market", + typeShop: "DENDA", + typeShopProduct: "DENDA PRODUKTUA", bankExchange: 'Trukea', bankExchangeCurrentValue: 'ECOin Balioa (1h)', bankTotalSupply: 'ECOin Hornidura Guztizkoa', - bankEcoinHours: 'ECOin Oreka Denboran', + bankEcoinHours: 'ECOin Orduak', bankHoursOfWork: 'lan orduak', + bankUnitMs: "ms", + bankUnitSeconds: "segundo", + bankUnitMinutes: "minutu", + bankUnitDays: "egun", bankExchangeNoData: 'Ez dago daturik eskuragarri', bankExchangeIndex: 'ECOin Balioa (1h)', - bankInflation: 'ECOin Inflazioa', + bankInflation: 'ECOin Inflazioa (anual)', + bankInflationMonthly: 'ECOin Inflazioa (mensual)', bankCurrentSupply: 'ECOin Oraingo Hornidura', bankingSyncStatus: 'ECOin Egoera', bankingSyncStatusSynced: 'Sinkronizatuta', bankingSyncStatusOutdated: 'Desegonetik', - //stats statsTitle: 'Estatistikak', statistics: "Estatistikak", statsInhabitant: "Bizilagunaren estatistikak", @@ -2194,6 +2277,9 @@ module.exports = { statsAudio: "Audioak", statsVideo: "Bideoak", statsDocument: "Dokumentuak", + statsMap: "Mapak", + statsShop: "Dendak", + statsShopProduct: "Denda produktuak", statsTransfer: "Transferentziak", statsAiExchange: "IA", statsPUBs: 'PUBack', @@ -2260,7 +2346,6 @@ module.exports = { statsCourtsSettlementAccepted: "Onartutako akordioak", statsCourtsNomination: "Epaileen izendapenak", statsCourtsNominationVote: "Izendapenen botoak", - //IA ai: "IA", aiTitle: "IA", aiDescription: "Zure saretik ikasten duen '42' izeneko Adimen Artifizial Kolektibo (AIA) bat.", @@ -2292,7 +2377,6 @@ module.exports = { aiApproveCustomTrain: "Erantzun pertsonalizatu hau erabiliz trebatu", aiCustomAnswerPlaceholder: "Idatzi zure erantzun pertsonalizatua…", statsAIExchanges: "Ereduen trukea", - //market marketMineSectionTitle: "Zure artikuluak", marketCreateSectionTitle: "Artikulua sortu", marketUpdateSectionTitle: "Eguneratu", @@ -2319,6 +2403,7 @@ module.exports = { marketItemDescription: "Deskribapena", marketItemDescriptionPlaceholder: "Deskribatu saltzen ari zaren artikulua", marketItemStatus: "Egoera", + marketShopLabel: "Denda", marketItemCondition: "Egoera (kalitatea)", marketItemPrice: "Prezioa", marketItemTags: "Etiketak", @@ -2355,7 +2440,6 @@ module.exports = { marketAuctionEnded: "Amaituta", marketMyBidBadge: "Puja egin duzu", marketNoItemsMatch: "Ez dago zure bilaketarekin bat datorren artikulurik.", - //jobs jobsTitle: "Lanak", jobsDescription: "Aurki eta kudeatu zure sarean lan eskaintzak.", jobsFilterRecent: "BERANDUENAK", @@ -2416,8 +2500,6 @@ module.exports = { viewDetailsButton: "Ikusi Xehetasunak", noJobsFound: "Ez daude lan eskaintzak.", jobAuthor: "Egilea", - jobTypeEmployee: "Enplegatu", - jobTypeFreelancer: "Lanikide", jobTimePartial: "Partziala", jobTimeComplete: "Osotua", jobsDeleteButton: "EZABATU", @@ -2448,7 +2530,6 @@ module.exports = { jobsTagsLabel: "Etiketak", jobsTagsPlaceholder: "etiketa1, etiketa2, etiketa3", noJobsMatch: "Ez dago bilaketarekin bat datorren lan-eskaintzarik.", - //projects projectsTitle: "Proiektuak", projectsDescription: "Sortu, finantzatu eta jarraitu komunitateak gidatutako proiektuak zure sarean.", projectCreateProject: "Proiektu Bat Sortu", @@ -2554,11 +2635,9 @@ module.exports = { projectPledgeAmount: "Kantitatea", projectSelectMilestoneOrBounty: "Hegoa edo Saria hautatu", projectPledgeButton: "Ekimen egin", - //footer footerLicense: "GPLv3", footerPackage: "Paketea", footerVersion: "Bertsioa", - //modules modulesModuleName: "Izena", modulesModuleDescription: "Deskribapena", modulesModuleStatus: "Egoera", @@ -2605,9 +2684,11 @@ module.exports = { modulesTasksDescription: "Atazak aurkitu eta kudeatzeko modulua.", modulesMarketLabel: "Merkatua", modulesMarketDescription: "Ondasun edo zerbitzuak trukatzeko modulua.", + modulesShopsLabel: "Dendak", + modulesShopsDescription: "Dendak kudeatzeko eta aurkitzeko modulua.", modulesTribesLabel: "Tribuak", modulesTribesDescription: "Tribuak (taldeak) esploratu edo sortzeko modulua.", - modulesVotationsLabel: "Bozketak", + modulesVotationsLabel: "Bozkatzeak", modulesVotationsDescription: "Bozketak aurkitu eta kudeatzeko modulua.", modulesParliamentLabel: "Legebiltzarra", modulesParliamentDescription: "Gobernuak hautatu eta legeak bozkatzeko modulua.", @@ -2648,7 +2729,7 @@ module.exports = { connectAndFollow: "Konektatu", deviceSourceLabel: "Gailua", modulesPresetTitle: "Konfigurazio Arruntak", - modulesPreset_minimal: "Minimoa", + modulesPreset_minimal: "Gutxienekoa", modulesPreset_basic: "Oinarrizkoa", modulesPreset_social: "Soziala", modulesPreset_economy: "Ekonomia", @@ -2661,6 +2742,423 @@ module.exports = { dominantOpinionLabel: "Iritzi nagusia", uploadMedia: "Multimedia igo (max: 50MB)", - //END + reportsWhyInappropriateLabel: "Zergatik da desegokia?", + visitContent: "Edukia bisitatu", + bankEcoinHours: "ECOin Orduak", + mapsLabel: "Mapak", + mapTitle: "Mapak", + mapDescription: "Esploratu eta kudeatu lineaz kanpoko mapak zure sarean.", + mapMineSectionTitle: "Zure Mapak", + mapCreateSectionTitle: "Mapa Sortu", + mapUpdateSectionTitle: "Mapa Eguneratu", + mapAllSectionTitle: "Mapak", + mapRecentSectionTitle: "Azken Mapak", + mapFavoritesSectionTitle: "Gogokoak", + mapFilterAll: "DENAK", + mapFilterMine: "NIREAK", + mapFilterRecent: "AZKENAK", + mapFilterFavorites: "GOGOKOAK", + mapUploadButton: "Mapa Sortu", + mapCreateButton: "Mapa Sortu", + mapUpdateButton: "Eguneratu", + mapDeleteButton: "Ezabatu", + mapAddFavoriteButton: "Gogokoetara gehitu", + mapRemoveFavoriteButton: "Gogokoetatik kendu", + mapLatLabel: "Latitudea", + mapLatPlaceholder: "adib. 43.2630", + mapLngLabel: "Longitudea", + mapLngPlaceholder: "adib. -2.9350", + mapDescriptionLabel: "Deskribapena", + mapDescriptionPlaceholder: "Deskribatu mapa edo kokapena...", + mapTypeLabel: "Mapa mota", + mapTypeSingle: "BAKARRA (hasierako kokapena soilik)", + mapTypeOpen: "IREKIA (edonork gehitu ditzake markatzaileak)", + mapTypeClosed: "ITXIA (sortzaileak soilik gehitzen ditu markatzaileak)", + mapTagsLabel: "Etiketak", + mapTagsPlaceholder: "Sartu etiketak komaz bereizita", + mapUrlLabel: "Maparen URLa", + mapPickCoordLabel: "Edo hautatu kokapen bat sarean:", + mapMarkersLabel: "markatzaileak", + mapMarkersTitle: "Markatzaileak", + mapMarkerDefault: "Markatzailea", + mapMarkerLatLabel: "Markatzailearen latitudea", + mapMarkerLngLabel: "Markatzailearen longitudea", + mapMarkerLabelField: "Markatzailearen etiketa", + mapMarkerLabelPlaceholder: "Deskribatu markatzaile hau...", + markerImageLabel: "Markatzailearen Irudia", + mapAddMarkerTitle: "Markatzailea Gehitu", + mapAddMarkerButton: "Markatzailea Gehitu", + mapCleanMarkerButton: "Clean Marker", + mapApplyZoom: "Zoom aplikatu", + mapSearchPlaceholder: "Bilatu deskribapena, etiketak, egilea...", + mapSearchButton: "Bilatu", + mapUpdatedAt: "Eguneratua", + mapNoMatch: "Ez da maparik aurkitu zure bilaketarekin.", + noMaps: "Ez dago maparik eskuragarri.", + mapLocationTitle: "Kokapena", + mapVisitLabel: "Mapa bisitatu", + typeMap: "MAPAK", + typeMapMarker: "MAPA MARKATZAILEA", + modulesMapLabel: "Mapak", + modulesMapDescription: "Lineaz kanpoko mapak kudeatzeko eta partekatzeko modulua.", + padsTitle: "Padak", + padTitle: "Pad", + modulesPadsLabel: "Padak", + modulesPadsDescription: "Testu editoreak lankidetzan kudeatzeko modulua.", + padFilterAll: "GUZTIAK", + padFilterMine: "NIREA", + padFilterRecent: "BERRIA", + padFilterOpen: "IREKIA", + padFilterClosed: "ITXIA", + padCreate: "Pad Sortu", + padUpdate: "Pad Eguneratu", + padDelete: "Pad Ezabatu", + padTitleLabel: "Izenburua", + padTitlePlaceholder: "Idatzi pad-aren izenburua...", + padStatusLabel: "Egoera", + padStatusOpen: "IREKIA", + padStatusInviteOnly: "GONBIDATUAK SOILIK", + padStatusClosed: "ITXIA", + padDeadlineLabel: "Epemuga", + padTagsLabel: "Etiketak", + padTagsPlaceholder: "etiketa1, etiketa2, ...", + padMembersLabel: "Kideak", + padVisitPad: "Pad Bisitatu", + padShareUrl: "URL Partekatu", + padCreated: "Sortua", + padAuthor: "Egilea", + padGenerateCode: "Kodea Sortu", + padInviteCodeLabel: "Gonbidapen Kodea", + padInviteCodePlaceholder: "Sartu gonbidapen kodea...", + padValidateInvite: "Balioztatu", + padStartEditing: "EDITZEN HASI!", + padEditorPlaceholder: "Idazten hasi...", + padSubmitEntry: "Bidali", + padNoEntries: "Oraindik sarrerarik ez.", + padAllSectionTitle: "Pad Guztiak", + padMineSectionTitle: "Nire Padak", + padRecentSectionTitle: "Azken Padak", + padOpenSectionTitle: "Pad Irekiak", + padClosedSectionTitle: "Pad Itxiak", + padCreateSectionTitle: "Pad Berria Sortu", + padUpdateSectionTitle: "Pad Eguneratu", + padInviteGenerated: "Gonbidapen Kodea Sortua", + typePad: "PAD", + padNew: "BERRIA", + padAddFavorite: "Gogokoen Gehitu", + padRemoveFavorite: "Gogokoetatik Kendu", + padClose: "Itxi Pad", + padBackToEditor: "Editorera itzuli", + padSearchPlaceholder: "Bilatu padak...", + + modulesChatsLabel: "Txatak", + modulesChatsDescription: "Txat zifratu publikoak aurkitu eta kudeatzeko modulua.", + typeChat: "TXATA", + typeChatMessage: "TXAT MEZUA", + chatLabel: "TXATAK", + chatMessageLabel: "TXAT MEZUAK", + chatsTitle: "Txatak", + chatMineSectionTitle: "Your Chats", + chatRecentTitle: "Recent Chats", + chatFavoritesTitle: "Gogokoak", + chatOpenTitle: "Open Chats", + chatClosedTitle: "Closed Chats", + chatDescription: "Deskribapena", + chatCategory: "Kategoria", + chatStatus: "EGOERA", + chatFilterAll: "GUZTIAK", + chatFilterMine: "NIREA", + chatFilterRecent: "BERRIA", + chatFilterFavorites: "GOGOKOAK", + chatFilterOpen: "IREKIA", + chatFilterClosed: "ITXIA", + chatCreate: "Txata Sortu", + chatUpdate: "Txata Eguneratu", + chatDelete: "Txata Ezabatu", + chatClose: "Txata Itxi", + chatVisitChat: "TXATA IKUSI", + chatUntitled: "Izenburugabeko Txata", + chatNoItems: "Ez da txatarik aurkitu.", + chatParticipants: "Parte-hartzaileak", + chatStartChatting: "TXATEATZEN HASI!", + chatGenerateCode: "Kodea Sortu", + chatShareUrl: "URLa Partekatu", + chatCreatedAt: "SORTUA", + chatSearchPlaceholder: "Txatak bilatu...", + chatStatusOpen: "IREKIA", + chatStatusInviteOnly: "GONBIDAPENEZ BAKARRIK", + chatStatusClosed: "ITXIA", + chatSendMessage: "Bidali", + chatMessagePlaceholder: "Idatzi zure mezua...", + chatNoMessages: "Oraindik mezurik ez.", + chatLeave: "Txata Utzi", + chatInviteCodeLabel: "Gonbidapen kodea sartu", + chatJoinByInvite: "Sartu", + chatTitlePlaceholder: "Txataren izenburua", + chatDescriptionPlaceholder: "Txataren deskribapena", + chatTagsPlaceholder: "etiketa1, etiketa2", + chatImageLabel: "Aukeratu irudi-fitxategi bat (.jpeg, .jpg, .png, .gif)", + chatInviteCode: "Gonbidapen Kodea", + chatAuthor: "Egilea", + chatCreated: "Sortua", + chatAddFavorite: "Gogokoen artean gehitu", + chatRemoveFavorite: "Gogokoenetatik kendu", + chatPM: "MP", + chatStatusLabel: "Egoera", + chatCategoryLabel: "Kategoria", + chatParticipantsLabel: "Parte-hartzaileak", + gamesTitle: "Jokoak", + gamesDescription: "Aurkitu eta jokatu joko batzuk.", + gamesFilterAll: "GUZTIAK", + gamesPlayButton: "JOLASTU!", + gamesBackToGames: "Jokoetara itzuli", + modulesGamesLabel: "Jokoak", + modulesGamesDescription: "Jokoak aurkitzeko eta jolasteko modulua.", + gamesCocolandTitle: "Cocoland", + gamesCocolandDesc: "Begiak dituen koko bat palmondoen gainetik jauzika ECOins biltzen.", + gamesTheFlowTitle: "ECOinflow", + gamesTheFlowDesc: "Lotu PUBak biztanleekin baliozkotzaileen, denden eta metatzaileen bidez. Iraun CBDC mehatxuari!", + gamesNeonInfiltratorTitle: "Neon Infiltrator", + gamesNeonInfiltratorDesc: "Sartu saretik, bildu datu konfidentzialak, saihestu segurtasun dronak eta ihes egin. Zenbat maila gainditu ditzakezu?", + gamesSpaceInvadersTitle: "Space Invaders", + gamesSpaceInvadersDesc: "Gelditu inbasio extraterrestrea! Inbasore olatuak bota.", + gamesArkanoidTitle: "Arkanoid", + gamesArkanoidDesc: "Hautsi adreilu guztiak zure pala eta pilotarekin. Arcade klasiko bat.", + gamesPingPongTitle: "PingPong", + gamesPingPongDesc: "Ping-pong klasikoa IA baten aurka. Lehenak 5 puntu lortzen duena irabazten du.", + gamesOutrunTitle: "Outrun", + gamesOutrunDesc: "Denboraren aurka lasterketa! Saihestu trafikoa eta iritsi helmugara garaiz.", + gamesAsteroidsTitle: "Asteroids", + gamesAsteroidsDesc: "Gidatu zure ontzia asteroide eremuaren bidez. Tiro egin haiek jo aurretik.", + gamesRockPaperScissorsTitle: "Harria Paper Artaziak", + gamesRockPaperScissorsDesc: "Harria, papera edo artaziak IA baten aurka. Hiru txandako onena irabazten du.", + gamesTikTakToeTitle: "TikTakToe", + gamesTikTakToeDesc: "Tic-Tac-Toe klasikoa IA aurka. Hiru jarraian lortu irabazteko.", + gamesFlipFlopTitle: "FlipFlop", + gamesFlipFlopDesc: "Bota txanpon bat eta apostatu aurpegian edo buztanean. Zenbat zorte duzu?", + games8BallTitle: "8Ball Pool", + games8BallDesc: "Top-down pool. Click to aim, hold to charge power. Pot all balls in the fewest shots.", + gamesArtilleryTitle: "Artillery", + gamesArtilleryDesc: "Aim your cannon, factor in the wind, and hit the target. 5 rounds, fewest shots wins.", + gamesLabyrinthTitle: "Labyrinth", + gamesLabyrinthDesc: "Escape the maze before your moves run out. Each level gets bigger and harder.", + gamesCocomanTitle: "Cocoman", + gamesCocomanDesc: "Eat all the dots, avoid the ghosts. Turn-based Pac-Man — every key press counts.", + gamesTetrisTitle: "Tetris", + gamesAudioPendulumTitle: "Audio Pendulum", + gamesAudioPendulumDesc: "Chaotic physics simulator with real-time audio synthesis. Angular velocities become frequencies, peaks become drum hits. No two simulations sound alike.", + gamesTetrisDesc: "Classic falling blocks. Clear lines to score. How long can you last?", + gamesQuakeTitle: "Quake Arena", + gamesQuakeDesc: "First-person raycasting arena. Move and shoot your way through waves of enemies.", + gamesFilterScoring: "SCORING", + gamesHallOfFame: "Hall of Fame", + gamesHallPlayer: "Player", + gamesHallScore: "Score", + gamesNoScores: "No scores yet.", + calendarsTitle: "Egutegia", + calendarTitle: "Egutegia", + modulesCalendarsLabel: "Egutegiak", + modulesCalendarsDescription: "Egutegiak aurkitu eta kudeatzeko modulua.", + typeCalendar: "EGUTEGIA", + calendarFilterAll: "GUZTIAK", + calendarFilterMine: "NIREAK", + calendarFilterOpen: "IREKIA", + calendarFilterClosed: "ITXIA", + calendarFilterRecent: "BERRIAK", + calendarFilterFavorites: "GOGOKOAK", + calendarCreate: "Egutegia sortu", + calendarUpdate: "Eguneratu", + calendarDelete: "Ezabatu", + calendarTitleLabel: "Izenburua", + calendarTitlePlaceholder: "Egutegiko izenburua...", + calendarStatusLabel: "Egoera", + calendarStatusOpen: "IREKIA", + calendarStatusClosed: "ITXIA", + calendarDeadlineLabel: "Deadline", + calendarTagsLabel: "Etiketak", + calendarTagsPlaceholder: "etiketa1, etiketa2...", + calendarParticipantsLabel: "Parte-hartzaileak", + calendarParticipantsCount: "Parte-hartzaileak", + calendarVisitCalendar: "Egutegia bisitatu", + calendarCreated: "Sortua", + calendarAuthor: "Egilea", + calendarJoin: "Batu", + calendarJoined: "Batuta", + calendarAddDate: "Data gehitu", + calendarAddNote: "Oharra gehitu", + calendarDateLabel: "Data", + calendarDatePlaceholder: "Data hau deskribatu...", + calendarNoteLabel: "Oharra", + calendarNotePlaceholder: "Oharra gehitu...", + calendarFirstDateLabel: "Data", + calendarFirstNoteLabel: "Oharrak", + calendarIntervalLabel: "Interval", + calendarIntervalWeekly: "Weekly", + calendarIntervalMonthly: "Monthly", + calendarIntervalYearly: "Yearly", + calendarFormDescription: "Deskribapena", + calendarNoDates: "Ez dago datarik.", + calendarNoNotes: "Ez dago oharrik.", + calendarsNoItems: "Ez da egutegiak aurkitu.", + calendarsDescription: "Aurkitu eta kudeatu zure sareko egutegiak.", + calendarMonthPrev: "← Aurrekoa", + calendarMonthNext: "Hurrengoa →", + calendarMonthLabel: "Datak", + calendarsShareUrl: "Partekatzeko URLa", + calendarAllSectionTitle: "Egutegiak", + calendarRecentSectionTitle: "Egutegi Berriak", + calendarFavoritesSectionTitle: "Gogokoak", + calendarMineSectionTitle: "Zure Egutegiak", + calendarOpenSectionTitle: "Egutegi irekiak", + calendarClosedSectionTitle: "Egutegi itxiak", + calendarCreateSectionTitle: "Egutegi berria sortu", + calendarUpdateSectionTitle: "Egutegia eguneratu", + calendarAddFavorite: "Gogokoen gehitu", + calendarDeleteNote: "Delete", + calendarRemoveFavorite: "Gogokoetatik kendu", + calendarSearchPlaceholder: "Egutegiak bilatu...", + calendarAddEntry: "Gehitu Sarrera", + calendarLeave: "Irten Egutegitik", + statsCalendar: "Egutegiak", + statsCalendarDate: "Egutegi datak", + statsCalendarNote: "Egutegi oharrak", + chatAccessDenied: "Ez duzu sarbiderik txat honetara. Eskatu gonbidapen bat edukira sartzeko.", + padAccessDenied: "Ez duzu sarbiderik pad honetara. Eskatu gonbidapen bat edukira sartzeko.", + contentAccessDenied: "Ez duzu sarbiderik eduki honetara.", + blockAccessRestricted: "Sarbidea mugatuta", + tribeContentAccessDenied: "Sarbidea Ukatua", + tribeContentAccessDeniedMsg: "Eduki hau tribu batena da. Kide izan behar zara sartzeko.", + tribeViewTribes: "Tribuak Ikusi", + torrentsTitle: "Torrentak", + torrentsDescription: "Esploratu eta kudeatu torrentak zure sarean.", + torrentAllSectionTitle: "Torrentak", + torrentMineSectionTitle: "Zure Torrentak", + torrentRecentSectionTitle: "Azken Torrentak", + torrentTopSectionTitle: "Torrent Onenak", + torrentFavoritesSectionTitle: "Gogokoak", + torrentFilterAll: "DENAK", + torrentFilterMine: "NIREAK", + torrentFilterRecent: "AZKENAK", + torrentFilterTop: "ONENAK", + torrentFilterFavorites: "GOGOKOAK", + torrentCreateSectionTitle: "Torrenta Igo", + torrentUpdateSectionTitle: "Torrenta Eguneratu", + torrentCreateButton: "Torrenta Igo", + torrentUpdateButton: "Eguneratu", + torrentDeleteButton: "Ezabatu", + torrentAddFavoriteButton: "Gogokoetara Gehitu", + torrentRemoveFavoriteButton: "Gogokoetatik Kendu", + torrentFileLabel: "Torrent fitxategia aukeratu (.torrent)", + torrentTitleLabel: "Izenburua", + torrentTitlePlaceholder: "Izenburua", + torrentDescriptionLabel: "Deskribapena", + torrentDescriptionPlaceholder: "Deskribapena", + torrentTagsLabel: "Etiketak", + torrentTagsPlaceholder: "Sartu etiketak komaz bereizita", + torrentSizeLabel: "Tamaina", + torrentDownloadButton: "DOWNLOAD IT!", + torrentNoFile: "Torrent fitxategirik ez", + noTorrents: "Ez da torrentik aurkitu.", + torrentSearchPlaceholder: "Bilatu izenburua, etiketak, egilea...", + torrentSearchButton: "Bilatu", + torrentSortRecent: "Berrienak", + torrentSortOldest: "Zaharrenak", + torrentSortTop: "Bozkatu enak", + torrentNoMatch: "Ez dago torrent bat datorrenik.", + torrentMessageAuthorButton: "Mezua Bidali Egileari", + torrentUpdatedAt: "Eguneratua", + statsTorrent: "Torrentak", + typeTorrent: "TORRENTAK", + modulesTorrentsLabel: "Torrentak", + modulesTorrentsDescription: "Torrentak aurkitu eta kudeatzeko modulua.", + favoritesFilterTorrents: "TORRENTAK", + tribeSectionTorrents: "TORRENTAK", + tribeCreateTorrent: "Torrenta Igo", + tribeMediaTypeTorrent: "Torrenta", + settingsWishTitle: "Nahia", + settingsWishDesc: "Konfiguratu zure Avatarraren nahia.", + settingsWishWhole: "Multiverse", + settingsWishMutuals: "Only mutual-support", + settingsPmVisibilityTitle: "Mezu Pribatuak", + settingsPmVisibilityDesc: "Konfiguratu sarean izan nahi duzun mezu pribatuen esposizio maila.", + settingsPmVisibilityWhole: "Multiverse", + settingsPmVisibilityMutuals: "Only mutual-support", + pmMutualNotice: "Bidalketa UX babes bat da. Jasotzea arreta-iragazkia.", + pmBlockedNonMutual: "Elkarrekiko laguntza duten biztanleei bakarrik bidal diezaiekezu.", + inhabitantsPendingFollowsTitle: "Onespen zain dauden eskaerak", + inhabitantsPendingAccept: "Onartu", + inhabitantsPendingReject: "Ukatu", + bxEncrypted: "ZIFRATUA", + bxEncryptedHexLabel: "Testu zifratua (aurrebista)", + tribeSectionGovernance: "GOBERNANTZA", + tribeSubStatusPublic: "PUBLIKOA", + tribeSubStatusPrivate: "PRIBATUA", + tribeSubInheritedPrivate: "PRIBATUA (tribu nagusitik heredatua)", + tribePadInviteRequired: "Ez duzu pada atzipena. Eskatu gonbidapena.", + tribeChatInviteRequired: "Ez duzu txata atzipena. Eskatu gonbidapena.", + tribeGovernanceDesc: "Tribu honen barne gobernantza.", + tribeGovernanceNoGov: "Ez dago gobernu aktiborik", + tribeGovernanceNoGovDesc: "Tribu honek ez du oraindik gobernurik aukeratu.", + tribeGovernanceAlreadyPublished: "Tribu honek jada hautagai ireki bat du.", + tribeGovernanceProposeInternal: "Proposatu barne hautagaia", + tribeGovernanceInternalCandidatures: "Barne hautagaiak", + tribeGovernanceNoCandidatures: "Ez dago hautagai irekirik.", + tribeGovernanceAddRule: "Gehitu araua", + tribeGovernanceNoRules: "Arauerik ez oraindik.", + tribeGovernanceNoLeaders: "Liderrik ez oraindik aukeratu.", + tribeGovernanceComingSoon: "Laster gobernantza moduluan.", + logsTitle: "Egunkaria", + logsDescription: "Erregistratu zure esperientzia sarean.", + logsReadMore: "Gehiago irakurri", + logsViewTitle: "Egunkaria", + logsColumnType: "Mota", + logsView: "Ikusi", + logsManualPrompt: "Idatzi zure egunkaria", + logsUpdateButton: "Eguneratu", + logsEditTitle: "Sarrera editatu", + logsCreateDescription: "Erregistratu zure esperientzia...", + logsCreateTitle: "Sarrera sortu", + logsWriteButton: "Idatzi", + logsTextPlaceholder: "Deskribatu zure esperientziak...", + logsTextField: "Testua", + logsLabelPlaceholder: "Etiketa...", + logsLabelField: "Idatzi zure egunkaria (etiketa)", + logsAiDisabledWarn: "Gaitu AA modulua /modules-en AA-idatzitako sarrerak erabiltzeko.", + logsAiContextValue: "Blockchain-eguna", + logsAiContext: "Testuingurua", + logsAiModStatus: "AImod", + logsModeApply: "Aplikatu!", + logsModeAIWritten: "AI-Assistant", + logsModeManual: "Eskuz", + logsModeAI: "AA", + logsColumnDelete: "Ezabatu", + logsColumnEdit: "Editatu", + logsColumnLog: "Egunkaria", + logsColumnDate: "Data", + logsDelete: "Ezabatu", + logsEdit: "Editatu", + logsFilterAlways: "BETI", + logsFilterYear: "AZKEN URTEA", + logsFilterMonth: "AZKEN HILABETEA", + logsFilterWeek: "AZKEN ASTEA", + logsFilterToday: "GAUR", + logsFilterRecent: "BERRIAK", + logsFilterAll: "DENAK", + logsCreate: "Sarrera sortu", + logsExport: "Egunkaria esportatu", + logsExportOne: "Esportatu", + logsViewDetails: "Ikusi xehetasunak", + logsGenerateButton: "Sortu testua", + logsSearchText: "Bilatu egunkarietan...", + logsSearchAnyType: "Edozein mota", + logsSearchButton: "Bilatu", + logsEmpty: "Oraindik sarrerarik ez.", + modulesLogsLabel: "Egunkaria", + modulesLogsDescription: "Modulua zure esperientziak (AA laguntzailearen bidez) erregistratzeko.", + statsLogsTitle: "Egunkaria", + statsLogsEntries: "Sarrerak", + typeLog: "EGUNKARIA", + blockchainCycle: "Zikloa", + } }; diff --git a/nodejs-project/nodejs-project/src/client/assets/translations/oasis_fr.js b/nodejs-project/nodejs-project/src/client/assets/translations/oasis_fr.js index 5529f4a4..a9551304 100644 --- a/nodejs-project/nodejs-project/src/client/assets/translations/oasis_fr.js +++ b/nodejs-project/nodejs-project/src/client/assets/translations/oasis_fr.js @@ -67,7 +67,6 @@ module.exports = { continueReading: "Continuer la lecture", moreComments: "plus de commentaires", readThread: "lire le reste du fil", - // pixelia pixeliaTitle: 'Pixelia', pixeliaDescription: 'Dessinez des pixels sur une grille et collabor-ART avec d’autres dans votre réseau.', coordLabel: 'Coordonnées (ex., A3)', @@ -79,7 +78,6 @@ module.exports = { invalidCoordinate: 'Coordonnée incorrecte', goToMuralButton: "Voir la fresque", totalPixels: 'Total de pixels', - // modules modules: "Modules", modulesViewTitle: "Modules", modulesViewDescription: "Définissez votre environnement idéal en activant et désactivant des modules.", @@ -112,7 +110,6 @@ module.exports = { opinionsTitle: "Avis", saveSettings: "Enregistrer la configuration", apply: "Appliquer", - // menu categories menuPersonal: "Personnel", menuContent: "Contenu", menuGovernance: "Gouvernance", @@ -123,13 +120,11 @@ module.exports = { menuEconomy: "Économie", menuMedia: "Médias", menuTools: "Outils", - // post actions comment: "Commenter", subtopic: "Sous-sujet", json: "JSON", createdAt: "Créé le", createdBy: "par", - // relationships unfollow: "Ne plus soutenir", follow: "Soutenir", block: "Bloquer", @@ -152,11 +147,9 @@ module.exports = { relationshipNone: "Vous ne soutenez pas", relationshipConflict: "Conflit", relationshipBlockingPost: "Post bloqué", - // spreads view viewLikes: "Voir les soutiens", spreadedDescription: "Liste des posts soutenus par habitant.", totalspreads: "Soutiens totales", - // composer attachFiles: "Joindre des fichiers", preview: "Prévisualiser", publish: "Publier", @@ -191,12 +184,10 @@ module.exports = { ], publishCustom: "Écrire un post avancé", subtopicLabel: "Créez un sous-sujet pour ce post", - // mentions messagePreview: "Prévisualisation", mentionsMatching: "Mentions", mentionsName: "Nom", mentionsRelationship: "Relation", - // settings updateit: "OBTENIR DES MISES À JOUR !", updateBannerText: "Une nouvelle version d'Oasis est disponible.", updateBannerAction: "Mettre à jour →", @@ -204,7 +195,7 @@ module.exports = { settingsIntro: ({ version }) => [ `[SNH] ꖒ OASIS [ v.${version} ]`, ], - timeAgo: "", + timeAgo: "il y a", sendTime: "écrit ", theme: "Thème", legacy: "Clés", @@ -266,7 +257,6 @@ module.exports = { homePageTitle: "Page d'accueil", homePageDescription: "Sélectionnez le module que vous souhaitez comme page d'accueil.", saveHomePage: "Enregistrer la page d'accueil", - //invites invites: "Invitations", invitesTitle: "Invitations", invitesInvites: "Invitations", @@ -289,9 +279,7 @@ module.exports = { currentlyUnreachable: "ERREUR !", errorDetails: "Détails de l’erreur", genericError: "Une erreur s’est produite.", - //panic panicMode: "Mode Panique !", - //cipher encryptData: "Définissez un mot de passe (min 32 caractères) pour chiffrer votre blockchain", decryptData: "Saisissez le mot de passe pour déchiffrer votre blockchain", panicModeDescription: "Chiffrer/Déchiffrer ou SUPPRIMER votre blockchain", @@ -299,7 +287,6 @@ module.exports = { encryptPanicButton: "Chiffrer la blockchain", decryptPanicButton: "Déchiffrer la blockchain", removePanicButton: "SUPPRIMER TOUTES VOS DONNÉES !", - //search searchTitle: "Rechercher", searchDescriptionLabel: "Rechercher du contenu dans votre réseau.", searchLanguagesLabel: "Langues", @@ -346,9 +333,7 @@ module.exports = { votesCreatedByLabel:"Créé le", voteStatusOpen:"OUVERT", voteStatusClosed:"FERMÉ", - //image search page imageSearchLabel: "Saisissez des mots pour rechercher les images étiquetées avec ces mots.", - //posts and comments commentDescription: ({ parentUrl }) => [ " a commenté dans ", a({ href: parentUrl }, " fil"), @@ -360,11 +345,10 @@ module.exports = { ], subtopicTitle: ({ authorName }) => [`A créé un sous-sujet dans le post de @${authorName}`], mysteryDescription: "a publié un post mystérieux", - // misc + search oasisDescription: "OASIS Réseau de Projets", searchSubmit: "Rechercher...", hashtagDescription: "Publications étiquetées avec ce hashtag.", - postLabel: "POSTS", + postLabel: "PUBLICATIONS", aboutLabel: "HABITANTS", feedLabel: "FLUX", votesLabel: "GOUVERNANCE", @@ -373,14 +357,26 @@ module.exports = { videoLabel: "VIDÉOS", audioLabel: "AUDIOS", documentLabel: "DOCUMENTS", + torrentLabel: "TORRENTS", pdfFallbackLabel: "Document PDF", eventLabel: "ÉVÉNEMENTS", taskLabel: "TÂCHES", transferLabel: "TRANSFERTS", - curriculumLabel: "CURRICULUM", + curriculumLabel: "CURRICULUM VITAE", bookmarkLabel: "LIENS", tribeLabel: "TRIBUS", marketLabel: "MARCHÉ", + shopLabel: "SHOPS", + shopProductLabel: "SHOP PRODUCTS", + mapLabel: "MAPS", + jobLabel: "JOBS", + forumLabel: "FORUMS", + projectLabel: "PROJECTS", + bankWalletLabel: "PORTEFEUILLES", + bankClaimLabel: "UBI CLAIMS", + voteLabel: "VOTES", + contactLabel: "CONTACTS", + pubLabel: "PUBS", cvLabel: "CVs", submit: "Appliquer", subjectLabel: "Sujet", @@ -441,7 +437,6 @@ module.exports = { walletUser: "Utilisateur", walletPass: "Mot de passe", walletConfiguration: "Configurer le portefeuille", - //cipher cipher: "Chiffreur", cipherTitle: "Chiffreur", cipherDescription: "Chiffrez et déchiffrez votre texte de manière symétrique (à l’aide d’un mot de passe partagé).", @@ -451,6 +446,7 @@ module.exports = { cipherTextLabel: "Texte à chiffrer", cipherTextPlaceholder: "Saisissez le texte à chiffrer...", cipherPasswordLabel: "Définissez un mot de passe (minimum 32 caractères) pour chiffrer votre texte", + cipherPasswordDecryptLabel: "Définissez un mot de passe (32 caractères minimum) pour déchiffrer votre texte", cipherPasswordPlaceholder: "Saisissez un mot de passe...", cipherEncryptButton: "Chiffrer", cipherDecryptTitle: "Déchiffrer le texte", @@ -476,7 +472,6 @@ module.exports = { missingFieldsError: "Texte, mot de passe ou IV non fournis.", encryptionError: "Erreur lors du chiffrement du texte.", decryptionError: "Erreur lors du déchiffrement du texte.", - //bookmarking bookmarkTitle: "Marque-pages", bookmarkDescription: "Découvrez et gérez des marque-pages dans votre réseau.", bookmarkAllSectionTitle: "Marque-pages", @@ -500,7 +495,7 @@ module.exports = { bookmarkUrlPlaceholder: "https://exemple.com", bookmarkDescriptionLabel: "Description", bookmarkDescriptionPlaceholder: "Optionnel", - bookmarkTagsLabel: "Tags", + bookmarkTagsLabel: "Étiquettes", bookmarkTagsPlaceholder: "Saisissez des tags séparés par des virgules", bookmarkCategoryLabel: "Catégorie", bookmarkCategoryPlaceholder: "Optionnel", @@ -516,7 +511,6 @@ module.exports = { noUrl: "Aucun lien", noCategory: "Aucune catégorie", noLastVisit: "Aucune dernière visite", - //videos videoTitle: "Vidéos", videoDescription: "Explorez et gérez du contenu vidéo dans votre réseau.", videoPluginTitle: "Titre", @@ -539,7 +533,7 @@ module.exports = { videoAddFavoriteButton: "Ajouter aux favoris", videoRemoveFavoriteButton: "Retirer des favoris", videoFileLabel: "Sélectionnez un fichier vidéo (.mp4, .webm, .ogv, .mov)", - videoTagsLabel: "Tags", + videoTagsLabel: "Étiquettes", videoTagsPlaceholder: "Saisissez des tags séparés par des virgules", videoTitleLabel: "Titre", videoTitlePlaceholder: "Facultatif", @@ -555,7 +549,6 @@ module.exports = { videoMessageAuthorButton: "MP", videoUpdatedAt: "Mis à jour", videoNoMatch: "Aucune vidéo ne correspond à votre recherche.", - //documents documentTitle: "Documents", documentDescription: "Découvrez et gérez des documents dans votre réseau.", documentAllSectionTitle: "Documents", @@ -577,7 +570,7 @@ module.exports = { documentRemoveFavoriteButton: "Retirer des favoris", documentMessageAuthorButton: "PM", documentFileLabel: "Téléverser un document (.pdf)", - documentTagsLabel: "Tags", + documentTagsLabel: "Étiquettes", documentTagsPlaceholder: "Saisissez des tags séparés par des virgules", documentTitleLabel: "Titre", documentTitlePlaceholder: "Optionnel", @@ -592,7 +585,6 @@ module.exports = { documentSearchButton: "Rechercher", documentNoMatch: "Aucun document ne correspond à votre recherche.", documentUpdatedAt: "Mis à jour", - //audios audioTitle: "Audios", audioDescription: "Explorez et gérez du contenu audio dans votre réseau.", audioPluginTitle: "Titre", @@ -613,7 +605,7 @@ module.exports = { audioAddFavoriteButton: "Ajouter aux favoris", audioRemoveFavoriteButton: "Retirer des favoris", audioFileLabel: "Sélectionnez un fichier audio (.mp3, .wav, .ogg)", - audioTagsLabel: "Tags", + audioTagsLabel: "Étiquettes", audioTagsPlaceholder: "Saisissez des tags séparés par des virgules", audioTitleLabel: "Titre", audioTitlePlaceholder: "Facultatif", @@ -631,7 +623,6 @@ module.exports = { audioNoMatch: "Aucun audio ne correspond à votre recherche.", audioFavoritesSectionTitle: "Favoris", audioFilterFavorites: "FAVORIS", - //favorites favoritesTitle: "Favoris", favoritesDescription: "Tous vos favoris au même endroit.", favoritesFilterAll: "TOUS", @@ -640,10 +631,13 @@ module.exports = { favoritesFilterBookmarks: "MARQUE-PAGES", favoritesFilterDocuments: "DOCUMENTS", favoritesFilterImages: "IMAGES", + favoritesFilterMaps: "CARTES", + favoritesFilterPads: "PADS", + favoritesFilterChats: "CHATS", + favoritesFilterCalendars: "CALENDRIERS", favoritesFilterVideos: "VIDÉOS", favoritesRemoveButton: "Retirer des favoris", favoritesNoItems: "Aucun favori pour le moment.", - //inhabitants yourContacts: "Vos contacts", allInhabitants: "Habitants", allCVs: "Tous les CV", @@ -668,7 +662,7 @@ module.exports = { viewAvatar: "Voir l’Avatar", viewCV: "Voir le CV", suggestedSectionTitle: "Suggérés", - topkarmaSectionTitle: "Top Karma", + topkarmaSectionTitle: "Meilleur Karma", topactivitySectionTitle: "Top activité", blockedSectionTitle: "Bloqués", gallerySectionTitle: "GALERIE", @@ -680,7 +674,7 @@ module.exports = { oasisId: "ID", noInhabitantsFound: "Aucun habitant trouvé pour l’instant.", inhabitantActivityLevel: "Niveau Activité", - //parliament + deviceLabel: "Appareil", parliamentTitle: "Parlement", parliamentDescription: "Explorez les formes de gouvernement et les politiques de gestion collective.", parliamentFilterGovernment: "GOUVERNEMENT", @@ -719,11 +713,10 @@ module.exports = { parliamentRevocationLaw: 'Loi', parliamentRevocationTitle: 'Titre', parliamentRevocationReasons: 'Motifs', - parliamentRevocationPublish: "Publier la Révocation", parliamentCurrentRevocationsTitle: 'Révocations en Cours', parliamentFutureRevocationsTitle: 'Révocations à Venir', parliamentPoliciesRevocated: 'HISTORIQUE', - parliamentPoliciesTitle: 'HISTÓRICO', + parliamentPoliciesTitle: 'HISTORIQUE', parliamentLawsTitle: 'LOIS APPROUVÉES', parliamentRulesRevocations: 'Toute loi approuvée peut être révoquée en utilisant la méthode de gouvernement en vigueur.', parliamentNoStableGov: "Aucun gouvernement choisi pour l’instant.", @@ -821,7 +814,6 @@ module.exports = { parliamentProposalVoteStatusLabel: "Statut du vote", parliamentProposalOnTrackYes: "Seuil atteint", parliamentProposalOnTrackNo: "En dessous du seuil", - //courts courtsTitle: "Tribunaux", courtsDescription: "Explorez des formes de résolution des conflits et de gestion collective de la justice.", courtsFilterCases: "AFFAIRES", @@ -872,6 +864,7 @@ module.exports = { courtsNoNominations: "Aucune nomination pour l’instant.", courtsAccuser: "Accusation", courtsRespondent: "Défense", + courtsRespondentInvalid: "Doit être un identifiant SSB valide (@...ed25519)", courtsThStatus: "Statut", courtsThAnswerBy: "Répondre avant le", courtsThEvidenceBy: "Preuves avant le", @@ -936,7 +929,6 @@ module.exports = { courtsRoleDictator: "Dictateur", courtsAssignJudgeTitle: "Choisir un juge", courtsAssignJudgeBtn: "Choisir un juge", - //trending trendingTitle: "Tendances", exploreTrending: "Explorez le contenu le plus populaire dans votre réseau.", ALLButton: "TOUS", @@ -955,6 +947,7 @@ module.exports = { audioButton: "AUDIOS", videoButton: "VIDÉOS", documentButton: "DOCUMENTS", + torrentButton: "TORRENTS", author: "Par", createdAtLabel: "Créé le", totalVotes: "Total des votes", @@ -982,7 +975,6 @@ module.exports = { trendingAuthor: "Par", trendingCreatedAtLabel: "Créé le", trendingTotalCount: "Total des compteurs", - //tasks tasksTitle: "Tâches", tasksDescription: "Découvrez et gérez des tâches dans votre réseau.", taskTitleLabel: "Titre", @@ -1038,7 +1030,6 @@ module.exports = { notasks: "Aucune tâche disponible.", noLocation: "Aucune localisation spécifiée", taskSetStatus: "Définir l'état", - //events eventTitle: "Événements", eventDateLabel: "Date", eventsTitle: "Événements", @@ -1106,7 +1097,6 @@ module.exports = { eventUnattended: "Absent", eventStatusOpen: "Ouvert", eventStatusClosed: "Fermé", - //tags tagsTitle: "Étiquettes", tagsDescription: "Découvrez et explorez les modèles de taxonomie dans votre réseau.", tagsAllSectionTitle: "Étiquettes", @@ -1118,19 +1108,19 @@ module.exports = { tagsNoItems: "Aucune étiquette disponible.", tagsTableHeaderTag: "ÉTIQUETTE/LINK :", tagsTableHeaderCount: "COMPTEUR :", - //transfers transfersTitle: "Transferts", transfersDescription: "Découvrez et gérez les transferts dans votre réseau.", transfersFrom: "De", transfersTo: "À", transfersFilterAll: "TOUS", transfersFilterMine: "MIENS", + transfersFilterUBI: "RBU", transfersFilterMarket: "MARCHÉ", transfersFilterTop: "TOP", transfersFilterPending: "EN ATTENTE", transfersFilterUnconfirmed: "NON CONFIRMÉES", transfersFilterClosed: "FERMÉES", - transfersFilterDiscarded: "DISCARDÉES", + transfersFilterDiscarded: "REJETÉES", transfersCreateButton: "Créer un transfert", transfersUpdateButton: "Mettre à jour", transfersDeleteButton: "Supprimer", @@ -1143,18 +1133,20 @@ module.exports = { transfersStatus: "État", transfersStatusUnconfirmed: "NON CONFIRMÉE", transfersStatusClosed: "FERMÉE", - transfersStatusDiscarded: "DISCARDED", + transfersStatusDiscarded: "REJETÉE", transfersCreatedAt: "Créé le", transfersConfirmations: "CONFIRMATIONS", transfersConfirmButton: "Confirmer le transfert", transfersNoItems: "Aucun transfert trouvé.", transfersMineSectionTitle: "Vos transferts", + transfersUBISectionTitle: "Transferts RBU", transfersMarketSectionTitle: "Transferts du marché", transfersTopSectionTitle: "Transferts principaux", transfersPendingSectionTitle: "Transferts en attente", transfersUnconfirmedSectionTitle: "Transferts non confirmés", transfersClosedSectionTitle: "Transferts fermés", transfersDiscardedSectionTitle: "Transferts rejetés", + transfersCreateSectionTitle: "Créer un transfert", transfersAllSectionTitle: "Transferts", transfersFilterFavs: "Favoris", transfersFavsSectionTitle: "Transferts favoris", @@ -1174,7 +1166,6 @@ module.exports = { transfersExpiredBadge: "EXPIRÉ", transfersUpdatedAt: "Mis à jour", transfersNoMatch: "Aucun transfert ne correspond à votre recherche.", - //votations (voting/polls) votationsTitle: "Votations", votationsDescription: "Découvrez et gérez les votes dans votre réseau.", voteMineSectionTitle: "Vos votes", @@ -1231,7 +1222,6 @@ module.exports = { voteNewCommentPlaceholder: 'Écrivez votre commentaire ici…', voteNewCommentButton: 'Publier le commentaire', voteNewCommentLabel: 'Ajouter un commentaire', - //CV cvTitle: "CV", cvLabel: "Curriculum Vitae (CV)", cvEditSectionTitle: "Modifier le CV", @@ -1270,13 +1260,11 @@ module.exports = { cvEditButton: "Mettre à jour", cvDeleteButton: "Supprimer", cvNoCV: "Aucun CV trouvé.", - // blog/post, blogSubject: "Sujet", blogMessage: "Message", blogImage: "Télécharger un média (max: 50 Mo)", blogPublish: "Aperçu", noPopularMessages: "Aucun message populaire publié pour l’instant", - // forum forumTitle: "Forums", forumCategoryLabel: "Catégorie", forumTitleLabel: "Titre", @@ -1309,7 +1297,7 @@ module.exports = { forumCatSCIENCE: "Science", forumCatMUSIC: "Musique", forumCatART: "Art", - forumCatGAMING: "Jeux vidéo", + forumCatGAMING: "Jeux", forumCatBOOKS: "Livres", forumCatFILMS: "Films", forumCatPHILOSOPHY: "Philosophie", @@ -1317,7 +1305,6 @@ module.exports = { forumCatPRIVACY: "Vie privée", forumCatCYBERWARFARE: "Cyberguerre", forumCatSURVIVALISM: "Survivalisme", - //images imageTitle: "Images", imageDescription: "Explorez et gérez du contenu image dans votre réseau.", imagePluginTitle: "Titre", @@ -1344,13 +1331,13 @@ module.exports = { imageAddFavoriteButton: "Ajouter aux favoris", imageRemoveFavoriteButton: "Retirer des favoris", imageFileLabel: "Sélectionnez un fichier image (.jpeg, .jpg, .png, .gif)", - imageTagsLabel: "Tags", + imageTagsLabel: "Étiquettes", imageTagsPlaceholder: "Saisissez des tags séparés par des virgules", imageTitleLabel: "Titre", imageTitlePlaceholder: "Facultatif", imageDescriptionLabel: "Description", imageDescriptionPlaceholder: "Facultatif", - imageMemeLabel: "Marquer comme MÈME", + imageMemeLabel: "MÈME ?", imageNoFile: "Aucun fichier image fourni", noImages: "Aucune image disponible.", imageSearchPlaceholder: "Rechercher par titre, tags, description, auteur…", @@ -1361,27 +1348,28 @@ module.exports = { imageMessageAuthorButton: "Message", imageUpdatedAt: "Mis à jour", imageNoMatch: "Aucune image ne correspond à votre recherche.", - //feed - feedTitle: "Feed", - createFeedTitle: "Créer un feed", - createFeedButton: "Envoyer le feed !", + feedTitle: "Fil", + feedDetailTitle: "Fil", + feedOpenDiscussion: "Ouvrir la discussion", + feedPostComment: "Publier un commentaire", + noComments: "Pas encore de commentaires", + createFeedTitle: "Créer un fil", + createFeedButton: "Envoyer le fil !", feedPlaceholder: "Que se passe-t-il ? (maximum 280 caractères)", - ALLButton: "Feeds", - MINEButton: "Vos feeds", + ALLButton: "Fils", + MINEButton: "Vos fils", TODAYButton: "AUJOURD’HUI", - TOPButton: "Feeds principaux", - CREATEButton: "Créer un feed", - totalOpinions: "Total d'opinions", - moreVoted: "Plus voté", + TOPButton: "Fils principaux", + CREATEButton: "Créer un fil", + totalOpinions: "Total des opinions", + moreVoted: "Le plus voté", alreadyVoted: "Vous avez déjà donné votre opinion.", - noFeedsFound: "Aucun feed trouvé.", + noFeedsFound: "Aucun fil trouvé.", author: "Par", createdAtLabel: "Créé le", FeedshareYourOpinions: "Découvrez et partagez de courts textes dans votre réseau.", - //feed - refeedButton: "Refeed", - alreadyRefeeded: "Vous avez déjà realimenté ceci.", - //activity + refeedButton: "Repartager", + alreadyRefeeded: "Vous avez déjà repartagé ceci.", activityTitle: "Activité", yourActivity: "Votre activité", globalActivity: "Activité globale", @@ -1428,13 +1416,13 @@ module.exports = { typeFeed: "FLUX", typeContact: "CONTACT", typePub: "PUB", - typeTombstone: "TOMBSTONE", + typeTombstone: "SUPPRIMÉ", typeBanking: "BANQUE", typeBankWallet: "BANQUE/PORTEFEUILLE", typeBankClaim: "BANQUE/UBI", typeKarmaScore: "KARMA", typeParliament: "PARLEMENT", - typeSpread: "SOUTINES", + typeSpread: "SOUTIENS", typeParliamentCandidature: "Parlement · Candidature", typeParliamentTerm: "Parlement · Mandat", typeParliamentProposal:"Parlement · Proposition", @@ -1460,7 +1448,7 @@ module.exports = { voteTotalVotes: "Votes totaux", name: "Nom", skills: "Compétences", - tags: "Tags", + tags: "Étiquettes", title: "Titre", date: "Date", category: "Catégorie", @@ -1555,7 +1543,6 @@ module.exports = { courtsPublicPrefSubmit: 'Enregistrer la préférence de visibilité', courtsMethodMEDIATION: 'Médiation', courtsNoCases: 'Aucun dossier.', - //reports reportsTitle: "Rapports", reportsDescription: "Gérez et suivez les rapports liés aux problèmes, aux erreurs, aux abus et aux avertissements de contenu dans votre réseau.", reportsFilterAll: "TOUS", @@ -1627,7 +1614,6 @@ module.exports = { reportsExpectedBehaviorLabel: 'Résultat attendu', reportsExpectedBehaviorPlaceholder: 'Que devrait-il se passer ?', reportsActualBehaviorLabel: 'Résultat obtenu', - reportsActualBehaviorPlaceholder: "Que se passe-t-il réellement ?", reportsEnvironmentLabel: 'Environnement', reportsEnvironmentPlaceholder: 'Version, appareil, OS, navigateur, paramètres, logs, etc.', reportsReproduceRateLabel: 'Fréquence', @@ -1639,19 +1625,13 @@ module.exports = { reportsReproduceRateUnknown: 'Non précisé', reportsProblemStatementLabel: 'Problème / besoin', reportsProblemStatementPlaceholder: 'Quel problème cette fonctionnalité résout-elle ?', - reportsUserStoryLabel: "User story", - reportsUserStoryPlaceholder: "En tant que , je veux , afin de .", - reportsAcceptanceCriteriaLabel: "Critères d'acceptation", reportsAcceptanceCriteriaPlaceholder: '- Étant donné...\n- Quand...\n- Alors...', - reportsWhatHappenedLabel: "Que s'est-il passé ?", - reportsWhatHappenedPlaceholder: "Décrivez l'incident avec du contexte et des dates approximatives.", reportsReportedUserLabel: 'Utilisateur / entité signalé(e)', reportsReportedUserPlaceholder: '@utilisateur, feed, ID, lien, etc.', reportsEvidenceLinksLabel: 'Preuves / liens', - reportsEvidenceLinksPlaceholder: "Collez des liens, des IDs de messages, des captures (si applicable), etc.", reportsContentLocationLabel: 'Où se trouve le contenu', reportsContentLocationPlaceholder: 'Lien, ID, canal, fil, auteur, etc.', - reportsWhyInappropriateLabel: "Pourquoi c'est inapproprié", + reportsWhyInappropriateLabel: "Pourquoi est-ce inapproprié ?", reportsWhyInappropriatePlaceholder: 'Expliquez la raison et l’impact.', reportsRequestedActionLabel: 'Action demandée', reportsRequestedActionPlaceholder: 'Supprimer, masquer, étiqueter, avertir, etc.', @@ -1712,35 +1692,45 @@ module.exports = { tribeFeedFilterMINE: "MIENS", tribeFeedFilterALL: "TOUS", tribeFeedFilterTOP: "TOP", - tribeFeedRefeeds: "Refeeds", - tribeFeedRefeed: "Refeed", + tribeFeedRefeeds: "Repartages", + tribeFeedRefeed: "Repartager", tribeFeedMessagePlaceholder: "Écrivez un feed…", tribeFeedSend: "Envoyer", tribeFeedEmpty: "Aucun message de feed disponible pour l’instant.", noTribes: "Aucune tribu trouvée pour l'instant.", tribeNotFound: "Tribu introuvable!", - createTribeTitle: "Creer une tribu", - updateTribeTitle: "Mettre a jour la tribu", - tribeSectionOverview: "Apercu", + createTribeTitle: "Créer une tribu", + updateTribeTitle: "Mettre à jour la tribu", + tribeSectionOverview: "Aperçu", tribeSectionInhabitants: "Habitants", - tribeSectionVotations: "Votations", - tribeSectionEvents: "Evenements", + tribeSectionVotations: "VOTATIONS", + tribeSectionEvents: "ÉVÉNEMENTS", tribeSectionReports: "Rapports", - tribeSectionTasks: "Taches", - tribeSectionFeed: "Fil", - tribeSectionForum: "Forum", - tribeSectionMarket: "Marche", + tribeSectionTasks: "TÂCHES", + tribeSectionFeed: "FIL", + tribeSectionForum: "FORUM", + tribeSectionMarket: "Marché", tribeSectionJobs: "Emplois", tribeSectionProjects: "Projets", - tribeSectionMedia: "Media", + tribeSectionMedia: "Média", tribeSectionImages: "IMAGES", tribeSectionAudios: "AUDIOS", tribeSectionVideos: "VIDÉOS", tribeSectionDocuments: "DOCUMENTS", tribeSectionBookmarks: "SIGNETS", + tribeSectionMaps: "MAPS", + tribeSectionPads: "PADS", + tribeSectionChats: "CHATS", + tribeSectionCalendars: "CALENDARS", + tribePadCreate: "Create Pad", + tribeChatCreate: "Create Chat", + tribeCalendarCreate: "Create Calendar", + tribePadsEmpty: "No pads, yet.", + tribeChatsEmpty: "No chats, yet.", + tribeCalendarsEmpty: "No calendars, yet.", tribeInhabitantsEmpty: "Aucun habitant dans cette tribu pour l'instant.", - tribeEventCreate: "Creer un evenement", - tribeEventsEmpty: "Aucun evenement pour l'instant.", + tribeEventCreate: "Créer un événement", + tribeEventsEmpty: "Aucun événement pour l'instant.", tribeEventTitle: "Titre", tribeEventDescription: "Description", tribeEventDate: "Date", @@ -1748,23 +1738,23 @@ module.exports = { tribeEventAttend: "PARTICIPER", tribeEventUnattend: "QUITTER", tribeEventAttendees: "Participants", - tribeTaskCreate: "Creer une tache", - tribeTasksEmpty: "Aucune tache pour l'instant.", + tribeTaskCreate: "Créer une tâche", + tribeTasksEmpty: "Aucune tâche pour l'instant.", tribeTaskTitle: "Titre", tribeTaskDescription: "Description", - tribeTaskPriority: "Priorite", + tribeTaskPriority: "Priorité", tribeTaskDeadline: "Date limite", - tribeTaskAssignees: "Assignes", + tribeTaskAssignees: "Assignés", tribeTaskStatusInProgress: "EN COURS", tribeTaskStatusClosed: "FERMER", tribeTaskAssign: "ASSIGNER", - tribeTaskUnassign: "DESASSIGNER", - tribeReportCreate: "Creer un rapport", + tribeTaskUnassign: "DÉSASSIGNER", + tribeReportCreate: "Créer un rapport", tribeReportsEmpty: "Aucun rapport pour l'instant.", tribeReportTitle: "Titre", tribeReportDescription: "Description", - tribeReportCategory: "Categorie", - tribeVotationCreate: "Creer une votation", + tribeReportCategory: "Catégorie", + tribeVotationCreate: "Créer une votation", tribeVotationsEmpty: "Aucune votation pour l'instant.", tribeVotationTitle: "Titre", tribeVotationDescription: "Description", @@ -1778,43 +1768,43 @@ module.exports = { tribeForumEmpty: "Aucun fil pour l'instant.", tribeForumTitle: "Titre", tribeForumText: "Message", - tribeForumCategory: "Categorie", - tribeForumReply: "Repondre", - tribeForumReplies: "Reponses", - tribeMarketCreate: "Creer une annonce", + tribeForumCategory: "Catégorie", + tribeForumReply: "Répondre", + tribeForumReplies: "Réponses", + tribeMarketCreate: "Créer une annonce", tribeMarketEmpty: "Aucune annonce pour l'instant.", tribeMarketTitle: "Titre", tribeMarketDescription: "Description", tribeMarketPrice: "Prix", tribeMarketImage: "Image", - tribeMarketCategory: "Categorie", - tribeJobCreate: "Creer un emploi", + tribeMarketCategory: "Catégorie", + tribeJobCreate: "Créer un emploi", tribeJobsEmpty: "Aucun emploi pour l'instant.", tribeJobTitle: "Titre", tribeJobDescription: "Description", tribeJobLocation: "Lieu", tribeJobSalary: "Salaire", tribeJobDeadline: "Date limite", - tribeProjectCreate: "Creer un projet", + tribeProjectCreate: "Créer un projet", tribeProjectsEmpty: "Aucun projet pour l'instant.", tribeProjectTitle: "Titre", tribeProjectDescription: "Description", tribeProjectGoal: "Objectif", - tribeProjectFunded: "Finance", + tribeProjectFunded: "Financé", tribeProjectDeadline: "Date limite", - tribeMediaUpload: "Telecharger un media", + tribeMediaUpload: "Télécharger un média", readDocument: "Lire le Document", tribeCreateImage: "Créer Image", tribeCreateAudio: "Créer Audio", tribeCreateVideo: "Créer Vidéo", tribeCreateDocument: "Créer Document", tribeCreateBookmark: "Créer Signet", - tribeMediaEmpty: "Aucun media pour l'instant.", + tribeMediaEmpty: "Aucun média pour l'instant.", tribeMediaTitle: "Titre", tribeMediaDescription: "Description", tribeMediaType: "Type", tribeMediaTypeImage: "Image", - tribeMediaTypeVideo: "Video", + tribeMediaTypeVideo: "Vidéo", tribeMediaTypeAudio: "Audio", tribeMediaTypeDocument: "Document", tribeMediaTypeBookmark: "Signet", @@ -1854,8 +1844,8 @@ module.exports = { tribeLarpUpdateForbidden: "Les tribus L.A.R.P. ne peuvent pas être mises à jour.", tribeActivityJoined: "REJOINT", tribeActivityLeft: "QUITTÉ", - tribeActivityFeed: "FEED", - tribeActivityRefeed: "REFEED", + tribeActivityFeed: "FIL", + tribeActivityRefeed: "REPARTAGE", tribeGroupAnalytics: "Analytiques", tribeGroupCreative: "Créatif", tribeSectionActivity: "ACTIVITÉ", @@ -1903,6 +1893,7 @@ module.exports = { agendaFilterTransfers: "TRANSFERTS", agendaFilterJobs: "EMPLOIS", agendaFilterProjects: "PROJETS", + agendaFilterCalendars: "CALENDRIERS", agendaNoItems: "Aucune affectation trouvée.", agendaDiscardButton: "Écarter", agendaRestoreButton: "Restaurer", @@ -1941,7 +1932,6 @@ module.exports = { agendaTransferConcept: "Concept", agendaTransferAmount: "Montant", agendaTransferDeadline: "Date limite", - //opinions opinionsTitle: "Opinions", shareYourOpinions: "Découvrez et votez pour les opinions dans votre réseau.", author: "Par", @@ -1959,7 +1949,7 @@ module.exports = { sensibleButton: "SENSIBLE", propagandaButton: "PROPAGANDE", adultOnlyButton: "ADULTE SEULEMENT", - boringButton: "ENNUIYEUX", + boringButton: "ENNUYEUX", confusingButton: "CONFUS", inspiringButton: "INSPIRANT", spamButton: "SPAM", @@ -1997,7 +1987,7 @@ module.exports = { voteInteresting: "Intéressant", voteNecessary: "Nécessaire", voteUseful: "Utile", - voteInformative: "Informative", + voteInformative: "Informatif", voteWellResearched: "Bien recherché", voteNeedsSources: "Besoin de sources", voteWrong: "Faux", @@ -2028,8 +2018,7 @@ module.exports = { voteActionable: "Réalisable", voteCreative: "Créatif", voteSpam: "Spam", - voteAdultOnly: "Adult Only", - //inbox + voteAdultOnly: "Adultes uniquement", publishBlog: "Publier un blog", privateMessage: "MP", pmSendTitle: "Messages privés", @@ -2062,9 +2051,9 @@ module.exports = { pmNoSubject: "(sans objet)", pmSubjectLabel: "Objet :", pmBodyLabel: "Corps", - pmBotJobs: "42-JobsBOT", - pmBotProjects: "42-ProjectsBOT", - pmBotMarket: "42-MarketBOT", + pmBotJobs: "42-EmploisBOT", + pmBotProjects: "42-ProjetsBOT", + pmBotMarket: "42-MarchéBOT", inboxJobSubscribedTitle: "Nouvelle inscription à votre offre d’emploi", pmInhabitantWithId: "Habitat avec ID OASIS :", pmHasSubscribedToYourJobOffer: "s’est inscrit à votre offre d’emploi", @@ -2077,7 +2066,6 @@ module.exports = { inboxProjectPledgedTitle: "Nouvelle contribution à votre projet", pmHasPledged: "a contribué", pmToYourProject: "à votre projet", - //blockexplorer blockchain: 'Explorateur de blocs', blockchainTitle: 'Explorateur de blocs', blockchainDescription: 'Explorez et visualisez les blocs de la chaîne.', @@ -2098,7 +2086,6 @@ module.exports = { blockchainBack: 'Retour à l’explorateur', blockchainContentDeleted: 'Ce contenu a été supprimé.', visitContent: 'Visiter le contenu', - // banking banking: 'Banque', bankingTitle: 'Banque', bankingDescription: 'Explorez la valeur actuelle d’ECOin et l’allocation RBU correspondante, distribuée chaque semaine en fonction de la participation et de la confiance.', @@ -2110,7 +2097,14 @@ module.exports = { bankBack: 'Retour à la Banque', bankViewTx: 'Voir la Tx', bankClaimNow: 'Réclamer', - bankPubBalance: 'Solde du PUB', + bankClaimUBI: 'Réclamer RBU !', + bankClaimAndPay: 'Claim & Pay', + bankClaimedPending: 'Claim pending...', + bankStatusUnclaimed: 'Unclaimed', + bankStatusClaimed: 'Claimed', + bankStatusExpired: 'Expired', + bankPubOnly: 'PUB-only operation', + bankNoPendingUBI: 'Aucune allocation RBU en attente pour cette époque.', bankEpoch: 'Époque', bankPool: 'Fonds (cette époque)', bankWeightsSum: 'Somme des poids', @@ -2159,20 +2153,106 @@ module.exports = { bankRemoveMyAddress: 'Supprimer mon adresse', bankNotRemovableOasis: 'Les adresses ne peuvent pas être supprimées localement', bankingUserEngagementScore: "Score KARMA", - bankingFutureUBI: "Allocation UBI estimée", + bankingFutureUBI: "UBI", + pubIdTitle: "PUB Wallet", + pubIdDescription: "Set the PUB OASIS ID. This will be used for PUB transactions (including the UBI).", + pubIdLabel: "PUB ID", + pubIdSave: "Save configuration", + pubIdPlaceholder: "@PUB_ID.ed25519", + bankUbiAvailableNo: "PAS DE FONDS!", + bankUbiAvailableOk: "DISPONIBLE!", + bankUbiAvailability: "Disponibilité UBI", + bankAlreadyClaimedThisMonth: "Déjà réclamé ce mois-ci", + bankUbiThisMonth: "RBU (ce mois)", + bankUbiLastClaimed: "RBU (dernière réclamation)", + bankUbiNeverClaimed: "Jamais réclamé", + bankUbiTotalClaimed: "RBU (total réclamé)", + bankUbiPub: "PUB", + bankUbiInhabitant: "HABITANT", + bankUbiClaimedAmount: "RÉCLAMÉ (ECO)", + typeBankUbiResult: "BANCAIRE - RBU", + bankNoPubConfigured: "Aucun PUB configuré. Définissez votre ID PUB dans les Paramètres.", + shopsTitle: "Boutiques", + shopDescription: "Découvrez et gérez les boutiques du réseau.", + shopTitle: "Boutique", + shopFilterAll: "TOUTES", + shopFilterMine: "MIENNES", + shopFilterRecent: "RÉCENTES", + shopFilterTop: "TOP", + shopFilterProducts: "PRODUITS", + shopFilterPrices: "PRIX", + shopFilterFavorites: "FAVORIS", + shopUpload: "Créer Boutique", + shopAllSectionTitle: "Toutes les Boutiques", + shopMineSectionTitle: "Mes Boutiques", + shopRecentSectionTitle: "Boutiques Récentes", + shopTopSectionTitle: "Meilleures Boutiques", + shopProductsSectionTitle: "Meilleurs Produits", + shopPricesSectionTitle: "Produits par Prix", + shopFavoritesSectionTitle: "Favoris", + shopCreateSectionTitle: "Créer Boutique", + shopUpdateSectionTitle: "Modifier Boutique", + shopCreate: "Créer", + shopUpdate: "Modifier", + shopDelete: "Supprimer", + shopAddFavorite: "Ajouter Favori", + shopRemoveFavorite: "Retirer Favori", + shopOpen: "OUVERTE", + shopClosed: "FERMÉE", + shopOpenShop: "Ouvrir Boutique", + shopCloseShop: "Fermer Boutique", + shopProducts: "Produits", + shopProductAdd: "Ajouter Produit", + shopProductTitle: "Produit", + shopProductUpdate: "Modifier Produit", + shopProductPrice: "Prix (ECO)", + shopProductStock: "Stock", + shopProductUntitled: "Produit sans titre", + shopUntitled: "Boutique sans titre", + shopNoItems: "Aucune boutique trouvée.", + shopNoProducts: "Pas encore de produits.", + shopOutOfStock: "Épuisé", + shopBuy: "Acheter", + shopBackToShop: "Retour à la Boutique", + shopShareUrl: "URL de partage", + shopVisitShop: "VISITER BOUTIQUE", + shopStatus: "STATUT", + shopCreatedAt: "CRÉÉ", + shopSearchPlaceholder: "Rechercher des boutiques...", + shopUrl: "URL", + shopLocation: "Localisation", + shopTags: "Étiquettes", + shopVisibility: "Visibilité", + shopImage: "Image", + shopShortDescription: "Description Courte", + shopShortDescriptionPlaceholder: "Description breve pour les cartes (max 160 caracteres)", + shopTitlePlaceholder: "Nom de votre boutique", + shopDescriptionPlaceholder: "Description détaillée de votre boutique", + shopUrlPlaceholder: "https://url-de-votre-boutique.com", + shopLocationPlaceholder: "Ville, Pays", + shopTagsPlaceholder: "tag1, tag2, tag3", + mapTitlePlaceholder: "Titre de la carte", + shopProductFeatured: "Produit Vedette", + shopSendToMarket: "Send to Market", + typeShop: "BOUTIQUE", + typeShopProduct: "PRODUIT BOUTIQUE", bankExchange: 'Échange', bankExchangeCurrentValue: 'Valeur d’ECOin (1h)', bankTotalSupply: 'Offre totale d’ECOin', bankEcoinHours: 'Équivalence d’ECOin en temps', bankHoursOfWork: 'heures', + bankUnitMs: "ms", + bankUnitSeconds: "secondes", + bankUnitMinutes: "minutes", + bankUnitDays: "jours", bankExchangeNoData: 'Aucune donnée disponible', bankExchangeIndex: 'Valeur d’ECOin (1h)', - bankInflation: 'Inflation d’ECOin', + bankInflation: 'Inflation d’ECOin (anual)', + bankInflationMonthly: 'Inflation d’ECOin (mensual)', bankCurrentSupply: 'Offre actuelle d’ECOin', bankingSyncStatus: 'État d’ECOin', bankingSyncStatusSynced: 'Synchronisé', bankingSyncStatusOutdated: 'Obsolète', - //stats statsTitle: 'Statistiques', statistics: "Statistiques", statsInhabitant: "Statistiques de l'habitant", @@ -2222,6 +2302,9 @@ module.exports = { statsAudio: "Audios", statsVideo: "Vidéos", statsDocument: "Documents", + statsMap: "Cartes", + statsShop: "Boutiques", + statsShopProduct: "Produits de boutique", statsTransfer: "Transferts", statsAiExchange: "IA", statsPUBs: 'PUBs', @@ -2288,7 +2371,6 @@ module.exports = { statsCourtsSettlementAccepted: "Accords acceptés", statsCourtsNomination: "Nominations de juges", statsCourtsNominationVote: "Votes de nomination", - //AI ai: "IA", aiTitle: "IA", aiDescription: "Une Intelligence Artificielle Collective (IAC) nommée « 42 » qui apprend de votre réseau.", @@ -2297,9 +2379,9 @@ module.exports = { aiResponseTitle: "Réponse", aiSubmitButton: "Envoyer !", aiSettingsDescription: "Configurez votre prompt (max 128 caractères) pour le modèle d’IA.", - aiPrompt: "Provide an informative and precise response.", + aiPrompt: "Fournissez une réponse informative et précise.", aiConfiguration: "Configurer le prompt", - aiPromptUsed: "Prompt", + aiPromptUsed: "Invite", aiClearHistory: "Effacer l’historique du chat", aiSharePrompt: "Ajouter cette réponse à l’entraînement collectif ?", aiShareYes: "Oui", @@ -2307,7 +2389,7 @@ module.exports = { aiSharedLabel: "Ajoutée à l’entraînement", aiRejectedLabel: "Non ajoutée à l’entraînement", aiServerError: "L’IA n’a pas pu répondre. Réessayez.", - aiInputPlaceholder: "What is Oasis?", + aiInputPlaceholder: "Qu'est-ce qu'Oasis ?", typeAiExchange: "IA", aiApproveTrain: "Ajouter à l’entraînement collectif", aiRejectTrain: "Ne pas entraîner", @@ -2320,7 +2402,6 @@ module.exports = { aiApproveCustomTrain: "Entraîner avec cette réponse personnalisée", aiCustomAnswerPlaceholder: "Écrivez votre réponse personnalisée…", statsAIExchanges: "Échanges de modèles", - //market marketMineSectionTitle: "Vos articles", marketCreateSectionTitle: "Créer un article", marketUpdateSectionTitle: "Mettre à jour", @@ -2347,15 +2428,16 @@ module.exports = { marketItemDescription: "Description", marketItemDescriptionPlaceholder: "Décrivez l'article que vous vendez", marketItemStatus: "Statut", + marketShopLabel: "Boutique", marketItemCondition: "État", marketItemPrice: "Prix", - marketItemTags: "Tags", + marketItemTags: "Étiquettes", marketItemTagsPlaceholder: "Entrez des tags séparés par des virgules", marketItemDeadline: "Date limite", marketItemIncludesShipping: "Livraison incluse ?", marketItemHighestBid: "Meilleure offre", marketItemHighestBidder: "Meilleur enchérisseur", - marketItemStock: "Stock", + marketItemStock: "Réserve", marketOutOfStock: "Rupture de stock", marketItemBidTime: "Date de l'enchère", marketActionsUpdate: "Mettre à jour", @@ -2383,7 +2465,6 @@ module.exports = { marketAuctionEnded: "Terminé", marketMyBidBadge: "Vous avez enchéri", marketNoItemsMatch: "Aucun article ne correspond à votre recherche.", - //jobs jobsTitle: "Offres d’emploi", jobsDescription: "Découvrez et gérez des offres d’emploi dans votre réseau.", jobsFilterRecent: "RÉCENTS", @@ -2471,10 +2552,9 @@ module.exports = { jobsUpdatedAt: "Mis à jour", jobSetOpen: "Marquer ouvert", jobNewBadge: "NOUVEAU", - jobsTagsLabel: "Tags", + jobsTagsLabel: "Étiquettes", jobsTagsPlaceholder: "tag1, tag2, tag3", noJobsMatch: "Aucune offre ne correspond à votre recherche.", - //projects projectsTitle: "Projets", projectsDescription: "Créez, financez et suivez des projets communautaires dans votre réseau.", projectCreateProject: "Créer un projet", @@ -2580,11 +2660,9 @@ module.exports = { projectPledgeAmount: "Montant", projectSelectMilestoneOrBounty: "Sélectionner un jalon ou une récompense", projectPledgeButton: "Soutenir", - //footer footerLicense: "GPLv3", footerPackage: "Paquet", footerVersion: "Version", - //modules modulesModuleName: "Nom", modulesModuleDescription: "Description", modulesModuleStatus: "Statut", @@ -2631,6 +2709,8 @@ module.exports = { modulesTasksDescription: "Module pour découvrir et gérer les tâches.", modulesMarketLabel: "Marché", modulesMarketDescription: "Module pour échanger des biens ou services.", + modulesShopsLabel: "Boutiques", + modulesShopsDescription: "Module pour gérer et découvrir des boutiques.", modulesTribesLabel: "Tribus", modulesTribesDescription: "Module pour explorer ou créer des tribus (groupes).", modulesVotationsLabel: "Votations", @@ -2685,8 +2765,428 @@ module.exports = { statsCarbonTombstone: "Empreinte du tombstoning", feedSuccessMsg: "Feed publié avec succès !", dominantOpinionLabel: "Opinion dominante", - uploadMedia: "Télécharger un média (max: 50 Mo)" + uploadMedia: "Télécharger un média (max: 50 Mo)", + invitesUnfollow: "Ne plus suivre", + invitesFollow: "Suivre", + invitesUnfollowedInvites: "Réseaux non fédérés", + invitesNoUnfollowed: "Aucun réseau non fédéré.", + blockchainContentDeleted: "Ce contenu a été supprimé", + visitContent: "Voir le contenu", + bankEcoinHours: "Équivalence ECOin en temps", + mapsLabel: "Cartes", + mapTitle: "Cartes", + mapDescription: "Explorez et gérez des cartes hors ligne dans votre réseau.", + mapMineSectionTitle: "Vos Cartes", + mapCreateSectionTitle: "Créer une Carte", + mapUpdateSectionTitle: "Modifier la Carte", + mapAllSectionTitle: "Cartes", + mapRecentSectionTitle: "Cartes Récentes", + mapFavoritesSectionTitle: "Favoris", + mapFilterAll: "TOUS", + mapFilterMine: "MES", + mapFilterRecent: "RÉCENTS", + mapFilterFavorites: "FAVORIS", + mapUploadButton: "Créer Carte", + mapCreateButton: "Créer Carte", + mapUpdateButton: "Modifier", + mapDeleteButton: "Supprimer", + mapAddFavoriteButton: "Ajouter aux favoris", + mapRemoveFavoriteButton: "Retirer des favoris", + mapLatLabel: "Latitude", + mapLatPlaceholder: "ex. 48.8566", + mapLngLabel: "Longitude", + mapLngPlaceholder: "ex. 2.3522", + mapDescriptionLabel: "Description", + mapDescriptionPlaceholder: "Décrivez la carte ou l'emplacement...", + mapTypeLabel: "Type de carte", + mapTypeSingle: "UNIQUE (emplacement initial uniquement)", + mapTypeOpen: "OUVERT (tout le monde peut ajouter des marqueurs)", + mapTypeClosed: "FERMÉ (seul le créateur ajoute des marqueurs)", + mapTagsLabel: "Étiquettes", + mapTagsPlaceholder: "Entrez des étiquettes séparées par des virgules", + mapUrlLabel: "URL de la carte", + mapPickCoordLabel: "Ou sélectionnez un emplacement sur la grille :", + mapMarkersLabel: "marqueurs", + mapMarkersTitle: "Marqueurs", + mapMarkerDefault: "Marqueur", + mapMarkerLatLabel: "Latitude du marqueur", + mapMarkerLngLabel: "Longitude du marqueur", + mapMarkerLabelField: "Étiquette du marqueur", + mapMarkerLabelPlaceholder: "Décrivez ce marqueur...", + markerImageLabel: "Image du Marqueur", + mapAddMarkerTitle: "Ajouter un Marqueur", + mapAddMarkerButton: "Ajouter un Marqueur", + mapCleanMarkerButton: "Clean Marker", + mapApplyZoom: "Appliquer Zoom", + mapSearchPlaceholder: "Chercher description, étiquettes, auteur...", + mapSearchButton: "Chercher", + mapUpdatedAt: "Mis à jour", + mapNoMatch: "Aucune carte ne correspond à votre recherche.", + noMaps: "Aucune carte disponible.", + mapLocationTitle: "Emplacement", + mapVisitLabel: "Visiter la carte", + typeMap: "CARTES", + typeMapMarker: "MARQUEUR DE CARTE", + modulesMapLabel: "Cartes", + modulesMapDescription: "Module pour gérer et partager des cartes hors ligne.", + padsTitle: "Pads", + padTitle: "Pad", + modulesPadsLabel: "Pads", + modulesPadsDescription: "Module pour gérer les éditeurs de texte collaboratifs.", + padFilterAll: "TOUS", + padFilterMine: "MES PADS", + padFilterRecent: "RÉCENT", + padFilterOpen: "OUVERT", + padFilterClosed: "FERMÉ", + padCreate: "Créer Pad", + padUpdate: "Modifier Pad", + padDelete: "Supprimer Pad", + padTitleLabel: "Titre", + padTitlePlaceholder: "Entrez le titre du pad...", + padStatusLabel: "Statut", + padStatusOpen: "OUVERT", + padStatusInviteOnly: "SUR INVITATION", + padStatusClosed: "FERMÉ", + padDeadlineLabel: "Date limite", + padTagsLabel: "Tags", + padTagsPlaceholder: "tag1, tag2, ...", + padMembersLabel: "Membres", + padVisitPad: "Visiter le Pad", + padShareUrl: "Partager URL", + padCreated: "Créé", + padAuthor: "Auteur", + padGenerateCode: "Générer un Code", + padInviteCodeLabel: "Code d'Invitation", + padInviteCodePlaceholder: "Entrez le code d'invitation...", + padValidateInvite: "Valider", + padStartEditing: "COMMENCER À ÉDITER !", + padEditorPlaceholder: "Commencez à écrire...", + padSubmitEntry: "Envoyer", + padNoEntries: "Aucune entrée pour l'instant.", + padAllSectionTitle: "Tous les Pads", + padMineSectionTitle: "Mes Pads", + padRecentSectionTitle: "Pads Récents", + padOpenSectionTitle: "Pads Ouverts", + padClosedSectionTitle: "Pads Fermés", + padCreateSectionTitle: "Créer un Nouveau Pad", + padUpdateSectionTitle: "Modifier le Pad", + padInviteGenerated: "Code d'Invitation Généré", + typePad: "PAD", + padNew: "NOUVEAU", + padAddFavorite: "Ajouter aux Favoris", + padRemoveFavorite: "Retirer des Favoris", + padClose: "Fermer le pad", + padBackToEditor: "Retour à l'éditeur", + padSearchPlaceholder: "Rechercher des pads...", + + modulesChatsLabel: "Chats", + modulesChatsDescription: "Module pour découvrir et gérer les chats chiffrés.", + typeChat: "CHAT", + typeChatMessage: "MESSAGE CHAT", + chatLabel: "CHATS", + chatMessageLabel: "MESSAGES CHAT", + chatsTitle: "Chats", + chatMineSectionTitle: "Your Chats", + chatRecentTitle: "Recent Chats", + chatFavoritesTitle: "Favoris", + chatOpenTitle: "Open Chats", + chatClosedTitle: "Closed Chats", + chatDescription: "Description", + chatCategory: "Catégorie", + chatStatus: "STATUT", + chatFilterAll: "TOUS", + chatFilterMine: "MIEN", + chatFilterRecent: "RÉCENT", + chatFilterFavorites: "FAVORIS", + chatFilterOpen: "OUVERT", + chatFilterClosed: "FERMÉ", + chatCreate: "Créer Chat", + chatUpdate: "Modifier Chat", + chatDelete: "Supprimer Chat", + chatClose: "Fermer Chat", + chatVisitChat: "VOIR CHAT", + chatUntitled: "Chat sans titre", + chatNoItems: "Aucun chat trouvé.", + chatParticipants: "Participants", + chatStartChatting: "COMMENCER À CHATTER!", + chatGenerateCode: "Générer Code", + chatShareUrl: "Partager URL", + chatCreatedAt: "CRÉÉ", + chatSearchPlaceholder: "Rechercher chats...", + chatStatusOpen: "OUVERT", + chatStatusInviteOnly: "SUR INVITATION", + chatStatusClosed: "FERMÉ", + chatSendMessage: "Envoyer", + chatMessagePlaceholder: "Tapez votre message...", + chatNoMessages: "Pas encore de messages.", + chatLeave: "Quitter Chat", + chatInviteCodeLabel: "Entrez le code d'invitation", + chatJoinByInvite: "Rejoindre", + chatTitlePlaceholder: "Titre du chat", + chatDescriptionPlaceholder: "Description du chat", + chatTagsPlaceholder: "tag1, tag2, tag3", + chatImageLabel: "Sélectionnez un fichier image (.jpeg, .jpg, .png, .gif)", + chatInviteCode: "Code d'Invitation", + chatAuthor: "Auteur", + chatCreated: "Créé", + chatAddFavorite: "Ajouter aux Favoris", + chatRemoveFavorite: "Retirer des Favoris", + chatPM: "MP", + chatStatusLabel: "Statut", + chatCategoryLabel: "Catégorie", + chatParticipantsLabel: "Participants", + gamesTitle: "Jeux", + gamesDescription: "Découvrez et jouez à des jeux.", + gamesFilterAll: "TOUS", + gamesPlayButton: "JOUER!", + gamesBackToGames: "Retour aux Jeux", + modulesGamesLabel: "Jeux", + modulesGamesDescription: "Module pour découvrir et jouer à des jeux.", + gamesCocolandTitle: "Cocoland", + gamesCocolandDesc: "Une noix de coco avec des yeux qui saute par-dessus des palmiers en collectant des ECOins.", + gamesTheFlowTitle: "ECOinflow", + gamesTheFlowDesc: "Connectez les PUBs aux habitants via validateurs, boutiques et accumulateurs. Résistez à la menace CBDC !", + gamesNeonInfiltratorTitle: "Neon Infiltrator", + gamesNeonInfiltratorDesc: "Infiltrez la grille, collectez les données confidentielles, évitez les drones et échappez-vous. Combien de niveaux pouvez-vous passer?", + gamesSpaceInvadersTitle: "Space Invaders", + gamesSpaceInvadersDesc: "Arrêtez l'invasion extraterrestre! Abattez les vagues d'envahisseurs.", + gamesArkanoidTitle: "Arkanoid", + gamesArkanoidDesc: "Cassez toutes les briques avec votre raquette et votre balle. Un défi arcade classique.", + gamesPingPongTitle: "PingPong", + gamesPingPongDesc: "Ping-pong classique contre une IA. Le premier à 5 points gagne.", + gamesOutrunTitle: "Outrun", + gamesOutrunDesc: "Course contre la montre! Évitez les obstacles et atteignez l'arrivée à temps.", + gamesAsteroidsTitle: "Asteroids", + gamesAsteroidsDesc: "Pilotez votre vaisseau dans un champ d'astéroïdes. Détruisez-les avant qu'ils ne vous touchent.", + gamesRockPaperScissorsTitle: "Pierre Feuille Ciseaux", + gamesRockPaperScissorsDesc: "Pierre, papier, ciseaux contre une IA. Le meilleur des trois manches gagne.", + gamesTikTakToeTitle: "TikTakToe", + gamesTikTakToeDesc: "Morpion classique contre l'IA. Alignez trois symboles pour gagner.", + gamesFlipFlopTitle: "FlipFlop", + gamesFlipFlopDesc: "Lancez une pièce et pariez sur pile ou face. Quelle est votre chance?", + games8BallTitle: "8Ball Pool", + games8BallDesc: "Top-down pool. Click to aim, hold to charge power. Pot all balls in the fewest shots.", + gamesArtilleryTitle: "Artillery", + gamesArtilleryDesc: "Aim your cannon, factor in the wind, and hit the target. 5 rounds, fewest shots wins.", + gamesLabyrinthTitle: "Labyrinth", + gamesLabyrinthDesc: "Escape the maze before your moves run out. Each level gets bigger and harder.", + gamesCocomanTitle: "Cocoman", + gamesCocomanDesc: "Eat all the dots, avoid the ghosts. Turn-based Pac-Man — every key press counts.", + gamesTetrisTitle: "Tetris", + gamesAudioPendulumTitle: "Audio Pendulum", + gamesAudioPendulumDesc: "Chaotic physics simulator with real-time audio synthesis. Angular velocities become frequencies, peaks become drum hits. No two simulations sound alike.", + gamesTetrisDesc: "Classic falling blocks. Clear lines to score. How long can you last?", + gamesQuakeTitle: "Quake Arena", + gamesQuakeDesc: "First-person raycasting arena. Move and shoot your way through waves of enemies.", + gamesFilterScoring: "SCORING", + gamesHallOfFame: "Hall of Fame", + gamesHallPlayer: "Player", + gamesHallScore: "Score", + gamesNoScores: "No scores yet.", + calendarsTitle: "Calendriers", + calendarTitle: "Calendrier", + modulesCalendarsLabel: "Calendriers", + modulesCalendarsDescription: "Module pour découvrir et gérer les calendriers.", + typeCalendar: "CALENDRIER", + calendarFilterAll: "TOUS", + calendarFilterMine: "LES MIENS", + calendarFilterOpen: "OUVERT", + calendarFilterClosed: "FERMÉ", + calendarFilterRecent: "RÉCENTS", + calendarFilterFavorites: "FAVORIS", + calendarCreate: "Créer un calendrier", + calendarUpdate: "Mettre à jour", + calendarDelete: "Supprimer", + calendarTitleLabel: "Titre", + calendarTitlePlaceholder: "Titre du calendrier...", + calendarStatusLabel: "Statut", + calendarStatusOpen: "OUVERT", + calendarStatusClosed: "FERMÉ", + calendarDeadlineLabel: "Deadline", + calendarTagsLabel: "Étiquettes", + calendarTagsPlaceholder: "tag1, tag2...", + calendarParticipantsLabel: "Participants", + calendarParticipantsCount: "Participants", + calendarVisitCalendar: "Visiter le calendrier", + calendarCreated: "Créé", + calendarAuthor: "Auteur", + calendarJoin: "Rejoindre", + calendarJoined: "Rejoint", + calendarAddDate: "Ajouter une date", + calendarAddNote: "Ajouter une note", + calendarDateLabel: "Date", + calendarDatePlaceholder: "Décrivez cette date...", + calendarNoteLabel: "Note", + calendarNotePlaceholder: "Ajouter une note...", + calendarFirstDateLabel: "Date", + calendarFirstNoteLabel: "Notes", + calendarIntervalLabel: "Interval", + calendarIntervalWeekly: "Weekly", + calendarIntervalMonthly: "Monthly", + calendarIntervalYearly: "Yearly", + calendarFormDescription: "Description", + calendarNoDates: "Aucune date ajoutée.", + calendarNoNotes: "Aucune note.", + calendarsNoItems: "Aucun calendrier trouvé.", + calendarsDescription: "Découvrez et gérez les calendriers de votre réseau.", + calendarMonthPrev: "← Précédent", + calendarMonthNext: "Suivant →", + calendarMonthLabel: "Dates", + calendarsShareUrl: "URL de partage", + calendarAllSectionTitle: "Calendriers", + calendarRecentSectionTitle: "Calendriers Récents", + calendarFavoritesSectionTitle: "Favoris", + calendarMineSectionTitle: "Vos Calendriers", + calendarOpenSectionTitle: "Calendriers ouverts", + calendarClosedSectionTitle: "Calendriers fermés", + calendarCreateSectionTitle: "Créer un calendrier", + calendarUpdateSectionTitle: "Mettre à jour le calendrier", + calendarAddFavorite: "Ajouter aux favoris", + calendarDeleteNote: "Delete", + calendarRemoveFavorite: "Retirer des favoris", + calendarSearchPlaceholder: "Rechercher des calendriers...", + calendarAddEntry: "Ajouter une entrée", + calendarLeave: "Quitter le calendrier", + statsCalendar: "Calendriers", + statsCalendarDate: "Dates de calendrier", + statsCalendarNote: "Notes de calendrier", + chatAccessDenied: "Vous n'avez pas accès à ce chat. Demandez une invitation pour accéder au contenu.", + padAccessDenied: "Vous n'avez pas accès à ce pad. Demandez une invitation pour accéder au contenu.", + contentAccessDenied: "Vous n'avez pas accès à ce contenu.", + blockAccessRestricted: "Accès restreint", + tribeContentAccessDenied: "Accès Refusé", + tribeContentAccessDeniedMsg: "Ce contenu appartient à une tribu. Vous devez en être membre pour y accéder.", + tribeViewTribes: "Voir les Tribus", + torrentsTitle: "Torrents", + torrentsDescription: "Explorez et gérez les torrents de votre réseau.", + torrentAllSectionTitle: "Torrents", + torrentMineSectionTitle: "Vos Torrents", + torrentRecentSectionTitle: "Torrents Récents", + torrentTopSectionTitle: "Meilleurs Torrents", + torrentFavoritesSectionTitle: "Favoris", + torrentFilterAll: "TOUS", + torrentFilterMine: "MES", + torrentFilterRecent: "RÉCENTS", + torrentFilterTop: "MEILLEURS", + torrentFilterFavorites: "FAVORIS", + torrentCreateSectionTitle: "Téléverser un Torrent", + torrentUpdateSectionTitle: "Mettre à jour le Torrent", + torrentCreateButton: "Téléverser un Torrent", + torrentUpdateButton: "Mettre à jour", + torrentDeleteButton: "Supprimer", + torrentAddFavoriteButton: "Ajouter aux Favoris", + torrentRemoveFavoriteButton: "Retirer des Favoris", + torrentFileLabel: "Sélectionner un fichier torrent (.torrent)", + torrentTitleLabel: "Titre", + torrentTitlePlaceholder: "Titre", + torrentDescriptionLabel: "Description", + torrentDescriptionPlaceholder: "Description", + torrentTagsLabel: "Étiquettes", + torrentTagsPlaceholder: "Entrez des étiquettes séparées par des virgules", + torrentSizeLabel: "Taille", + torrentDownloadButton: "DOWNLOAD IT!", + torrentNoFile: "Aucun fichier torrent", + noTorrents: "Aucun torrent trouvé.", + torrentSearchPlaceholder: "Rechercher titre, étiquettes, auteur...", + torrentSearchButton: "Rechercher", + torrentSortRecent: "Plus récents", + torrentSortOldest: "Plus anciens", + torrentSortTop: "Plus votés", + torrentNoMatch: "Aucun torrent correspondant.", + torrentMessageAuthorButton: "Envoyer un Message à l'Auteur", + torrentUpdatedAt: "Mis à jour", + statsTorrent: "Torrents", + typeTorrent: "TORRENTS", + modulesTorrentsLabel: "Torrents", + modulesTorrentsDescription: "Module pour découvrir et gérer les torrents.", + favoritesFilterTorrents: "TORRENTS", + tribeSectionTorrents: "TORRENTS", + tribeCreateTorrent: "Téléverser un Torrent", + tribeMediaTypeTorrent: "Torrent", + settingsWishTitle: "Souhait", + settingsWishDesc: "Configurez le souhait de votre Avatar.", + settingsWishWhole: "Multiverse", + settingsWishMutuals: "Only mutual-support", + settingsPmVisibilityTitle: "Messages Privés", + settingsPmVisibilityDesc: "Configurez votre niveau d'exposition aux messages privés.", + settingsPmVisibilityWhole: "Multiverse", + settingsPmVisibilityMutuals: "Only mutual-support", + pmMutualNotice: "L'envoi est un garde-fou UX. La réception est un filtre d'attention.", + pmBlockedNonMutual: "Vous ne pouvez envoyer des MP qu'aux habitants en soutien mutuel.", + inhabitantsPendingFollowsTitle: "Demandes de soutien en attente", + inhabitantsPendingAccept: "Accepter", + inhabitantsPendingReject: "Refuser", + bxEncrypted: "CHIFFRÉ", + bxEncryptedHexLabel: "Texte chiffré (aperçu)", + tribeSectionGovernance: "GOUVERNANCE", + tribeSubStatusPublic: "PUBLIQUE", + tribeSubStatusPrivate: "PRIVÉE", + tribeSubInheritedPrivate: "PRIVÉE (héritée de la tribu principale)", + tribePadInviteRequired: "Vous n'avez pas accès au pad. Demandez une invitation.", + tribeChatInviteRequired: "Vous n'avez pas accès au chat. Demandez une invitation.", + tribeGovernanceDesc: "Gouvernance interne de cette tribu.", + tribeGovernanceNoGov: "Pas de gouvernement actif", + tribeGovernanceNoGovDesc: "Cette tribu n'a pas encore de gouvernement.", + tribeGovernanceAlreadyPublished: "Cette tribu a déjà une candidature ouverte dans le cycle actuel.", + tribeGovernanceProposeInternal: "Proposer une candidature interne", + tribeGovernanceInternalCandidatures: "Candidatures internes", + tribeGovernanceNoCandidatures: "Aucune candidature ouverte.", + tribeGovernanceAddRule: "Ajouter une règle", + tribeGovernanceNoRules: "Aucune règle pour le moment.", + tribeGovernanceNoLeaders: "Aucun leader élu.", + tribeGovernanceComingSoon: "Bientôt dans le module de gouvernance.", + logsTitle: "Journal", + logsDescription: "Enregistrez votre expérience sur le réseau.", + logsReadMore: "Lire la suite", + logsViewTitle: "Journal", + logsColumnType: "Type", + logsView: "Voir", + logsManualPrompt: "Écrivez votre journal", + logsUpdateButton: "Mettre à jour", + logsEditTitle: "Éditer une entrée", + logsCreateDescription: "Enregistrez votre expérience...", + logsCreateTitle: "Créer une entrée", + logsWriteButton: "Écrire", + logsTextPlaceholder: "Décrivez vos expériences...", + logsTextField: "Texte", + logsLabelPlaceholder: "Libellé...", + logsLabelField: "Écrivez votre journal (libellé)", + logsAiDisabledWarn: "Activez le module IA dans /modules pour utiliser les entrées écrites par l'IA.", + logsAiContextValue: "Jour de blockchain", + logsAiContext: "Contexte", + logsAiModStatus: "AImod", + logsModeApply: "Appliquer !", + logsModeAIWritten: "AI-Assistant", + logsModeManual: "Manuel", + logsModeAI: "IA", + logsColumnDelete: "Supprimer", + logsColumnEdit: "Éditer", + logsColumnLog: "Journal", + logsColumnDate: "Date", + logsDelete: "Supprimer", + logsEdit: "Éditer", + logsFilterAlways: "TOUJOURS", + logsFilterYear: "ANNÉE", + logsFilterMonth: "MOIS", + logsFilterWeek: "SEMAINE", + logsFilterToday: "AUJOURD'HUI", + logsFilterRecent: "RÉCENTS", + logsFilterAll: "TOUS", + logsCreate: "Créer une entrée", + logsExport: "Exporter le journal", + logsExportOne: "Exporter", + logsViewDetails: "Voir les détails", + logsGenerateButton: "Générer le texte", + logsSearchText: "Chercher dans les journaux...", + logsSearchAnyType: "Tout type", + logsSearchButton: "Chercher", + logsEmpty: "Aucune entrée pour l'instant.", + modulesLogsLabel: "Journal", + modulesLogsDescription: "Module pour enregistrer (via un assistant IA) vos expériences.", + statsLogsTitle: "Journal", + statsLogsEntries: "Entrées", + typeLog: "JOURNAL", + blockchainCycle: "Cycle", - //END } }; diff --git a/nodejs-project/nodejs-project/src/client/assets/translations/oasis_it.js b/nodejs-project/nodejs-project/src/client/assets/translations/oasis_it.js index e6c27c1a..4634d3cd 100644 --- a/nodejs-project/nodejs-project/src/client/assets/translations/oasis_it.js +++ b/nodejs-project/nodejs-project/src/client/assets/translations/oasis_it.js @@ -73,20 +73,18 @@ module.exports = { settings: "Impostazioni", continueReading: "Continua a leggere", moreComments: "altri commenti", - readThread: "leggi il resto della discussione", - // pixelia + readThread: "leggi il resto della discussione", pixeliaTitle: 'Pixelia', - pixeliaDescription: 'Draw pixels on the grid and collaborARTe with others in your network.', - coordLabel: 'Coordinate (e.g., A3)', - coordPlaceholder: 'Enter coordinate', + pixeliaDescription: 'Disegna pixel sulla griglia e collabor-ARTe con altri nella tua rete.', + coordLabel: 'Coordinate (es. A3)', + coordPlaceholder: 'Inserisci coordinata', contributorsTitle: "Contributori", pixeliaBy: "di", - colorLabel: 'Pick a color', - paintButton: 'Paint it!', - invalidCoordinate: 'Incorrect coordinate', + colorLabel: 'Scegli un colore', + paintButton: 'Dipingi!', + invalidCoordinate: 'Coordinata errata', goToMuralButton: "Vedi murale", - totalPixels: 'Total Pixels', - // modules + totalPixels: 'Pixel totali', modules: "Moduli", modulesViewTitle: "Moduli", modulesViewDescription: "Configura il tuo ambiente attivando o disattivando i moduli.", @@ -117,858 +115,853 @@ module.exports = { transfersTitle: "Trasferimenti", marketTitle: "Mercato", opinionsTitle: "Opinioni", - saveSettings: "Save configuration", + saveSettings: "Salva configurazione", apply: "Applica", - // menu categories - menuPersonal: "Personal", + menuPersonal: "Personale", menuContent: "Contenuto", menuGovernance: "Governance", - menuOffice: "Office", + menuOffice: "Ufficio", menuMultiverse: "Multiverso", - menuNetwork: "Network", - menuCreative: "Creative", - menuEconomy: "Economy", + menuNetwork: "Rete", + menuCreative: "Creativo", + menuEconomy: "Economia", menuMedia: "Media", - menuTools: "Tools", - // post actions + menuTools: "Strumenti", comment: "Commento", - subtopic: "Subtopic", + subtopic: "Sotto-argomento", json: "JSON", - createdAt: "Created At", + createdAt: "Creato il", createdBy: "di", - // relationships - unfollow: "Unsupport", + unfollow: "Rimuovi supporto", follow: "Supporta", block: "Blocca", - unblock: "Unblock", - newerPosts: "Newer posts", - olderPosts: "Older posts", - feedRangeEmpty: "The given range is empty for this feed. Try viewing the ", - seeFullFeed: "full feed", - feedEmpty: "The Oasis network has never seen posts from this account.", - beginningOfFeed: "This is the beginning of the feed", - noNewerPosts: "No newer posts have been received yet.", - relationshipNotFollowing: "You are not supported", - relationshipTheyFollow: "Supports you", - relationshipMutuals: "Mutual support", - relationshipFollowing: "You are supporting", - relationshipYou: "You", - relationshipBlocking: "You are blocking", - relationshipBlockedBy: "You are blocked", - relationshipMutualBlock: "Mutual block", - relationshipNone: "You are not supporting", - relationshipConflict: "Conflict", - relationshipBlockingPost: "Blocked post", - // spreads view - viewLikes: "View spreads", - spreadedDescription: "List of posts spread by the inhabitant.", - totalspreads: "Total spreads", - // composer - attachFiles: "Attach files", + unblock: "Sblocca", + newerPosts: "Post più recenti", + olderPosts: "Post più vecchi", + feedRangeEmpty: "L'intervallo indicato è vuoto per questo feed. Prova a visualizzare il ", + seeFullFeed: "feed completo", + feedEmpty: "La rete Oasis non ha mai visto post da questo account.", + beginningOfFeed: "Questo è l'inizio del feed", + noNewerPosts: "Non sono ancora stati ricevuti post più recenti.", + relationshipNotFollowing: "Non ti supporta", + relationshipTheyFollow: "Ti supporta", + relationshipMutuals: "Supporto reciproco", + relationshipFollowing: "Stai supportando", + relationshipYou: "Tu", + relationshipBlocking: "Stai bloccando", + relationshipBlockedBy: "Ti ha bloccato", + relationshipMutualBlock: "Blocco reciproco", + relationshipNone: "Non stai supportando", + relationshipConflict: "Conflitto", + relationshipBlockingPost: "Post bloccato", + viewLikes: "Vedi diffusioni", + spreadedDescription: "Lista dei post diffusi dall'abitante.", + totalspreads: "Diffusioni totali", + attachFiles: "Allega file", preview: "Anteprima", - publish: "Write", - contentWarningPlaceholder: "Add a subject to the post (optional)", - privateWarningPlaceholder: "Add inhabitants to send a private post (optional)", + publish: "Pubblica", + contentWarningPlaceholder: "Aggiungi un oggetto al post (opzionale)", + privateWarningPlaceholder: "Aggiungi abitanti per inviare un post privato (opzionale)", publishWarningPlaceholder: "...", publishCustomDescription: [ - "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.", + "RICORDA: A causa della tecnologia blockchain, una volta pubblicato un post non può essere modificato né eliminato.", ], commentWarning: [ - "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.", + "RICORDA: A causa della tecnologia blockchain, una volta pubblicato un post non può essere modificato né eliminato.", ], - commentPublic: "public", - commentPrivate: "private", + commentPublic: "pubblico", + commentPrivate: "privato", commentLabel: ({ publicOrPrivate, markdownUrl }) => [ ], publishLabel: ({ markdownUrl, linkTarget }) => [ - "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.", + "RICORDA: A causa della tecnologia blockchain, una volta pubblicato un post non può essere modificato né eliminato.", ], replyLabel: ({ markdownUrl }) => [ - "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.", + "RICORDA: A causa della tecnologia blockchain, una volta pubblicato un post non può essere modificato né eliminato.", ], publishCustomInfo: ({ href }) => [ - "If you have experience, you can also ", - a({ href }, "write an advanced post"), + "Se hai esperienza, puoi anche ", + a({ href }, "scrivere un post avanzato"), ".", ], publishBasicInfo: ({ href }) => [ - "If you have not experience, you should ", - a({ href }, "write a post"), + "Se non hai esperienza, dovresti ", + a({ href }, "scrivere un post"), ".", ], - publishCustom: "Write advanced post", - subtopicLabel: "Create a subtopic of this post", - //mentions - messagePreview: "Post Preview", + publishCustom: "Scrivi un post avanzato", + subtopicLabel: "Crea un sotto-argomento di questo post", + messagePreview: "Anteprima post", mentionsMatching: "Menzioni corrispondenti", mentionsName: "Nome", mentionsRelationship: "Relazione", - //settings - updateit: "GET UPDATES!", - updateBannerText: "A new version of Oasis is available.", - updateBannerAction: "Update now →", + updateit: "AGGIORNAMENTI!", + updateBannerText: "È disponibile una nuova versione di Oasis.", + updateBannerAction: "Aggiorna ora →", info: "Info", settingsIntro: ({ version }) => [ `[SNH] ꖒ OASIS [ v.${version} ]`, ], - timeAgo: "ago", - sendTime: "about ", - theme: "Theme", + timeAgo: "fa", + sendTime: "circa ", + theme: "Tema", legacy: "Chiavi", legacyTitle: "Chiavi", - legacyDescription: "Manage your secret (private key) quickly and safely.", - legacyExportButton: "Export", - legacyImportButton: "Import", + legacyDescription: "Gestisci il tuo segreto (chiave privata) in modo rapido e sicuro.", + legacyExportButton: "Esporta", + legacyImportButton: "Importa", ssbLogStream: "Blokchain", - ssbLogStreamDescription: "Configure the message limit for Blockchain streams.", - saveSettings: "Save settings", - exportTitle: "Export data", - exportDescription: "Set password (min 32 characters long) to encrypt your key", + ssbLogStreamDescription: "Configura il limite di messaggi per i flussi della Blockchain.", + saveSettings: "Salva impostazioni", + exportTitle: "Esporta dati", + exportDescription: "Imposta una password (minimo 32 caratteri) per crittografare la tua chiave", exportDataTitle: "Backup", - exportDataDescription: "Download your data (secret key excluded!)", - exportDataButton: "Download database", - pubWallet: "PUB Wallet", - pubWalletDescription: "Set the PUB wallet URL. This will be used for PUB transactions (including the UBI).", - pubWalletConfiguration: "Save configuration", - importTitle: "Import data", - importDescription: "Import your encrypted secret (private key) to enable your avatar", - importAttach: "Attach encrypted file (.enc)", - passwordLengthInfo: "Password must be at least 32 characters long.", - passwordImport: "Write your password to decrypt data that will be saved at your system home (name: secret)", - randomPassword: "Random password", - exportPasswordPlaceholder: "Use lowercase, uppercase, numbers & symbols", - fileInfo: "Your encrypted secret key will be saved at your system home (name: oasis.enc)", + exportDataDescription: "Scarica i tuoi dati (chiave segreta esclusa!)", + exportDataButton: "Scarica database", + pubWallet: "Portafoglio PUB", + pubWalletDescription: "Imposta l'URL del portafoglio PUB. Verrà utilizzato per le transazioni PUB (inclusa la UBI).", + pubWalletConfiguration: "Salva configurazione", + importTitle: "Importa dati", + importDescription: "Importa il tuo segreto crittografato (chiave privata) per attivare il tuo avatar", + importAttach: "Allega file crittografato (.enc)", + passwordLengthInfo: "La password deve avere almeno 32 caratteri.", + passwordImport: "Scrivi la tua password per decifrare i dati che verranno salvati nella home del sistema (nome: secret)", + randomPassword: "Password casuale", + exportPasswordPlaceholder: "Usa minuscole, maiuscole, numeri e simboli", + fileInfo: "La tua chiave segreta crittografata verrà salvata nella home del sistema (nome: oasis.enc)", themeIntro: - "Choose a theme.", - setTheme: "Set theme", + "Scegli un tema.", + setTheme: "Imposta tema", language: "Lingua", languageDescription: - "If you'd like to use another language, select it here.", - setLanguage: "Set language", + "Se desideri usare un'altra lingua, selezionala qui.", + setLanguage: "Imposta lingua", status: "Stato", peerConnections: "Peer", - peerConnectionsIntro: "Manage all your connections with other peers.", + peerConnectionsIntro: "Gestisci tutte le tue connessioni con altri peer.", online: "Online", offline: "Offline", - discovered: 'Discovered', - unknown: 'Unknown', + discovered: 'Scoperti', + unknown: 'Sconosciuto', pub: 'PUB', - supported: "Supported", - recommended: "Recommended", + supported: "Supportati", + recommended: "Consigliati", blocked: "Bloccati", - noConnections: "No peers connected.", - noDiscovered: "No peers discovered.", - noSupportedConnections: "No peers supported.", - noBlockedConnections: "No peers blocked.", - noRecommendedConnections: "No peers recommended.", + noConnections: "Nessun peer connesso.", + noDiscovered: "Nessun peer scoperto.", + noSupportedConnections: "Nessun peer supportato.", + noBlockedConnections: "Nessun peer bloccato.", + noRecommendedConnections: "Nessun peer consigliato.", connectionActionIntro: "", startNetworking: "Avvia rete", stopNetworking: "Ferma rete", restartNetworking: "Riavvia rete", - sync: "Sync network", - indexes: "Indexes", + sync: "Sincronizza rete", + indexes: "Indici", indexesDescription: - "Rebuilding your indexes is safe, and may fix some types of bugs.", + "Ricostruire gli indici è sicuro e può risolvere alcuni tipi di errori.", homePageTitle: "Home", - homePageDescription: "Select which module you want as your home page.", - saveHomePage: "Set home", - //invites + homePageDescription: "Seleziona quale modulo vuoi come pagina iniziale.", + saveHomePage: "Imposta home", invites: "Inviti", invitesTitle: "Inviti", - invitesInvites: "Invitations", - invitesDescription: "Manage and apply invite codes in your network.", - invitesTribesTitle: "Tribes", - invitesTribeInviteCodePlaceholder: "Enter tribe invite code", - invitesTribeJoinButton: "Join Tribe", - invitesPubsTitle: "PUBs", - invitesPubInviteCodePlaceholder: "Enter PUB invite code", - invitesAcceptInvite: "Join PUB", - invitesAcceptedInvites: "Federated Networks", - invitesNoInvites: "No invitations accepted, yet.", + invitesInvites: "Inviti", + invitesDescription: "Gestisci e applica codici invito nella tua rete.", + invitesTribesTitle: "Tribù", + invitesTribeInviteCodePlaceholder: "Inserisci codice invito tribù", + invitesTribeJoinButton: "Unisciti alla tribù", + invitesPubsTitle: "PUB", + invitesPubInviteCodePlaceholder: "Inserisci codice invito PUB", + invitesAcceptInvite: "Unisciti al PUB", + invitesAcceptedInvites: "Reti federate", + invitesNoInvites: "Nessun invito accettato ancora.", invitesUnfollow: "Smetti di seguire", invitesFollow: "Segui", - invitesUnfollowedInvites: "Unfederated Networks", - invitesNoFederatedPubs: "No federated networks.", - invitesNoUnfollowed: "No unfederated networks.", - invitesUnreachablePubs: "Unreachable Networks", - invitesNoUnreachablePubs: "No unreachable networks.", - currentlyUnreachable: "ERROR!", - errorDetails: "Error Details", - genericError: "An error occurred.", - //panic - panicMode: "Panic Mode!", - //cipher - encryptData: "Set password (min 32 characters long) to encrypt your blockchain", - decryptData: "Enter password to decrypt your blockchain", - panicModeDescription: "Encrypt/Decrypt or DELETE your blockchain", - removeDataDescription: "WARNING: This process cannot be undone.", - encryptPanicButton: "Encrypt blockchain", - decryptPanicButton: "Decrypt blockchain", - removePanicButton: "DELETE ALL YOUR DATA!", - //search + invitesUnfollowedInvites: "Reti non federate", + invitesNoFederatedPubs: "Nessuna rete federata.", + invitesNoUnfollowed: "Nessuna rete non federata.", + invitesUnreachablePubs: "Reti irraggiungibili", + invitesNoUnreachablePubs: "Nessuna rete irraggiungibile.", + currentlyUnreachable: "ERRORE!", + errorDetails: "Dettagli errore", + genericError: "Si è verificato un errore.", + panicMode: "Modalità panico!", + encryptData: "Imposta una password (minimo 32 caratteri) per crittografare la tua blockchain", + decryptData: "Inserisci la password per decifrare la tua blockchain", + panicModeDescription: "Crittografa/Decifra o ELIMINA la tua blockchain", + removeDataDescription: "ATTENZIONE: Questo processo non può essere annullato.", + encryptPanicButton: "Crittografa blockchain", + decryptPanicButton: "Decifra blockchain", + removePanicButton: "ELIMINA TUTTI I TUOI DATI!", searchTitle: "Cerca", - searchDescriptionLabel: "Search for content in your network.", - searchLanguagesLabel: "Languages", + searchDescriptionLabel: "Cerca contenuti nella tua rete.", + searchLanguagesLabel: "Lingue", searchSkillsLabel: "Competenze", - searchPlaceholder:"Search for content...", - searchSubmit:"Search!", + searchPlaceholder:"Cerca contenuti...", + searchSubmit:"Cerca!", tribeLocationLabel:"Posizione", - tribeModeLabel:"Invite Mode", - tribeMembersCount:"Members Count", + tribeModeLabel:"Modalità invito", + tribeMembersCount:"Numero membri", searchDateLabel:"Data", searchLocationLabel:"Posizione", searchPriceLabel:"Prezzo", searchUrlLabel:"URL", searchCategoryLabel:"Categoria", - searchStartLabel:"Start Time", - searchEndLabel:"End Time", + searchStartLabel:"Inizio", + searchEndLabel:"Fine", searchPriorityLabel:"Priorità", searchStatusLabel:"Stato", statusLabel:"Stato", - totalVotesLabel:"Total Votes", + totalVotesLabel:"Voti totali", votesLabel:"Votazioni", - noResultsFound:"No results found.", + noResultsFound:"Nessun risultato trovato.", author:"Autore", createdAtLabel:"Creato il", - hashtagDescription:"Explore the content associated with this hashtag", + hashtagDescription:"Esplora i contenuti associati a questo hashtag", tribeDescriptionLabel:"Descrizione", - votesOption:"Vote Options", + votesOption:"Opzioni di voto", voteYesLabel:"Sì", voteNoLabel:"No", - allTypesLabel: "UNLIMITED", - ABSTENTIONLabel:"ABSTENTION", - YESLabel:"YES", + allTypesLabel: "TUTTI", + ABSTENTIONLabel:"ASTENSIONE", + YESLabel:"SÌ", NOLabel:"NO", - FOLLOW_MAJORITYLabel: "FOLLOW MAJORITY", - CONFUSEDLabel: "CONFUSED", - NOT_INTERESTEDLabel: "NOT INTERESTED", + FOLLOW_MAJORITYLabel: "SEGUI MAGGIORANZA", + CONFUSEDLabel: "CONFUSO", + NOT_INTERESTEDLabel: "NON INTERESSATO", voteOptionYes:"Sì", voteOptionNo:"No", - voteOptionAbstention:"Abstention", + voteOptionAbstention:"Astensione", StatusLabel:"Stato", votesOptionYesLabel:"Sì", votesOptionNoLabel:"No", - votesOptionAbstentionLabel:"Abstention", - votesQuestionLabel:"Question", - votesCreatedByLabel:"Created by", - voteStatusOpen:"OPEN", - voteStatusClosed:"CLOSED", - //image search page - imageSearchLabel: "Enter words to search for images labelled with them.", - //posts and comments + votesOptionAbstentionLabel:"Astensione", + votesQuestionLabel:"Domanda", + votesCreatedByLabel:"Creato da", + voteStatusOpen:"APERTO", + voteStatusClosed:"CHIUSO", + imageSearchLabel: "Inserisci parole per cercare immagini etichettate con esse.", commentDescription: ({ parentUrl }) => [ - " commented on ", - a({ href: parentUrl }, " thread"), + " ha commentato in ", + a({ href: parentUrl }, " discussione"), ], - commentTitle: ({ authorName }) => [`Comment on @${authorName}'s post`], + commentTitle: ({ authorName }) => [`Commento al post di @${authorName}`], subtopicDescription: ({ parentUrl }) => [ - " created a subtopic from ", - a({ href: parentUrl }, " a post"), + " ha creato un sotto-argomento da ", + a({ href: parentUrl }, " un post"), ], - subtopicTitle: ({ authorName }) => [`Subtopic on @${authorName}'s post`], - mysteryDescription: "posted a mysterious post", - // misc + search - oasisDescription: "OASIS Project Network", - searchSubmit: "Let's Search...", - hashtagDescription: "Posts tagged with this hashtag.", - postLabel: "POSTS", - aboutLabel: "INHABITANTS", - feedLabel: "FEEDS", - votesLabel: "VOTATIONS", - reportLabel: "REPORTS", - imageLabel: "IMAGES", - videoLabel: "VIDEOS", - audioLabel: "AUDIOS", - documentLabel: "DOCUMENTS", + subtopicTitle: ({ authorName }) => [`Sotto-argomento del post di @${authorName}`], + mysteryDescription: "ha pubblicato un post misterioso", + oasisDescription: "Rete del Progetto OASIS", + searchSubmit: "Cerca...", + hashtagDescription: "Post con questo hashtag.", + postLabel: "POST", + aboutLabel: "ABITANTI", + feedLabel: "FEED", + votesLabel: "VOTAZIONI", + reportLabel: "SEGNALAZIONI", + imageLabel: "IMMAGINI", + videoLabel: "VIDEO", + audioLabel: "AUDIO", + documentLabel: "DOCUMENTI", + torrentLabel: "TORRENT", pdfFallbackLabel: "Documento PDF", - eventLabel: "EVENTS", - taskLabel: "TASKS", - transferLabel: "TRANSFERS", + eventLabel: "EVENTI", + taskLabel: "COMPITI", + transferLabel: "TRASFERIMENTI", curriculumLabel: "CURRICULUM", - bookmarkLabel: "BOOKMARKS", - tribeLabel: "TRIBES", - marketLabel: "MARKET", - cvLabel: "CVs", + bookmarkLabel: "SEGNALIBRI", + tribeLabel: "TRIBÙ", + marketLabel: "MERCATO", + shopLabel: "SHOPS", + shopProductLabel: "SHOP PRODUCTS", + mapLabel: "MAPS", + jobLabel: "JOBS", + forumLabel: "FORUMS", + projectLabel: "PROJECTS", + bankWalletLabel: "PORTAFOGLI", + bankClaimLabel: "UBI CLAIMS", + voteLabel: "VOTES", + contactLabel: "CONTACTS", + pubLabel: "PUBS", + cvLabel: "CV", submit: "Invia", - subjectLabel: "Subject", - editProfile: "Edit Avatar", + subjectLabel: "Oggetto", + editProfile: "Modifica avatar", editProfileDescription: "", profileName: "Nome", profileImage: "Immagine Avatar", profileDescription: "Descrizione", hashtagDescription: - "Posts from inhabitants in your network that reference this #hashtag, sorted by recency.", - rebuildName: "Rebuild database", + "Post dagli abitanti nella tua rete che fanno riferimento a questo #hashtag, ordinati per data.", + rebuildName: "Ricostruisci database", wallet: "Portafoglio", walletAddress: "Indirizzo", walletAmount: "Importo", - walletAddressLine: ({ address }) => `Address: ${address}`, - walletAmountLine: ({ amount }) => `Amount: ${amount} ECO`, + walletAddressLine: ({ address }) => `Indirizzo: ${address}`, + walletAmountLine: ({ amount }) => `Importo: ${amount} ECO`, walletBack: "Indietro", - walletBalanceTitle: "Balance", + walletBalanceTitle: "Saldo", walletWalletSendTitle: "Invia", walletReceiveTitle: "Ricevi", - walletHistoryTitle: "History", + walletHistoryTitle: "Cronologia", walletBalanceLine: ({ balance }) => `${balance} ECO`, - walletCnfrs: "Cnfrs", + walletCnfrs: "Conf.", walletConfirm: "Conferma", - walletDescription: "Manage your digital assets, including sending and receiving ECOin, viewing your balance, and accessing your transaction history.", + walletDescription: "Gestisci i tuoi asset digitali, incluso inviare e ricevere ECOin, visualizzare il saldo e accedere alla cronologia delle transazioni.", walletDate: "Data", - walletFee: "Fee (The higher the fee, the faster your transaction will be processed)", - walletFeeLine: ({ fee }) => `Fee: ECO ${fee}`, - walletHistory: "History", + walletFee: "Commissione (più alta è la commissione, più veloce sarà l'elaborazione della transazione)", + walletFeeLine: ({ fee }) => `Commissione: ECO ${fee}`, + walletHistory: "Cronologia", walletReceive: "Ricevi", walletReset: "Ripristina", walletSend: "Invia", walletStatus: "Stato", walletDisconnected: [ - "ECOin ", - strong("wallet disconnected"), - ". Check ", - a({ href: '/settings' }, "your settings"), - " or connection status.", - ], - walletSentToLine: ({ destination, amount }) => `Sent ECO ${amount} to ${destination}`, + "Portafoglio ECOin ", + strong("disconnesso"), + ". Controlla ", + a({ href: '/settings' }, "le tue impostazioni"), + " o lo stato della connessione.", + ], + walletSentToLine: ({ destination, amount }) => `Inviati ECO ${amount} a ${destination}`, walletSettingsTitle: "Portafoglio", - walletSettingsDescription: "Integrate Oasis with your ECOin wallet.", - walletSettingsDocLink: "ECOin installation guide", + walletSettingsDescription: "Integra Oasis con il tuo portafoglio ECOin.", + walletSettingsDocLink: "Guida all'installazione di ECOin", walletStatusMessages: { - invalid_amount: "Invalid amount", - invalid_dest: "Invalid destination address", - invalid_fee: "Invalid fee", - validation_errors: "Validation errors", - send_tx_success: "Transaction successful", + invalid_amount: "Importo non valido", + invalid_dest: "Indirizzo di destinazione non valido", + invalid_fee: "Commissione non valida", + validation_errors: "Errori di validazione", + send_tx_success: "Transazione completata", }, walletTitle: "Portafoglio", - walletTotalCostLine: ({ totalCost }) => `Total cost: ECO ${totalCost}`, - walletTransactionId: "Transaction ID", - walletTxId: "Tx ID", + walletTotalCostLine: ({ totalCost }) => `Costo totale: ECO ${totalCost}`, + walletTransactionId: "ID transazione", + walletTxId: "ID Tx", walletType: "Tipo", - walletUser: "Username", + walletUser: "Nome utente", walletPass: "Password", - walletConfiguration: "Set wallet", - //cipher + walletConfiguration: "Imposta portafoglio", cipher: "Crittografia", cipherTitle: "Crittografia", - cipherDescription: "Encrypt and decrypt your text symmetrically (using a shared password).", - randomPassword: "Random Password", - cipherEncryptTitle: "Encrypt Text", - cipherEncryptDescription: "Enter text to encrypt", - cipherTextLabel: "Text to Encrypt", - cipherTextPlaceholder: "Enter text to encrypt...", - cipherPasswordLabel: "Set password (min 32 characters long) to encrypt your text", - cipherPasswordPlaceholder: "Enter a password...", - cipherEncryptButton: "Encrypt", - cipherDecryptTitle: "Decrypt Text", - cipherDecryptDescription: "Enter text to decrypt", - cipherEncryptedMessageLabel: "Encrypted Text", - cipherDecryptedMessageLabel: "Decrypted Text", - cipherPasswordUsedLabel: "Password used to encrypt (keep it!)", - cipherEncryptedTextPlaceholder: "Enter the encrypted text...", + cipherDescription: "Crittografa e decifra il tuo testo simmetricamente (usando una password condivisa).", + randomPassword: "Password casuale", + cipherEncryptTitle: "Crittografa testo", + cipherEncryptDescription: "Inserisci il testo da crittografare", + cipherTextLabel: "Testo da crittografare", + cipherTextPlaceholder: "Inserisci il testo da crittografare...", + cipherPasswordLabel: "Imposta una password (minimo 32 caratteri) per crittografare il testo", + cipherPasswordDecryptLabel: "Imposta una password (minimo 32 caratteri) per decifrare il testo", + cipherPasswordPlaceholder: "Inserisci una password...", + cipherEncryptButton: "Crittografa", + cipherDecryptTitle: "Decifra testo", + cipherDecryptDescription: "Inserisci il testo da decifrare", + cipherEncryptedMessageLabel: "Testo crittografato", + cipherDecryptedMessageLabel: "Testo decifrato", + cipherPasswordUsedLabel: "Password usata per crittografare (conservala!)", + cipherEncryptedTextPlaceholder: "Inserisci il testo crittografato...", cipherIvLabel: "IV", - cipherIvPlaceholder: "Enter the initialization vector...", - cipherDecryptButton: "Decrypt", + cipherIvPlaceholder: "Inserisci il vettore di inizializzazione...", + cipherDecryptButton: "Decifra", password: "Password", - text: "Text", - encryptedText: "Encrypted Text", - iv: "Initialization Vector (IV)", - encryptTitle: "Encrypt your text", - encryptDescription: "Enter the text you want to encrypt and provide a password.", - encryptButton: "Encrypt", - decryptTitle: "Decrypt your text", - decryptDescription: "Enter the encrypted text and provide the same password used for encryption.", - decryptButton: "Decrypt", - passwordLengthError: "Password must be at least 32 characters long.", - missingFieldsError: "Text, password or IV not provided.", - encryptionError: "Error encrypting text.", - decryptionError: "Error decrypting text.", - //bookmarking + text: "Testo", + encryptedText: "Testo crittografato", + iv: "Vettore di inizializzazione (IV)", + encryptTitle: "Crittografa il tuo testo", + encryptDescription: "Inserisci il testo che vuoi crittografare e fornisci una password.", + encryptButton: "Crittografa", + decryptTitle: "Decifra il tuo testo", + decryptDescription: "Inserisci il testo crittografato e fornisci la stessa password usata per la crittografia.", + decryptButton: "Decifra", + passwordLengthError: "La password deve avere almeno 32 caratteri.", + missingFieldsError: "Testo, password o IV non forniti.", + encryptionError: "Errore durante la crittografia del testo.", + decryptionError: "Errore durante la decifratura del testo.", bookmarkTitle: "Segnalibri", - bookmarkDescription: "Discover and manage bookmarks in your network.", + bookmarkDescription: "Scopri e gestisci i segnalibri nella tua rete.", bookmarkAllSectionTitle: "Segnalibri", - bookmarkMineSectionTitle: "Your Bookmarks", - bookmarkRecentSectionTitle: "Recent Bookmarks", - bookmarkTopSectionTitle: "Top Bookmarks", + bookmarkMineSectionTitle: "I tuoi segnalibri", + bookmarkRecentSectionTitle: "Segnalibri recenti", + bookmarkTopSectionTitle: "Segnalibri più votati", bookmarkFavoritesSectionTitle: "Preferiti", - bookmarkCreateSectionTitle: "Create Bookmark", - bookmarkUpdateSectionTitle: "Update Bookmark", - bookmarkFilterAll: "ALL", - bookmarkFilterMine: "MINE", + bookmarkCreateSectionTitle: "Crea segnalibro", + bookmarkUpdateSectionTitle: "Aggiorna segnalibro", + bookmarkFilterAll: "TUTTI", + bookmarkFilterMine: "MIEI", bookmarkFilterTop: "TOP", - bookmarkFilterFavorites: "FAVORITES", - bookmarkFilterRecent: "RECENT", - bookmarkCreateButton: "Create Bookmark", + bookmarkFilterFavorites: "PREFERITI", + bookmarkFilterRecent: "RECENTI", + bookmarkCreateButton: "Crea segnalibro", bookmarkUpdateButton: "Aggiorna", bookmarkDeleteButton: "Elimina", - bookmarkAddFavoriteButton: "Add favorite", - bookmarkRemoveFavoriteButton: "Remove favorite", + bookmarkAddFavoriteButton: "Aggiungi preferito", + bookmarkRemoveFavoriteButton: "Rimuovi preferito", bookmarkUrlLabel: "Link", bookmarkUrlPlaceholder: "https://example.com", bookmarkDescriptionLabel: "Descrizione", - bookmarkDescriptionPlaceholder: "Optional", + bookmarkDescriptionPlaceholder: "Opzionale", bookmarkTagsLabel: "Tag", - bookmarkTagsPlaceholder: "Enter tags separated by commas", + bookmarkTagsPlaceholder: "Inserisci tag separati da virgole", bookmarkCategoryLabel: "Categoria", - bookmarkCategoryPlaceholder: "Optional", - bookmarkLastVisitLabel: "Last Visit", - bookmarkSearchPlaceholder: "Search URL, tags, category, author...", - bookmarkSortRecent: "Most recent", - bookmarkSortOldest: "Oldest", - bookmarkSortTop: "Most voted", + bookmarkCategoryPlaceholder: "Opzionale", + bookmarkLastVisitLabel: "Ultima visita", + bookmarkSearchPlaceholder: "Cerca URL, tag, categoria, autore...", + bookmarkSortRecent: "Più recenti", + bookmarkSortOldest: "Più vecchi", + bookmarkSortTop: "Più votati", bookmarkSearchButton: "Cerca", - bookmarkUpdatedAt: "Updated", - bookmarkNoMatch: "No bookmarks match your search.", - noBookmarks: "No bookmarks available.", - noUrl: "No link", - noCategory: "No category", - noLastVisit: "No last visit", - //videos + bookmarkUpdatedAt: "Aggiornato", + bookmarkNoMatch: "Nessun segnalibro corrisponde alla ricerca.", + noBookmarks: "Nessun segnalibro disponibile.", + noUrl: "Nessun link", + noCategory: "Nessuna categoria", + noLastVisit: "Nessuna ultima visita", videoTitle: "Video", - videoDescription: "Explore and manage video content in your network.", + videoDescription: "Esplora e gestisci contenuti video nella tua rete.", videoPluginTitle: "Titolo", videoPluginDescription: "Descrizione", - videoMineSectionTitle: "Your Videos", - videoCreateSectionTitle: "Upload Video", - videoUpdateSectionTitle: "Update Video", + videoMineSectionTitle: "I tuoi video", + videoCreateSectionTitle: "Carica video", + videoUpdateSectionTitle: "Aggiorna video", videoAllSectionTitle: "Video", - videoRecentSectionTitle: "Recent Videos", - videoTopSectionTitle: "Top Videos", + videoRecentSectionTitle: "Video recenti", + videoTopSectionTitle: "Video più votati", videoFavoritesSectionTitle: "Preferiti", - videoFilterAll: "ALL", - videoFilterMine: "MINE", - videoFilterRecent: "RECENT", + videoFilterAll: "TUTTI", + videoFilterMine: "MIEI", + videoFilterRecent: "RECENTI", videoFilterTop: "TOP", - videoFilterFavorites: "FAVORITES", - videoCreateButton: "Upload Video", + videoFilterFavorites: "PREFERITI", + videoCreateButton: "Carica video", videoUpdateButton: "Aggiorna", videoDeleteButton: "Elimina", - videoAddFavoriteButton: "Add favorite", - videoRemoveFavoriteButton: "Remove favorite", - videoFileLabel: "Select a video file (.mp4, .webm, .ogv, .mov)", + videoAddFavoriteButton: "Aggiungi preferito", + videoRemoveFavoriteButton: "Rimuovi preferito", + videoFileLabel: "Seleziona un file video (.mp4, .webm, .ogv, .mov)", videoTagsLabel: "Tag", - videoTagsPlaceholder: "Enter tags separated by commas", + videoTagsPlaceholder: "Inserisci tag separati da virgole", videoTitleLabel: "Titolo", - videoTitlePlaceholder: "Optional", + videoTitlePlaceholder: "Opzionale", videoDescriptionLabel: "Descrizione", - videoDescriptionPlaceholder: "Optional", - videoNoFile: "No video file provided", - noVideos: "No videos available.", - videoSearchPlaceholder: "Search title, tags, author...", - videoSortRecent: "Most recent", - videoSortOldest: "Oldest", - videoSortTop: "Most voted", + videoDescriptionPlaceholder: "Opzionale", + videoNoFile: "Nessun file video fornito", + noVideos: "Nessun video disponibile.", + videoSearchPlaceholder: "Cerca titolo, tag, autore...", + videoSortRecent: "Più recenti", + videoSortOldest: "Più vecchi", + videoSortTop: "Più votati", videoSearchButton: "Cerca", videoMessageAuthorButton: "PM", - videoUpdatedAt: "Updated", - videoNoMatch: "No videos match your search.", - //documents + videoUpdatedAt: "Aggiornato", + videoNoMatch: "Nessun video corrisponde alla ricerca.", documentTitle: "Documenti", - documentDescription: "Discover and manage documents in your network.", + documentDescription: "Scopri e gestisci documenti nella tua rete.", documentAllSectionTitle: "Documenti", - documentMineSectionTitle: "Your Documents", - documentRecentSectionTitle: "Recent Documents", - documentTopSectionTitle: "Top Documents", + documentMineSectionTitle: "I tuoi documenti", + documentRecentSectionTitle: "Documenti recenti", + documentTopSectionTitle: "Documenti più votati", documentFavoritesSectionTitle: "Preferiti", - documentCreateSectionTitle: "Upload Document", - documentUpdateSectionTitle: "Edit Document", - documentFilterAll: "ALL", - documentFilterMine: "MINE", - documentFilterRecent: "RECENT", + documentCreateSectionTitle: "Carica documento", + documentUpdateSectionTitle: "Modifica documento", + documentFilterAll: "TUTTI", + documentFilterMine: "MIEI", + documentFilterRecent: "RECENTI", documentFilterTop: "TOP", - documentFilterFavorites: "FAVORITES", - documentCreateButton: "Upload Document", + documentFilterFavorites: "PREFERITI", + documentCreateButton: "Carica documento", documentUpdateButton: "Aggiorna", documentDeleteButton: "Elimina", - documentAddFavoriteButton: "Add favorite", - documentRemoveFavoriteButton: "Remove from favorites", + documentAddFavoriteButton: "Aggiungi preferito", + documentRemoveFavoriteButton: "Rimuovi dai preferiti", documentMessageAuthorButton: "PM", - documentFileLabel: "Upload Document (.pdf)", + documentFileLabel: "Carica documento (.pdf)", documentTagsLabel: "Tag", - documentTagsPlaceholder: "Enter tags separated by commas", + documentTagsPlaceholder: "Inserisci tag separati da virgole", documentTitleLabel: "Titolo", - documentTitlePlaceholder: "Optional", + documentTitlePlaceholder: "Opzionale", documentDescriptionLabel: "Descrizione", - documentDescriptionPlaceholder: "Optional", - documentNoFile: "No file.", - noDocuments: "No documents available.", - documentSearchPlaceholder: "Search title, tags, description, author...", - documentSortRecent: "Most recent", - documentSortOldest: "Oldest", - documentSortTop: "Most voted", + documentDescriptionPlaceholder: "Opzionale", + documentNoFile: "Nessun file.", + noDocuments: "Nessun documento disponibile.", + documentSearchPlaceholder: "Cerca titolo, tag, descrizione, autore...", + documentSortRecent: "Più recenti", + documentSortOldest: "Più vecchi", + documentSortTop: "Più votati", documentSearchButton: "Cerca", - documentNoMatch: "No documents match your search.", - documentUpdatedAt: "Updated", - //audios + documentNoMatch: "Nessun documento corrisponde alla ricerca.", + documentUpdatedAt: "Aggiornato", audioTitle: "Audio", - audioDescription: "Explore and manage audio content in your network.", + audioDescription: "Esplora e gestisci contenuti audio nella tua rete.", audioPluginTitle: "Titolo", audioPluginDescription: "Descrizione", - audioMineSectionTitle: "Your Audios", - audioCreateSectionTitle: "Upload Audio", - audioUpdateSectionTitle: "Update Audio", + audioMineSectionTitle: "I tuoi audio", + audioCreateSectionTitle: "Carica audio", + audioUpdateSectionTitle: "Aggiorna audio", audioAllSectionTitle: "Audio", - audioRecentSectionTitle: "Recent Audios", - audioTopSectionTitle: "Top Audios", - audioFilterAll: "ALL", - audioFilterMine: "MINE", - audioFilterRecent: "RECENT", + audioRecentSectionTitle: "Audio recenti", + audioTopSectionTitle: "Audio più votati", + audioFilterAll: "TUTTI", + audioFilterMine: "MIEI", + audioFilterRecent: "RECENTI", audioFilterTop: "TOP", - audioCreateButton: "Upload Audio", + audioCreateButton: "Carica audio", audioUpdateButton: "Aggiorna", audioDeleteButton: "Elimina", - audioAddFavoriteButton: "Add favorite", - audioRemoveFavoriteButton: "Remove favorite", - audioFileLabel: "Select an audio file (.mp3, .wav, .ogg)", + audioAddFavoriteButton: "Aggiungi preferito", + audioRemoveFavoriteButton: "Rimuovi preferito", + audioFileLabel: "Seleziona un file audio (.mp3, .wav, .ogg)", audioTagsLabel: "Tag", - audioTagsPlaceholder: "Enter tags separated by commas", + audioTagsPlaceholder: "Inserisci tag separati da virgole", audioTitleLabel: "Titolo", - audioTitlePlaceholder: "Optional", + audioTitlePlaceholder: "Opzionale", audioDescriptionLabel: "Descrizione", - audioDescriptionPlaceholder: "Optional", - audioNoFile: "No audio file provided", - noAudios: "No audios available.", - audioSearchPlaceholder: "Search title, tags, author...", - audioSortRecent: "Most recent", - audioSortOldest: "Oldest", - audioSortTop: "Most voted", + audioDescriptionPlaceholder: "Opzionale", + audioNoFile: "Nessun file audio fornito", + noAudios: "Nessun audio disponibile.", + audioSearchPlaceholder: "Cerca titolo, tag, autore...", + audioSortRecent: "Più recenti", + audioSortOldest: "Più vecchi", + audioSortTop: "Più votati", audioSearchButton: "Cerca", audioMessageAuthorButton: "PM", - audioUpdatedAt: "Updated", - audioNoMatch: "No audios match your search.", + audioUpdatedAt: "Aggiornato", + audioNoMatch: "Nessun audio corrisponde alla ricerca.", audioFavoritesSectionTitle: "Preferiti", - audioFilterFavorites: "FAVORITES", - //favorites + audioFilterFavorites: "PREFERITI", favoritesTitle: "Preferiti", - favoritesDescription: "All your favorited media in one place.", - favoritesFilterAll: "ALL", - favoritesFilterRecent: "RECENT", - favoritesFilterAudios: "AUDIOS", - favoritesFilterBookmarks: "BOOKMARKS", - favoritesFilterDocuments: "DOCUMENTS", - favoritesFilterImages: "IMAGES", - favoritesFilterVideos: "VIDEOS", - favoritesRemoveButton: "Remove from favorites", - favoritesNoItems: "No favorites yet.", - //inhabitants + favoritesDescription: "Tutti i tuoi contenuti preferiti in un unico posto.", + favoritesFilterAll: "TUTTI", + favoritesFilterRecent: "RECENTI", + favoritesFilterAudios: "AUDIO", + favoritesFilterBookmarks: "SEGNALIBRI", + favoritesFilterDocuments: "DOCUMENTI", + favoritesFilterImages: "IMMAGINI", + favoritesFilterMaps: "MAPPE", + favoritesFilterPads: "PADS", + favoritesFilterChats: "CHAT", + favoritesFilterCalendars: "CALENDARI", + favoritesFilterVideos: "VIDEO", + favoritesRemoveButton: "Rimuovi dai preferiti", + favoritesNoItems: "Nessun preferito ancora.", yourContacts: "I tuoi contatti", allInhabitants: "Abitanti", - allCVs: "All CVs", - discoverPeople: "Discover inhabitants in your network.", - allInhabitantsButton: "ALL", - contactsButton: "SUPPORTS", - CVsButton: "CVs", + allCVs: "Tutti i CV", + discoverPeople: "Scopri abitanti nella tua rete.", + allInhabitantsButton: "TUTTI", + contactsButton: "SUPPORTATI", + CVsButton: "CV", matchSkills: "Abbina competenze", - matchSkillsButton: "MATCH SKILLS", - suggestedButton: "SUGGESTED", - searchInhabitantsPlaceholder: "FILTER inhabitants BY NAME …", - filterLocation: "FILTER inhabitants BY LOCATION …", - filterLanguage: "FILTER inhabitants BY LANGUAGE …", - filterSkills: "FILTER inhabitants BY SKILLS …", + matchSkillsButton: "ABBINA COMPETENZE", + suggestedButton: "SUGGERITI", + searchInhabitantsPlaceholder: "FILTRA abitanti PER NOME …", + filterLocation: "FILTRA abitanti PER POSIZIONE …", + filterLanguage: "FILTRA abitanti PER LINGUA …", + filterSkills: "FILTRA abitanti PER COMPETENZE …", applyFilters: "Applica filtri", locationLabel: "Posizione", - languagesLabel: "Languages", + languagesLabel: "Lingue", skillsLabel: "Competenze", commonSkills: "Competenze comuni", mutualFollowers: "Follower reciproci", - latestInteractions: "Latest Interactions", - viewAvatar: "View Avatar", - viewCV: "View CV", + latestInteractions: "Ultime interazioni", + viewAvatar: "Vedi avatar", + viewCV: "Vedi CV", suggestedSectionTitle: "Suggeriti", topkarmaSectionTitle: "Top Karma", topactivitySectionTitle: "Top Attività", blockedSectionTitle: "Bloccati", - gallerySectionTitle: "GALLERY", - blockedButton: "BLOCKED", - blockedLabel: "Blocked User", - inhabitantviewDetails: "View Details", - viewDetails: "View Details", + gallerySectionTitle: "GALLERIA", + blockedButton: "BLOCCATI", + blockedLabel: "Abitante bloccato", + inhabitantviewDetails: "Vedi dettagli", + viewDetails: "Vedi dettagli", keepReading: "Continua a leggere...", oasisId: "ID", - noInhabitantsFound: "No inhabitants found, yet.", + noInhabitantsFound: "Nessun abitante trovato ancora.", inhabitantActivityLevel: "Livello di attività", - //parliament + deviceLabel: "Dispositivo", parliamentTitle: "Parlamento", - parliamentDescription: "Explore forms of government and collective management laws.", - parliamentFilterGovernment: "GOVERMENT", - parliamentFilterCandidatures: "CANDIDATURES", - parliamentFilterProposals: "PROPOSALS", - parliamentFilterLaws: "LAWS", - parliamentFilterHistorical: "HISTORICAL", - parliamentFilterLeaders: "LEADERS", - parliamentFilterRules: "RULES", - parliamentGovernmentCard: "Current Government", - parliamentGovMethod: "GOVERMENT METHOD", - parliamentActorInPowerInhabitant: 'INHABITANT RULING', - parliamentActorInPowerTribe: 'TRIBE RULING', - parliamentHistoricalGovernmentsTitle: 'GOVERMENTS', - parliamentHistoricalElectionsTitle: 'ELECTION CYCLES', - parliamentHistoricalLawsTitle: 'HISTORICAL', - parliamentHistoricalLeadersTitle: 'LEADERS', - parliamentThCycles: 'CYCLES', - parliamentThTimesInPower: 'RULING', - parliamentThTotalCandidatures: 'CANDIDATURES', - parliamentThProposed: 'LAWS PROPOSED', - parliamentThApproved: 'LAWS APPROVED', - parliamentThDeclined: 'LAWS DECLINED', - parliamentThDiscarded: 'LAWS DISCARDED', - parliamentVotesReceived: "VOTES RECIEVED", - parliamentMembers: "MEMBERS", - parliamentLegSince: "CYCLE SINCE", - parliamentLegEnd: "CYCLE END", - parliamentPoliciesProposal: "LAWS PROPOSAL", - parliamentPoliciesApproved: "LAWS APPROVED", - parliamentPoliciesDeclined: "LAWS DECLINED", - parliamentPoliciesDiscarded: "LAWS DISCARDED", - parliamentEfficiency: "% EFFICIENCY", - parliamentFilterRevocations: 'REVOCATIONS', - parliamentRevocationFormTitle: 'Revocate Law', - parliamentRevocationLaw: 'Law', - parliamentRevocationTitle: 'Title', - parliamentRevocationReasons: 'Reasons', - parliamentRevocationPublish: 'Publish Revocation', - parliamentCurrentRevocationsTitle: 'Current Revocations', - parliamentFutureRevocationsTitle: 'Future Revocations', - parliamentPoliciesRevocated: 'LAWS REVOCATED', - parliamentPoliciesTitle: 'HISTORICAL', - parliamentLawsTitle: 'LAWS APPROVED', - parliamentRulesRevocations: 'Any approved law can be revocate using current goverment method ruling.', - parliamentNoStableGov: "No goverment choosen, yet.", - parliamentNoGovernments: "There are not governments, yet.", - parliamentCandidatureFormTitle: "Propose Candidature", - parliamentCandidatureId: "Candidature", - parliamentCandidatureIdPh: "Oasis ID (@...) or Tribe name", - parliamentCandidatureSlogan: "Slogan (max 140 chars)", - parliamentCandidatureSloganPh: "A short motto", - parliamentCandidatureMethod: "Method", - parliamentCandidatureProposeBtn: "Publish Candidature", + parliamentDescription: "Esplora forme di governo e leggi di gestione collettiva.", + parliamentFilterGovernment: "GOVERNO", + parliamentFilterCandidatures: "CANDIDATURE", + parliamentFilterProposals: "PROPOSTE", + parliamentFilterLaws: "LEGGI", + parliamentFilterHistorical: "STORICO", + parliamentFilterLeaders: "LEADER", + parliamentFilterRules: "REGOLE", + parliamentGovernmentCard: "Governo attuale", + parliamentGovMethod: "METODO DI GOVERNO", + parliamentActorInPowerInhabitant: 'ABITANTE AL POTERE', + parliamentActorInPowerTribe: 'TRIBÙ AL POTERE', + parliamentHistoricalGovernmentsTitle: 'GOVERNI', + parliamentHistoricalElectionsTitle: 'CICLI ELETTORALI', + parliamentHistoricalLawsTitle: 'STORICO', + parliamentHistoricalLeadersTitle: 'LEADER', + parliamentThCycles: 'CICLI', + parliamentThTimesInPower: 'AL POTERE', + parliamentThTotalCandidatures: 'CANDIDATURE', + parliamentThProposed: 'LEGGI PROPOSTE', + parliamentThApproved: 'LEGGI APPROVATE', + parliamentThDeclined: 'LEGGI RESPINTE', + parliamentThDiscarded: 'LEGGI SCARTATE', + parliamentVotesReceived: "VOTI RICEVUTI", + parliamentMembers: "MEMBRI", + parliamentLegSince: "CICLO DA", + parliamentLegEnd: "FINE CICLO", + parliamentPoliciesProposal: "PROPOSTE DI LEGGE", + parliamentPoliciesApproved: "LEGGI APPROVATE", + parliamentPoliciesDeclined: "LEGGI RESPINTE", + parliamentPoliciesDiscarded: "LEGGI SCARTATE", + parliamentEfficiency: "% EFFICIENZA", + parliamentFilterRevocations: 'REVOCHE', + parliamentRevocationFormTitle: 'Revoca legge', + parliamentRevocationLaw: 'Legge', + parliamentRevocationTitle: 'Titolo', + parliamentRevocationReasons: 'Motivazioni', + parliamentRevocationPublish: 'Pubblica revoca', + parliamentCurrentRevocationsTitle: 'Revoche attuali', + parliamentFutureRevocationsTitle: 'Revoche future', + parliamentPoliciesRevocated: 'LEGGI REVOCATE', + parliamentPoliciesTitle: 'STORICO', + parliamentLawsTitle: 'LEGGI APPROVATE', + parliamentRulesRevocations: 'Qualsiasi legge approvata può essere revocata usando il metodo di governo attuale.', + parliamentNoStableGov: "Nessun governo scelto ancora.", + parliamentNoGovernments: "Non ci sono ancora governi.", + parliamentCandidatureFormTitle: "Proponi candidatura", + parliamentCandidatureId: "Candidatura", + parliamentCandidatureIdPh: "Oasis ID (@...) o nome tribù", + parliamentCandidatureSlogan: "Slogan (max 140 caratteri)", + parliamentCandidatureSloganPh: "Un breve motto", + parliamentCandidatureMethod: "Metodo", + parliamentCandidatureProposeBtn: "Pubblica candidatura", parliamentThType: "Tipo", parliamentThId: "ID", - parliamentThDate: "Proposal date", + parliamentThDate: "Data proposta", parliamentThSlogan: "Slogan", - parliamentThMethod: "Method", + parliamentThMethod: "Metodo", parliamentThKarma: "Karma", - parliamentThSince: "Profile since", - parliamentThVotes: "Votes recieved", - parliamentThVoteAction: "Vote", - parliamentTypeUser: "Inhabitant", - parliamentTypeTribe: "Tribe", - parliamentVoteBtn: "Vote", - parliamentProposalFormTitle: "Propose Law", + parliamentThSince: "Profilo dal", + parliamentThVotes: "Voti ricevuti", + parliamentThVoteAction: "Vota", + parliamentTypeUser: "Abitante", + parliamentTypeTribe: "Tribù", + parliamentVoteBtn: "Vota", + parliamentProposalFormTitle: "Proponi legge", parliamentProposalTitle: "Titolo", - parliamentProposalDescription: "Description (≤1000)", - parliamentProposalPublish: "Publish Proposal", - parliamentOpenVote: "Open vote", - parliamentFinalize: "Finalize", - parliamentDeadline: "Deadline", + parliamentProposalDescription: "Descrizione (≤1000)", + parliamentProposalPublish: "Pubblica proposta", + parliamentOpenVote: "Apri votazione", + parliamentFinalize: "Finalizza", + parliamentDeadline: "Scadenza", parliamentStatus: "Stato", - parliamentNoProposals: "There are not law proposals, yet.", - parliamentNoLaws: "There are not laws approved, yet.", - parliamentLawMethod: "Method", - parliamentLawProposer: "Proposed by", - parliamentLawVotes: "YES/Total", - parliamentLawEnacted: "Enacted at", - parliamentMethodDEMOCRACY: "Democracy", - parliamentMethodMAJORITY: "Majority (80%)", - parliamentMethodMINORITY: "Minority (20%)", - parliamentMethodDICTATORSHIP: "Dictatorship", - parliamentMethodKARMATOCRACY: "Karmatocracy", - parliamentMethodANARCHY: "Anarchy", + parliamentNoProposals: "Non ci sono ancora proposte di legge.", + parliamentNoLaws: "Non ci sono ancora leggi approvate.", + parliamentLawMethod: "Metodo", + parliamentLawProposer: "Proposto da", + parliamentLawVotes: "SÌ/Totale", + parliamentLawEnacted: "Emanata il", + parliamentMethodDEMOCRACY: "Democrazia", + parliamentMethodMAJORITY: "Maggioranza (80%)", + parliamentMethodMINORITY: "Minoranza (20%)", + parliamentMethodDICTATORSHIP: "Dittatura", + parliamentMethodKARMATOCRACY: "Karmatocrazia", + parliamentMethodANARCHY: "Anarchia", parliamentThId: "ID", - parliamentThProposalDate: "Proposal date", + parliamentThProposalDate: "Data proposta", parliamentThMethod: "Method", parliamentThKarma: "Karma", - parliamentThSupports: "Supports", - parliamentThVote: "Vote", - parliamentCurrentProposalsTitle: "Current Proposals", - parliamentVotesSlashTotal: "Votes/Total", - parliamentVotesNeeded: "Votes Needed", - parliamentFutureLawsTitle: "Future Laws", - parliamentNoFutureLaws: "No future laws, yet.", - parliamentVoteAction: "Vote", - parliamentLeadersTitle: "Leaders", + parliamentThSupports: "Supporti", + parliamentThVote: "Voto", + parliamentCurrentProposalsTitle: "Proposte attuali", + parliamentVotesSlashTotal: "Voti/Totale", + parliamentVotesNeeded: "Voti necessari", + parliamentFutureLawsTitle: "Leggi future", + parliamentNoFutureLaws: "Nessuna legge futura, per ora.", + parliamentVoteAction: "Vota", + parliamentLeadersTitle: "Leader", parliamentThLeader: "AVATAR", - parliamentPopulation: "Population", + parliamentPopulation: "Popolazione", parliamentThType: "Tipo", - parliamentThInPower: "In power", - parliamentThPresented: "CANDIDATURES", - parliamentNoLeaders: "No leaders, yet.", - typeParliament: "PARLIAMENT", - typeParliamentCandidature: "Parliament · Candidature", - typeParliamentTerm: "Parliament · Term", - typeParliamentProposal: "Parliament · Proposal", - typeParliamentLaw: "Parliament · New Law", + parliamentThInPower: "Al potere", + parliamentThPresented: "CANDIDATURE", + parliamentNoLeaders: "Nessun leader, per ora.", + typeParliament: "PARLAMENTO", + typeParliamentCandidature: "Parlamento · Candidatura", + typeParliamentTerm: "Parlamento · Mandato", + typeParliamentProposal: "Parlamento · Proposta", + typeParliamentLaw: "Parlamento · Nuova legge", typeCourts: "Tribunali", - parliamentLawQuestion: "Question", + parliamentLawQuestion: "Domanda", parliamentStatus: "Stato", - parliamentCandidaturesListTitle: "List of Candidatures", - parliamentElectionsEnd: "Election end", - parliamentTimeRemaining: "Time remaining", - parliamentCurrentLeader: "Winning candidature", - parliamentNoLeader: "No winning candidature, yet.", - parliamentElectionsStatusTitle: "Next Government", - parliamentElectionsStart: "Election start", - parliamentProposalDeadlineLabel: "Deadline", - parliamentProposalTimeLeft: "Time left", - parliamentProposalOnTrack: "On track to pass", - parliamentProposalOffTrack: "Not enough support yet", - parliamentRulesTitle: "How Parliament works", - parliamentRulesIntro: "Election resolve every 2 months; candidatures are continuous and reset when a government is chosen.", - parliamentRulesCandidates: "Any inhabitant may propose themself, another inhabitant, or any tribe. Each inhabitant can propose up to 3 candidatures per cycle; duplicates in the same cycle are rejected.", - parliamentRulesElection: "The winner is the candidature with the most votes at resolution time.", - parliamentRulesTies: "Tie-break order: highest inhabitant karma; if tied, oldest profile; if still tied, earliest proposal; then lexicographic by ID.", - parliamentRulesFallback: "If no one votes, the latest proposed candidature wins. If there are no candidatures, a random tribe is selected.", - parliamentRulesTerm: "The Government tab shows the current government and stats.", - parliamentRulesMethods: "Forms: Anarchy (simple majority), Democracy (50%+1), Majority (80%), Minority (20%), Karmatocracy (highest-karma proposals), Dictatorship (instant approval).", - parliamentRulesAnarchy: "Anarchy is the default mode: if no candidature is elected at resolution, Anarchy is proclaimed. Under Anarchy, any inhabitant can propose laws.", - parliamentRulesProposals: "If you are the ruling inhabitant or a member of the ruling tribe, you can publish law proposals. Non-dictatorship methods create a public vote.", - parliamentRulesLimit: "Each inhabitant may publish at most 3 law proposals per cycle.", - parliamentRulesLaws: "When a proposal meets its threshold, it becomes a Law and appears in the Laws tab with its enactment date.", - parliamentRulesHistorical: "In the Historical tab you can see every government cycle that has occurred and data about its management.", - parliamentRulesLeaders: "In the Leaders tab you can see a ranking of inhabitants/tribes that have governed (or stood as candidates), ordered by efficiency.", - parliamentProposalVoteStatusLabel: "Vote status", - parliamentProposalOnTrackYes: "Threshold reached", - parliamentProposalOnTrackNo: "Below threshold", - //courts + parliamentCandidaturesListTitle: "Lista delle candidature", + parliamentElectionsEnd: "Fine elezioni", + parliamentTimeRemaining: "Tempo rimanente", + parliamentCurrentLeader: "Candidatura vincente", + parliamentNoLeader: "Nessuna candidatura vincente, per ora.", + parliamentElectionsStatusTitle: "Prossimo governo", + parliamentElectionsStart: "Inizio elezioni", + parliamentProposalDeadlineLabel: "Scadenza", + parliamentProposalTimeLeft: "Tempo rimanente", + parliamentProposalOnTrack: "In linea per l'approvazione", + parliamentProposalOffTrack: "Supporto insufficiente", + parliamentRulesTitle: "Come funziona il Parlamento", + parliamentRulesIntro: "Le elezioni si risolvono ogni 2 mesi; le candidature sono continue e si azzerano quando un governo viene scelto.", + parliamentRulesCandidates: "Qualsiasi abitante può proporre se stesso, un altro abitante o qualsiasi tribù. Ogni abitante può proporre fino a 3 candidature per ciclo; i duplicati nello stesso ciclo vengono rifiutati.", + parliamentRulesElection: "Il vincitore è la candidatura con il maggior numero di voti al momento della risoluzione.", + parliamentRulesTies: "Ordine di spareggio: karma più alto dell'abitante; in caso di parità, profilo più vecchio; se ancora in parità, proposta più antica; poi ordine lessicografico per ID.", + parliamentRulesFallback: "Se nessuno vota, vince l'ultima candidatura proposta. Se non ci sono candidature, viene selezionata una tribù casuale.", + parliamentRulesTerm: "La scheda Governo mostra il governo attuale e le statistiche.", + parliamentRulesMethods: "Forme: Anarchia (maggioranza semplice), Democrazia (50%+1), Maggioranza (80%), Minoranza (20%), Karmatocrazia (proposte con karma più alto), Dittatura (approvazione istantanea).", + parliamentRulesAnarchy: "L'Anarchia è la modalità predefinita: se nessuna candidatura viene eletta alla risoluzione, viene proclamata l'Anarchia. In Anarchia, qualsiasi abitante può proporre leggi.", + parliamentRulesProposals: "Se sei l'abitante al potere o un membro della tribù al potere, puoi pubblicare proposte di legge. I metodi non dittatoriali creano una votazione pubblica.", + parliamentRulesLimit: "Ogni abitante può pubblicare al massimo 3 proposte di legge per ciclo.", + parliamentRulesLaws: "Quando una proposta raggiunge la soglia, diventa una Legge e appare nella scheda Leggi con la data di emanazione.", + parliamentRulesHistorical: "Nella scheda Storico puoi vedere ogni ciclo di governo avvenuto e i dati sulla sua gestione.", + parliamentRulesLeaders: "Nella scheda Leader puoi vedere una classifica degli abitanti/tribù che hanno governato (o si sono candidati), ordinata per efficienza.", + parliamentProposalVoteStatusLabel: "Stato del voto", + parliamentProposalOnTrackYes: "Soglia raggiunta", + parliamentProposalOnTrackNo: "Sotto la soglia", courtsTitle: "Tribunali", - courtsDescription: "Explore forms of conflict resolution and collective justice management.", - courtsFilterCases: "CASES", - courtsFilterMyCases: "MINE", - courtsFilterJudges: "JUDGES", - courtsFilterHistory: "HISTORY", - courtsFilterRules: "RULES", - courtsFilterOpenCase: "OPEN CASE", - courtsCaseFormTitle: "Open Case", + courtsDescription: "Esplora forme di risoluzione dei conflitti e gestione della giustizia collettiva.", + courtsFilterCases: "CASI", + courtsFilterMyCases: "MIEI", + courtsFilterJudges: "GIUDICI", + courtsFilterHistory: "STORICO", + courtsFilterRules: "REGOLE", + courtsFilterOpenCase: "APRI CASO", + courtsCaseFormTitle: "Apri caso", courtsCaseTitle: "Titolo", - courtsCaseRespondent: "Accused / Respondent", - courtsCaseRespondentPh: "Oasis ID (@...) or Tribe name", - courtsCaseMediatorsAccuser: "Mediators (accuser)", - courtsCaseMediatorsPh: "Oasis IDs, separated by comma", - courtsCaseMethod: "Resolution method", - courtsCaseDescription: "Description (max 1000 chars.)", - courtsCaseEvidenceTitle: "Case evidence", - courtsCaseEvidenceHelp: "Attach images, audios, documents (PDF) or videos that support your case.", - courtsCaseSubmit: "File Case", - courtsNominateJudge: "Nominate Judge", - courtsJudgeId: "Judge", - courtsJudgeIdPh: "Oasis ID (@...) or Inhabitant name", - courtsNominateBtn: "Nominate", - courtsAddEvidence: "Add evidence", - courtsEvidenceText: "Text", + courtsCaseRespondent: "Accusato / Convenuto", + courtsCaseRespondentPh: "Oasis ID (@...) o nome tribù", + courtsCaseMediatorsAccuser: "Mediatori (accusatore)", + courtsCaseMediatorsPh: "Oasis ID, separati da virgola", + courtsCaseMethod: "Metodo di risoluzione", + courtsCaseDescription: "Descrizione (max 1000 caratteri)", + courtsCaseEvidenceTitle: "Prove del caso", + courtsCaseEvidenceHelp: "Allega immagini, audio, documenti (PDF) o video a supporto del tuo caso.", + courtsCaseSubmit: "Presenta caso", + courtsNominateJudge: "Nomina giudice", + courtsJudgeId: "Giudice", + courtsJudgeIdPh: "Oasis ID (@...) o nome abitante", + courtsNominateBtn: "Nomina", + courtsAddEvidence: "Aggiungi prova", + courtsEvidenceText: "Testo", courtsEvidenceLink: "Link", courtsEvidenceLinkPh: "https://…", - courtsEvidenceSubmit: "Attach", - courtsAnswerTitle: "Answer the claim", - courtsAnswerText: "Response brief", - courtsAnswerSubmit: "Send response", - courtsStanceDENY: "Deny", - courtsStanceADMIT: "Admit", - courtsStancePARTIAL: "Partial", - courtsVerdictTitle: "Issue verdict", - courtsVerdictResult: "Result", - courtsVerdictOrders: "Orders", - courtsVerdictOrdersPh: "Actions, deadlines, restorative steps ...", - courtsIssueVerdict: "Issue verdict", - courtsMediationPropose: "Propose settlement", - courtsSettlementText: "Terms", - courtsSettlementProposeBtn: "Propose", - courtsNominationsTitle: "Judiciary nominations", - courtsThJudge: "Judge", - courtsThSupports: "Supports", + courtsEvidenceSubmit: "Allega", + courtsAnswerTitle: "Rispondi alla denuncia", + courtsAnswerText: "Memoria di risposta", + courtsAnswerSubmit: "Invia risposta", + courtsStanceDENY: "Nega", + courtsStanceADMIT: "Ammetti", + courtsStancePARTIAL: "Parziale", + courtsVerdictTitle: "Emetti verdetto", + courtsVerdictResult: "Risultato", + courtsVerdictOrders: "Ordini", + courtsVerdictOrdersPh: "Azioni, scadenze, misure riparative ...", + courtsIssueVerdict: "Emetti verdetto", + courtsMediationPropose: "Proponi accordo", + courtsSettlementText: "Condizioni", + courtsSettlementProposeBtn: "Proponi", + courtsNominationsTitle: "Nomine giudiziarie", + courtsThJudge: "Giudice", + courtsThSupports: "Supporti", courtsThDate: "Data", - courtsThVote: "Vote", - courtsNoNominations: "No nominations yet.", - courtsAccuser: "Accuser", - courtsRespondent: "Respondent", + courtsThVote: "Voto", + courtsNoNominations: "Nessuna nomina ancora.", + courtsAccuser: "Accusatore", + courtsRespondent: "Convenuto", courtsThStatus: "Stato", - courtsThAnswerBy: "Answer by", - courtsThEvidenceBy: "Evidence by", - courtsThDecisionBy: "Decision by", - courtsThCase: "Case", - courtsThCreatedAt: "Start date", - courtsThActions: "Actions", - courtsCaseMediatorsRespondentTitle: "Add defence mediators", - courtsCaseMediatorsRespondent: "Mediators (defence)", - courtsMediatorsAccuserLabel: "Mediators (accuser)", - courtsMediatorsRespondentLabel: "Mediators (defence)", - courtsMediatorsSubmit: "Save mediators", - courtsVotesNeeded: "Votes needed", - courtsVotesSlashTotal: "YES / TOTAL", - courtsOpenVote: "Open vote", - courtsPublicPrefLabel: "Visibility after resolution", - courtsPublicPrefYes: "I agree this case can be fully public", - courtsPublicPrefNo: "I prefer to keep the details private", - courtsPublicPrefSubmit: "Save visibility preference", - courtsNoCases: "No cases.", - courtsNoMyCases: "You have no conflicts yet.", - courtsNoHistory: "No recorded trials yet.", - courtsMethodJUDGE: "Judge", - courtsMethodDICTATOR: "Dictator", - courtsMethodPOPULAR: "Popular", - courtsMethodMEDIATION: "Mediation", - courtsMethodKARMATOCRACY: "Karmatocracy", - courtsMethod: "Method", - courtsRulesTitle: "How Courts work", - courtsRulesIntro: "Courts are a community-run process to resolve conflicts and promote restorative justice. Dialogue, clear evidence, and proportional remedies are prioritized.", - courtsRulesLifecycle: "Process: 1) Open case 2) Select method 3) Submit evidence 4) Hearing and deliberation 5) Verdict and remedy 6) Compliance and closure 7) Appeal (if applicable).", - courtsRulesRoles: "Accuser: opens the case. Defence: accused person or tribe. Method: mechanism chosen by the community to facilitate, assess evidence, and issue a verdict. Witness: provides testimony or evidence. Mediators: neutral people invited by the accuser and/or the defence, with access to all details, who help de-escalate the conflict and co-create agreements.", - courtsRulesEvidence: "Description up to 1000 characters. Attach relevant and lawful images, audio, video, and PDF documents. Do not share sensitive private data without consent.", - courtsRulesDeliberation: "Hearings may be public or private. Judges ensure respect, request clarifications, and may discard irrelevant or unlawful material.", - courtsRulesVerdict: "Restoration is prioritized: apologies, mediation agreements, content moderation, temporary restrictions, or other proportional measures. The reasoning must be recorded.", - courtsRulesAppeals: "Appeal: allowed when there is new evidence or a clear procedural error. Must be filed within 7 days unless otherwise stated.", - courtsRulesPrivacy: "Respect privacy and safety. Doxing, hate, or threats are removed. Judges may edit or seal parts of the record to protect people at risk.", - courtsRulesMisconduct: "Harassment, manipulation, or fabricated evidence may lead to immediate negative resolution.", - courtsRulesGlossary: "Case: record of a conflict. Evidence: materials that support claims. Verdict: decision with remedy. Appeal: request to review the verdict.", - courtsFilterActions: "ACTIONS", - courtsNoActions: "No pending actions for your role.", - courtsCaseTitlePlaceholder: "Short description of the conflict", - courtsCaseSeverity: "Severity", - courtsCaseSeverityNone: "No severity tag", + courtsThAnswerBy: "Risposta di", + courtsThEvidenceBy: "Prove di", + courtsThDecisionBy: "Decisione di", + courtsThCase: "Caso", + courtsThCreatedAt: "Data di inizio", + courtsThActions: "Azioni", + courtsCaseMediatorsRespondentTitle: "Aggiungi mediatori della difesa", + courtsCaseMediatorsRespondent: "Mediatori (difesa)", + courtsMediatorsAccuserLabel: "Mediatori (accusatore)", + courtsMediatorsRespondentLabel: "Mediatori (difesa)", + courtsMediatorsSubmit: "Salva mediatori", + courtsVotesNeeded: "Voti necessari", + courtsVotesSlashTotal: "SÌ / TOTALE", + courtsOpenVote: "Apri votazione", + courtsPublicPrefLabel: "Visibilità dopo la risoluzione", + courtsPublicPrefYes: "Acconsento che questo caso sia completamente pubblico", + courtsPublicPrefNo: "Preferisco mantenere i dettagli privati", + courtsPublicPrefSubmit: "Salva preferenza di visibilità", + courtsNoCases: "Nessun caso.", + courtsNoMyCases: "Non hai ancora conflitti.", + courtsNoHistory: "Nessun processo registrato ancora.", + courtsMethodJUDGE: "Giudice", + courtsMethodDICTATOR: "Dittatore", + courtsMethodPOPULAR: "Popolare", + courtsMethodMEDIATION: "Mediazione", + courtsMethodKARMATOCRACY: "Karmatocrazia", + courtsMethod: "Metodo", + courtsRulesTitle: "Come funzionano i Tribunali", + courtsRulesIntro: "I Tribunali sono un processo gestito dalla comunità per risolvere i conflitti e promuovere la giustizia riparativa. Dialogo, prove chiare e rimedi proporzionali hanno la priorità.", + courtsRulesLifecycle: "Processo: 1) Apri caso 2) Seleziona metodo 3) Presenta prove 4) Udienza e deliberazione 5) Verdetto e rimedio 6) Adempimento e chiusura 7) Appello (se applicabile).", + courtsRulesRoles: "Accusatore: apre il caso. Difesa: persona o tribù accusata. Metodo: meccanismo scelto dalla comunità per facilitare, valutare le prove ed emettere un verdetto. Testimone: fornisce testimonianza o prove. Mediatori: persone neutrali invitate dall'accusatore e/o dalla difesa, con accesso a tutti i dettagli, che aiutano a de-escalare il conflitto e co-creare accordi.", + courtsRulesEvidence: "Descrizione fino a 1000 caratteri. Allega immagini, audio, video e documenti PDF pertinenti e leciti. Non condividere dati privati sensibili senza consenso.", + courtsRulesDeliberation: "Le udienze possono essere pubbliche o private. I giudici assicurano il rispetto, richiedono chiarimenti e possono scartare materiale irrilevante o illecito.", + courtsRulesVerdict: "La riparazione è prioritaria: scuse, accordi di mediazione, moderazione dei contenuti, restrizioni temporanee o altre misure proporzionali. La motivazione deve essere registrata.", + courtsRulesAppeals: "Appello: consentito quando ci sono nuove prove o un chiaro errore procedurale. Deve essere presentato entro 7 giorni salvo diversa indicazione.", + courtsRulesPrivacy: "Rispetta la privacy e la sicurezza. Doxing, odio o minacce vengono rimossi. I giudici possono modificare o sigillare parti del verbale per proteggere le persone a rischio.", + courtsRulesMisconduct: "Molestie, manipolazione o prove fabbricate possono portare a una risoluzione negativa immediata.", + courtsRulesGlossary: "Caso: registro di un conflitto. Prove: materiali a supporto delle affermazioni. Verdetto: decisione con rimedio. Appello: richiesta di revisione del verdetto.", + courtsFilterActions: "AZIONI", + courtsNoActions: "Nessuna azione in sospeso per il tuo ruolo.", + courtsCaseTitlePlaceholder: "Breve descrizione del conflitto", + courtsCaseSeverity: "Gravità", + courtsCaseSeverityNone: "Nessun livello di gravità", courtsCaseSeverityLOW: "Bassa", courtsCaseSeverityMEDIUM: "Media", courtsCaseSeverityHIGH: "Alta", - courtsCaseSeverityCRITICAL: "Critical", - courtsCaseSubject: "Topic", - courtsCaseSubjectNone: "No topic tag", - courtsCaseSubjectBEHAVIOUR: "Behaviour", + courtsCaseSeverityCRITICAL: "Critico", + courtsCaseSubject: "Argomento", + courtsCaseSubjectNone: "Nessun argomento", + courtsCaseSubjectBEHAVIOUR: "Comportamento", courtsCaseSubjectCONTENT: "Contenuto", - courtsCaseSubjectGOVERNANCE: "Governance / rules", - courtsCaseSubjectFINANCIAL: "Financial / resources", - courtsCaseSubjectOTHER: "Other", - courtsHiddenRespondent: "Hidden (only visible to involved roles).", - courtsThRole: "Role", - courtsRoleAccuser: "Accuser", - courtsRoleDefence: "Defence", - courtsRoleMediator: "Mediator", - courtsRoleJudge: "Judge", - courtsRoleDictator: "Dictator", - courtsAssignJudgeTitle: "Choose judge", - courtsAssignJudgeBtn: "Choose judge", - //trending + courtsCaseSubjectGOVERNANCE: "Governance / regole", + courtsCaseSubjectFINANCIAL: "Finanze / risorse", + courtsCaseSubjectOTHER: "Altro", + courtsHiddenRespondent: "Nascosto (visibile solo ai ruoli coinvolti).", + courtsThRole: "Ruolo", + courtsRoleAccuser: "Accusatore", + courtsRoleDefence: "Difesa", + courtsRoleMediator: "Mediatore", + courtsRoleJudge: "Giudice", + courtsRoleDictator: "Dittatore", + courtsAssignJudgeTitle: "Scegli giudice", + courtsAssignJudgeBtn: "Scegli giudice", trendingTitle: "Tendenze", - exploreTrending: "Explore the most popular content in your network.", - ALLButton: "ALL", - MINEButton: "MINE", - RECENTButton: "RECENT", + exploreTrending: "Esplora i contenuti più popolari nella tua rete.", + ALLButton: "TUTTI", + MINEButton: "MIEI", + RECENTButton: "RECENTI", TOPButton: "TOP", - bookmarkButton: "BOOKMARKS", - transferButton: "TRANSFERS", - eventButton: "EVENTS", - taskButton: "TASKS", - votesButton: "VOTATIONS", - reportButton: "REPORTS", + bookmarkButton: "SEGNALIBRI", + transferButton: "TRASFERIMENTI", + eventButton: "EVENTI", + taskButton: "COMPITI", + votesButton: "VOTAZIONI", + reportButton: "SEGNALAZIONI", feedButton: "FEED", - marketButton: "MARKET", - imageButton: "IMAGES", - audioButton: "AUDIOS", - videoButton: "VIDEOS", - documentButton: "DOCUMENTS", + marketButton: "MERCATO", + imageButton: "IMMAGINI", + audioButton: "AUDIO", + videoButton: "VIDEO", + documentButton: "DOCUMENTI", + torrentButton: "TORRENT", author: "Di", createdAtLabel: "Creato il", - totalVotes: "Total Votes", - noTrendingFound: "No trending content found.", - noContentMessage: "No trending content available, yet.", + totalVotes: "Voti totali", + noTrendingFound: "Nessun contenuto di tendenza trovato.", + noContentMessage: "Nessun contenuto di tendenza disponibile.", trendingDescription: "Descrizione", trendingDate: "Data", trendingLocation: "Posizione", @@ -981,765 +974,754 @@ module.exports = { trendingStatus: "Stato", trendingFrom: "Da", trendingTo: "A", - trendingConcept: "Concept", + trendingConcept: "Concetto", trendingAmount: "Importo", - trendingDeadline: "Deadline", - trendingItemStatus: "Item Status", - trendingTotalVotes: "Total Votes", - trendingTotalOpinions: "Total Opinions", - trendingNoContentMessage: "No trending content available, yet.", - trendingAuthor: "By", - trendingCreatedAtLabel: "Created At", - trendingTotalCount: "Total Count", - //tasks + trendingDeadline: "Scadenza", + trendingItemStatus: "Stato articolo", + trendingTotalVotes: "Voti totali", + trendingTotalOpinions: "Opinioni totali", + trendingNoContentMessage: "Nessun contenuto di tendenza disponibile.", + trendingAuthor: "Di", + trendingCreatedAtLabel: "Creato il", + trendingTotalCount: "Conteggio totale", tasksTitle: "Compiti", - tasksDescription: "Discover and manage tasks in your network.", + tasksDescription: "Scopri e gestisci compiti nella tua rete.", taskTitleLabel: "Titolo", taskDescriptionLabel: "Descrizione", - taskStartTimeLabel: "Start Time", - taskEndTimeLabel: "End Time", + taskStartTimeLabel: "Ora di inizio", + taskEndTimeLabel: "Ora di fine", taskPriorityLabel: "Priorità", - taskPrioritySelect: "Select priority", - taskPriorityUrgent: "Urgent", + taskPrioritySelect: "Seleziona priorità", + taskPriorityUrgent: "Urgente", taskPriorityHigh: "Alta", taskPriorityMedium: "Media", taskPriorityLow: "Bassa", taskLocationLabel: "Posizione", taskTagsLabel: "Tag", - taskVisibilityLabel: "Visibility", - taskPublic: "public", - taskPrivate: "private", - taskCreatedAt: "Created At", - taskBy: "By", + taskVisibilityLabel: "Visibilità", + taskPublic: "pubblico", + taskPrivate: "privato", + taskCreatedAt: "Creato il", + taskBy: "Di", taskStatus: "Stato", taskStatusOpen: "Apri", - taskStatusInProgress: "In Progress", - taskStatusClosed: "Closed", - taskAssignedTo: "Assigned to", - taskAssignees: "Assignees", - taskAssignButton: "Assign to Me", - taskUnassignButton: "Unassign", - taskCreateButton: "Create Task", + taskStatusInProgress: "In corso", + taskStatusClosed: "Chiuso", + taskAssignedTo: "Assegnato a", + taskAssignees: "Assegnatari", + taskAssignButton: "Assegna a me", + taskUnassignButton: "Rimuovi assegnazione", + taskCreateButton: "Crea compito", taskUpdateButton: "Aggiorna", taskDeleteButton: "Elimina", - taskFilterAll: "ALL", - taskFilterMine: "MINE", - taskFilterOpen: "OPEN", - taskFilterInProgress: "IN-PROGRESS", - taskFilterClosed: "CLOSED", - taskFilterAssigned: "ASSIGNED", - taskFilterArchived: "ARCHIVED", - taskFilterUrgent: "URGENT", - taskFilterHigh: "HIGH", - taskFilterMedium: "MEDIUM", - taskFilterLow: "LOW", + taskFilterAll: "TUTTI", + taskFilterMine: "MIEI", + taskFilterOpen: "APERTI", + taskFilterInProgress: "IN CORSO", + taskFilterClosed: "CHIUSI", + taskFilterAssigned: "ASSEGNATI", + taskFilterArchived: "ARCHIVIATI", + taskFilterUrgent: "URGENTE", + taskFilterHigh: "ALTA", + taskFilterMedium: "MEDIA", + taskFilterLow: "BASSA", taskAllSectionTitle: "Compiti", - taskMineSectionTitle: "Your Tasks", - taskCreateSectionTitle: "Create Task", + taskMineSectionTitle: "I tuoi compiti", + taskCreateSectionTitle: "Crea compito", taskUpdateSectionTitle: "Aggiorna", - taskOpenTitle: "Open Tasks", - taskInProgressTitle: "In Progress Tasks", - taskClosedTitle: "Closed Tasks", - taskAssignedTitle: "Assigned Tasks", - taskArchivedTitle: "Archived Tasks", - taskPublicTitle: "Public Tasks", - taskPrivateTitle: "Private Tasks", - notasks: "No tasks available.", - noLocation: "No location specified", - taskSetStatus: "Set Status", - //events + taskOpenTitle: "Compiti aperti", + taskInProgressTitle: "Compiti in corso", + taskClosedTitle: "Compiti chiusi", + taskAssignedTitle: "Compiti assegnati", + taskArchivedTitle: "Compiti archiviati", + taskPublicTitle: "Compiti pubblici", + taskPrivateTitle: "Compiti privati", + notasks: "Nessun compito disponibile.", + noLocation: "Nessuna posizione specificata", + taskSetStatus: "Imposta stato", eventTitle: "Eventi", eventDateLabel: "Data", eventsTitle: "Eventi", - eventsDescription: "Discover and manage events in your network.", + eventsDescription: "Scopri e gestisci eventi nella tua rete.", eventDescription: "Descrizione", eventPrice: "Prezzo", eventStatus: "Stato", - eventOrganizer: "Organizer", + eventOrganizer: "Organizzatore", eventAllSectionTitle: "Eventi", - eventMineSectionTitle: "Your Events", - eventArchivedTitle: "Archived Events", - eventCreateSectionTitle: "Create Event", - eventUpdateSectionTitle: "Update Event", + eventMineSectionTitle: "I tuoi eventi", + eventArchivedTitle: "Eventi archiviati", + eventCreateSectionTitle: "Crea evento", + eventUpdateSectionTitle: "Aggiorna evento", eventDeleteButton: "Elimina", - eventCreateButton: "Create Event", + eventCreateButton: "Crea evento", eventTitleLabel: "Titolo", eventDescriptionLabel: "Descrizione", - eventDescriptionPlaceholder: "Enter event description...", + eventDescriptionPlaceholder: "Inserisci descrizione evento...", eventUpdateButton: "Aggiorna", - eventAttendeesLabel: "Attendees", - eventAttendeesPlaceholder: "Enter attendees, separated by commas...", + eventAttendeesLabel: "Partecipanti", + eventAttendeesPlaceholder: "Inserisci partecipanti, separati da virgole...", eventTagsLabel: "Tag", - eventTagsPlaceholder: "Enter event tags, separated by commas...", + eventTagsPlaceholder: "Inserisci tag evento, separati da virgole...", eventTags: "Tag", eventPriceLabel: "Prezzo", eventUrlLabel: "URL", - eventAttendees: "Attendees", - noAttendees: "No attendees yet", - eventCreatedAt: "Created At", + eventAttendees: "Partecipanti", + noAttendees: "Nessun partecipante", + eventCreatedAt: "Creato il", eventLocation: "Posizione", eventLocationLabel: "Posizione", - eventNoLocation: "No location specified", - eventNoURL: "No URL specified", - eventBy: "By", - noevents: "No events available.", + eventNoLocation: "Nessuna posizione specificata", + eventNoURL: "Nessun URL specificato", + eventBy: "Di", + noevents: "Nessun evento disponibile.", eventDate: "Data", eventDateFormat: "DD:MM:YYYY HH:mm", - eventAttendButton: "Attend Event", - eventUnattendButton: "Unattend Event", - eventCreatedBy: "Created By", - eventAttendeesCount: "Attendees Count", - eventCreatedByYou: "You created this event", - eventAttendConfirmation: "You are now attending this event", - eventUnattendConfirmation: "You are no longer attending this event", - eventFilterAll: "ALL", - eventFilterMine: "MINE", - eventFilterToday: "TODAY", - eventFilterWeek: "THIS WEEK", - eventFilterMonth: "THIS MONTH", - eventFilterYear: "THIS YEAR", - eventFilterArchived: "ARCHIVED", - eventTodayTitle: "Today's Events", - eventThisWeekTitle: "This Week's Events", - eventThisMonthTitle: "This Month's Events", - eventThisYearTitle: "This Year's Events", - eventPrivacyLabel: "Visibility", + eventAttendButton: "Partecipa all'evento", + eventUnattendButton: "Lascia l'evento", + eventCreatedBy: "Creato da", + eventAttendeesCount: "Numero partecipanti", + eventCreatedByYou: "Hai creato questo evento", + eventAttendConfirmation: "Stai partecipando a questo evento", + eventUnattendConfirmation: "Non partecipi più a questo evento", + eventFilterAll: "TUTTI", + eventFilterMine: "MIEI", + eventFilterToday: "OGGI", + eventFilterWeek: "QUESTA SETTIMANA", + eventFilterMonth: "QUESTO MESE", + eventFilterYear: "QUEST'ANNO", + eventFilterArchived: "ARCHIVIATI", + eventTodayTitle: "Eventi di oggi", + eventThisWeekTitle: "Eventi di questa settimana", + eventThisMonthTitle: "Eventi di questo mese", + eventThisYearTitle: "Eventi di quest'anno", + eventPrivacyLabel: "Visibilità", eventPublic: "Pubblico", eventPrivate: "Privato", - eventPublicTitle: "Public Events", - eventNoPrice: "Free Event", - eventNoImage: "No image uploaded", - eventAttendConfirmation: "You are now attending this event", - eventUnattendConfirmation: "You are no longer attending this event", - eventAttended: "Attended", - eventUnattended: "Unattended", - eventStatusOpen: "Apri", - eventStatusClosed: "Closed", - //tags + eventPublicTitle: "Eventi pubblici", + eventNoPrice: "Evento gratuito", + eventNoImage: "Nessuna immagine caricata", + eventAttendConfirmation: "Stai partecipando a questo evento", + eventUnattendConfirmation: "Non partecipi più a questo evento", + eventAttended: "Partecipato", + eventUnattended: "Non partecipato", + eventStatusOpen: "Aperto", + eventStatusClosed: "Chiuso", tagsTitle: "Tag", - tagsDescription: "Discover and explore taxonomy patterns in your network.", + tagsDescription: "Scopri ed esplora i pattern tassonomici nella tua rete.", tagsAllSectionTitle: "Tag", - tagsTopSectionTitle: "Top Tags", - tagsCloudSectionTitle: "Tags Cloud", - tagsFilterAll: "ALL", + tagsTopSectionTitle: "Tag più usati", + tagsCloudSectionTitle: "Nuvola di tag", + tagsFilterAll: "TUTTI", tagsFilterTop: "TOP", - tagsFilterCloud: "CLOUD", - tagsNoItems: "No tags available.", + tagsFilterCloud: "NUVOLA", + tagsNoItems: "Nessun tag disponibile.", tagsTableHeaderTag: "TAG/LINK:", - tagsTableHeaderCount: "COUNTER:", - //transfers + tagsTableHeaderCount: "CONTATORE:", transfersTitle: "Trasferimenti", - transfersDescription: "Discover and manage transfers in your network.", + transfersDescription: "Scopri e gestisci trasferimenti nella tua rete.", transfersFrom: "Da", transfersTo: "A", - transfersFilterAll: "ALL", - transfersFilterMine: "MINE", - transfersFilterMarket: "MARKET", + transfersFilterAll: "TUTTI", + transfersFilterMine: "MIEI", + transfersFilterUBI: "RBU", + transfersFilterMarket: "MERCATO", transfersFilterTop: "TOP", - transfersFilterPending: "PENDING", - transfersFilterUnconfirmed: "UNCONFIRMED", - transfersFilterClosed: "CLOSED", - transfersFilterDiscarded: "DISCARDED", - transfersCreateButton: "Create Transfer", + transfersFilterPending: "IN ATTESA", + transfersFilterUnconfirmed: "NON CONFERMATI", + transfersFilterClosed: "CHIUSI", + transfersFilterDiscarded: "SCARTATI", + transfersCreateButton: "Crea trasferimento", transfersUpdateButton: "Aggiorna", transfersDeleteButton: "Elimina", transfersToUser: "Oasis ID", - transfersToUserValidation: "Valid Oasis ID, e.g. @…=.ed25519", - transfersConcept: "Concept", + transfersToUserValidation: "Oasis ID valido, es. @…=.ed25519", + transfersConcept: "Concetto", transfersAmount: "Importo", - transfersDeadline: "Deadline", + transfersDeadline: "Scadenza", transfersTags: "Tag", transfersStatus: "Stato", - transfersStatusUnconfirmed: "UNCONFIRMED", - transfersStatusClosed: "CLOSED", - transfersStatusDiscarded: "DISCARDED", - transfersCreatedAt: "Created At", - transfersConfirmations: "CONFIRMATIONS", - transfersConfirmButton: "Confirm Transfer", - transfersNoItems: "No transfers found.", - transfersMineSectionTitle: "Your Transfers", - transfersMarketSectionTitle: "Market Transfers", - transfersTopSectionTitle: "Top Transfers", - transfersPendingSectionTitle: "Pending Transfers", - transfersUnconfirmedSectionTitle: "Unconfirmed Transfers", - transfersClosedSectionTitle: "Closed Transfers", - transfersDiscardedSectionTitle: "Discarded Transfers", + transfersStatusUnconfirmed: "NON CONFERMATO", + transfersStatusClosed: "CHIUSO", + transfersStatusDiscarded: "SCARTATO", + transfersCreatedAt: "Creato il", + transfersConfirmations: "CONFERME", + transfersConfirmButton: "Conferma trasferimento", + transfersNoItems: "Nessun trasferimento trovato.", + transfersMineSectionTitle: "I tuoi trasferimenti", + transfersUBISectionTitle: "Trasferimenti RBU", + transfersMarketSectionTitle: "Trasferimenti di mercato", + transfersTopSectionTitle: "Trasferimenti principali", + transfersPendingSectionTitle: "Trasferimenti in attesa", + transfersUnconfirmedSectionTitle: "Trasferimenti non confermati", + transfersClosedSectionTitle: "Trasferimenti chiusi", + transfersDiscardedSectionTitle: "Trasferimenti scartati", + transfersCreateSectionTitle: "Crea trasferimento", transfersAllSectionTitle: "Trasferimenti", transfersFilterFavs: "Preferiti", - transfersFavsSectionTitle: "Favorite transfers", + transfersFavsSectionTitle: "Trasferimenti preferiti", transfersSearchLabel: "Cerca", - transfersSearchPlaceholder: "Search concept, tags, users...", - transfersMinAmountLabel: "Min amount", - transfersMaxAmountLabel: "Max amount", - transfersSortLabel: "Sort by", - transfersSortRecent: "Most recent", - transfersSortAmount: "Highest amount", - transfersSortDeadline: "Closest deadline", + transfersSearchPlaceholder: "Cerca concetto, tag, abitanti...", + transfersMinAmountLabel: "Importo minimo", + transfersMaxAmountLabel: "Importo massimo", + transfersSortLabel: "Ordina per", + transfersSortRecent: "Più recenti", + transfersSortAmount: "Importo più alto", + transfersSortDeadline: "Scadenza più vicina", transfersSearchButton: "Cerca", - transfersFavoriteButton: "Favorite", - transfersUnfavoriteButton: "Unfavorite", - transfersMessageUserButton: "Message", - transfersExpiringSoonBadge: "EXPIRING", - transfersExpiredBadge: "EXPIRED", - transfersUpdatedAt: "Updated", - transfersNoMatch: "No transfers match your search.", - //votations (voting/polls) - votationsTitle: "Votations", - votationsDescription: "Discover and manage votations in your network.", - voteMineSectionTitle: "Your Votations", - voteCreateSectionTitle: "Create Votation", + transfersFavoriteButton: "Preferito", + transfersUnfavoriteButton: "Rimuovi preferito", + transfersMessageUserButton: "Messaggio", + transfersExpiringSoonBadge: "IN SCADENZA", + transfersExpiredBadge: "SCADUTO", + transfersUpdatedAt: "Aggiornato", + transfersNoMatch: "Nessun trasferimento corrisponde alla ricerca.", + votationsTitle: "Votazioni", + votationsDescription: "Scopri e gestisci le votazioni nella tua rete.", + voteMineSectionTitle: "Le tue votazioni", + voteCreateSectionTitle: "Crea votazione", voteUpdateSectionTitle: "Aggiorna", - voteOpenTitle: "Open Votations", - voteClosedTitle: "Closed Votations", - voteAllSectionTitle: "Votations", - voteCreateButton: "Create Votation", + voteOpenTitle: "Votazioni aperte", + voteClosedTitle: "Votazioni chiuse", + voteAllSectionTitle: "Votazioni", + voteCreateButton: "Crea votazione", voteUpdateButton: "Aggiorna", voteDeleteButton: "Elimina", - voteOptionYes: "YES", + voteOptionYes: "SÌ", voteOptionNo: "NO", - voteOptionAbstention: "ABSTENTION", - voteConfused: "CONFUSED", - voteFollowMajority: "FOLLOW MAJORITY", - voteNotInterested: "NOT INTERESTED", - voteFilterAll: "ALL", - voteFilterMine: "MINE", - voteFilterOpen: "OPEN", - voteFilterClosed: "CLOSED", - voteQuestionLabel: "Question", - voteDeadlineLabel: "Deadline", - voteOptionsLabel: "Your vote", - voteBreakdown: "Breakdown", - voteFinalResult: "RESULT", + voteOptionAbstention: "ASTENSIONE", + voteConfused: "CONFUSO", + voteFollowMajority: "SEGUI MAGGIORANZA", + voteNotInterested: "NON INTERESSATO", + voteFilterAll: "TUTTI", + voteFilterMine: "MIEI", + voteFilterOpen: "APERTE", + voteFilterClosed: "CHIUSE", + voteQuestionLabel: "Domanda", + voteDeadlineLabel: "Scadenza", + voteOptionsLabel: "Il tuo voto", + voteBreakdown: "Dettaglio", + voteFinalResult: "RISULTATO", voteTagsLabel: "Tag", - voteDeadline: "Deadline", + voteDeadline: "Scadenza", voteStatus: "Stato", - voteTotalVotes: "Total Votes", + voteTotalVotes: "Voti totali", voteTags: "Tag", voteOpinions: "Opinioni", - novotes: "No voting proposals available.", - voteBy: "By", - voteCreatedAt: "Created At", - voteNoQuestion: "No question provided", - voteUnknownCreator: "Unknown Creator", - voteUnknownDate: "Unknown Date", - errorVoteNotFound: "Vote not found", - errorAlreadyVoted: "You have already opined.", - errorVoteClosedCannotEdit: "You cannot edit a closed votation", - errorVoteDeadlinePassed: "The deadline for this votation has passed", - errorRetrievingVote: "Error retrieving vote", - errorCreatingVote: "Error creating vote", - errorVoteAlreadyVoted: "Cannot edit after opinion has been cast", - errorDeletingOldVote: "Error deleting old opinion", - errorCreatingUpdatedVote: "Error creating updated opinion", - errorCreatingTombstone: "Error creating tombstone", - voteDetailSectionTitle: 'Vote details', - voteCommentsLabel: 'Comments', - voteCommentsForumButton: 'Open discussion', - voteCommentsSectionTitle: 'Open discussion', - voteNoCommentsYet: 'There are no comments yet. Be the first to reply.', - voteNewCommentPlaceholder: 'Write your comment here…', - voteNewCommentButton: 'Post comment', - voteNewCommentLabel: 'Add a comment', - //CV + novotes: "Nessuna proposta di voto disponibile.", + voteBy: "Di", + voteCreatedAt: "Creato il", + voteNoQuestion: "Nessuna domanda fornita", + voteUnknownCreator: "Creatore sconosciuto", + voteUnknownDate: "Data sconosciuta", + errorVoteNotFound: "Voto non trovato", + errorAlreadyVoted: "Hai già espresso un'opinione.", + errorVoteClosedCannotEdit: "Non puoi modificare una votazione chiusa", + errorVoteDeadlinePassed: "La scadenza per questa votazione è passata", + errorRetrievingVote: "Errore nel recupero del voto", + errorCreatingVote: "Errore nella creazione del voto", + errorVoteAlreadyVoted: "Non puoi modificare dopo aver espresso un'opinione", + errorDeletingOldVote: "Errore nell'eliminazione della vecchia opinione", + errorCreatingUpdatedVote: "Errore nella creazione dell'opinione aggiornata", + errorCreatingTombstone: "Errore nella creazione del tombstone", + voteDetailSectionTitle: 'Dettagli voto', + voteCommentsLabel: 'Commenti', + voteCommentsForumButton: 'Apri discussione', + voteCommentsSectionTitle: 'Apri discussione', + voteNoCommentsYet: 'Non ci sono ancora commenti. Sii il primo a rispondere.', + voteNewCommentPlaceholder: 'Scrivi il tuo commento qui…', + voteNewCommentButton: 'Pubblica commento', + voteNewCommentLabel: 'Aggiungi un commento', cvTitle: "Curriculum", cvLabel: "Curriculum Vitae (CV)", - cvEditSectionTitle: "Edit CV", - cvCreateSectionTitle: "Create CV", - cvDescription: "Manage and share your professional skills and information.", - cvNameLabel: "Full Name", - cvDescriptionLabel: "Summary", - cvPhotoLabel: "Photo", - cvPersonalExperiencesLabel: "Personal Experiences", - cvPersonalSkillsLabel: "Personal Skills (comma-separated)", - cvOasisExperiencesLabel: "Oasis Contribution Experiences", - cvOasisSkillsLabel: "Oasis Contribution Skills (comma-separated)", - cvEducationExperiencesLabel: "Educational Experiences", - cvEducationalSkillsLabel: "Educational Skills (comma-separated)", - cvProfessionalExperiencesLabel: "Professional Experiences", - cvProfessionalSkillsLabel: "Professional Skills (comma-separated)", - cvLanguagesLabel: "Languages", + cvEditSectionTitle: "Modifica CV", + cvCreateSectionTitle: "Crea CV", + cvDescription: "Gestisci e condividi le tue competenze e informazioni professionali.", + cvNameLabel: "Nome completo", + cvDescriptionLabel: "Riepilogo", + cvPhotoLabel: "Foto", + cvPersonalExperiencesLabel: "Esperienze personali", + cvPersonalSkillsLabel: "Competenze personali (separate da virgole)", + cvOasisExperiencesLabel: "Esperienze di contributo Oasis", + cvOasisSkillsLabel: "Competenze di contributo Oasis (separate da virgole)", + cvEducationExperiencesLabel: "Esperienze formative", + cvEducationalSkillsLabel: "Competenze formative (separate da virgole)", + cvProfessionalExperiencesLabel: "Esperienze professionali", + cvProfessionalSkillsLabel: "Competenze professionali (separate da virgole)", + cvLanguagesLabel: "Lingue", cvLocationLabel: "Posizione", cvStatusLabel: "Stato", - cvPreferencesLabel: "Preferences", - cvOasisContributorLabel: "Oasis Contributor", - cvPersonal: "Personal", - cvOasis: "Oasis Contributor (optional)", - cvOasisContributorView: "Oasis Contribution", - cvEducational: "Educational (optional)", - cvEducationalView: "Educational", - cvProfessional: "Professional (optional)", - cvProfessionalView: "Professional", - cvAvailability: "Availability (optional)", - cvAvailabilityView: "Availability", + cvPreferencesLabel: "Preferenze", + cvOasisContributorLabel: "Contributore Oasis", + cvPersonal: "Personale", + cvOasis: "Contributore Oasis (opzionale)", + cvOasisContributorView: "Contributo Oasis", + cvEducational: "Formazione (opzionale)", + cvEducationalView: "Formazione", + cvProfessional: "Professionale (opzionale)", + cvProfessionalView: "Professionale", + cvAvailability: "Disponibilità (opzionale)", + cvAvailabilityView: "Disponibilità", cvUpdateButton: "Aggiorna", - cvCreateButton: "Create CV", - cvContactLabel: "Contact", - cvCreatedAt: "Created At", - cvUpdatedAt: "Updated At", + cvCreateButton: "Crea CV", + cvContactLabel: "Contatto", + cvCreatedAt: "Creato il", + cvUpdatedAt: "Aggiornato il", cvEditButton: "Aggiorna", cvDeleteButton: "Elimina", - cvNoCV: "No CV found.", - // blog/post, - blogSubject: "Subject", - blogMessage: "Message", + cvNoCV: "Nessun CV trovato.", + blogSubject: "Oggetto", + blogMessage: "Messaggio", blogImage: "Carica media (max: 50MB)", blogPublish: "Anteprima", - noPopularMessages: "No popular messages published, yet", - //forum - forumTitle: "Forums", + noPopularMessages: "Nessun messaggio popolare pubblicato ancora", + forumTitle: "Forum", forumCategoryLabel: "Categoria", forumTitleLabel: "Titolo", - forumTitlePlaceholder: "Forum title...", - forumCreateButton: "Create forum", - forumCreateSectionTitle: "Create forum", - forumDescription: "Talk openly with other inhabitants in your network.", - forumFilterAll: "ALL", - forumFilterMine: "MINE", - forumFilterRecent: "RECENT", + forumTitlePlaceholder: "Titolo del forum...", + forumCreateButton: "Crea forum", + forumCreateSectionTitle: "Crea forum", + forumDescription: "Parla apertamente con altri abitanti nella tua rete.", + forumFilterAll: "TUTTI", + forumFilterMine: "MIEI", + forumFilterRecent: "RECENTI", forumFilterTop: "TOP", - forumMineSectionTitle: "Your Forums", - forumRecentSectionTitle: "Recent Forums", - forumAllSectionTitle: "Forums", + forumMineSectionTitle: "I tuoi forum", + forumRecentSectionTitle: "Forum recenti", + forumAllSectionTitle: "Forum", forumDeleteButton: "Elimina", - forumParticipants: "participants", - forumMessages: "messages", - forumLastMessage: "Last message", - forumMessageLabel: "Message", - forumMessagePlaceholder: "Write your message...", + forumParticipants: "partecipanti", + forumMessages: "messaggi", + forumLastMessage: "Ultimo messaggio", + forumMessageLabel: "Messaggio", + forumMessagePlaceholder: "Scrivi il tuo messaggio...", forumSendButton: "Invia", - forumVisitForum: "Visit Forum", - noForums: "No forums found.", - forumVisitButton: "Visit forum", - forumCatGENERAL: "General", + forumVisitForum: "Visita forum", + noForums: "Nessun forum trovato.", + forumVisitButton: "Visita forum", + forumCatGENERAL: "Generale", forumCatOASIS: "Oasis", forumCatLARP: "L.A.R.P.", - forumCatPOLITICS: "Politics", - forumCatTECH: "Tech", - forumCatSCIENCE: "Science", - forumCatMUSIC: "Music", - forumCatART: "Art", + forumCatPOLITICS: "Politica", + forumCatTECH: "Tecnologia", + forumCatSCIENCE: "Scienza", + forumCatMUSIC: "Musica", + forumCatART: "Arte", forumCatGAMING: "Gaming", - forumCatBOOKS: "Books", - forumCatFILMS: "Films", - forumCatPHILOSOPHY: "Philosophy", - forumCatSOCIETY: "Society", + forumCatBOOKS: "Libri", + forumCatFILMS: "Film", + forumCatPHILOSOPHY: "Filosofia", + forumCatSOCIETY: "Società", forumCatPRIVACY: "Privacy", forumCatCYBERWARFARE: "Cyberwarfare", - forumCatSURVIVALISM: "Survivalism", - //images + forumCatSURVIVALISM: "Survivalismo", imageTitle: "Immagini", - imageDescription: "Explore and manage image content in your network.", + imageDescription: "Esplora e gestisci immagini nella tua rete.", imagePluginTitle: "Titolo", imagePluginDescription: "Descrizione", - imageMineSectionTitle: "Your Images", - imageCreateSectionTitle: "Upload Image", - imageUpdateSectionTitle: "Update Image", + imageMineSectionTitle: "Le tue immagini", + imageCreateSectionTitle: "Carica immagine", + imageUpdateSectionTitle: "Aggiorna immagine", imageAllSectionTitle: "Immagini", - imageRecentSectionTitle: "Recent Images", - imageTopSectionTitle: "Top Images", + imageRecentSectionTitle: "Immagini recenti", + imageTopSectionTitle: "Immagini più votate", imageFavoritesSectionTitle: "Preferiti", imageGallerySectionTitle: "Galleria", - imageMemeSectionTitle: "Memes", - imageFilterAll: "ALL", - imageFilterMine: "MINE", - imageFilterRecent: "RECENT", + imageMemeSectionTitle: "Meme", + imageFilterAll: "TUTTE", + imageFilterMine: "MIE", + imageFilterRecent: "RECENTI", imageFilterTop: "TOP", - imageFilterFavorites: "FAVORITES", - imageFilterGallery: "GALLERY", - imageFilterMeme: "MEMES", - imageCreateButton: "Upload Image", + imageFilterFavorites: "PREFERITE", + imageFilterGallery: "GALLERIA", + imageFilterMeme: "MEME", + imageCreateButton: "Carica immagine", imageUpdateButton: "Aggiorna", imageDeleteButton: "Elimina", - imageAddFavoriteButton: "Add favorite", - imageRemoveFavoriteButton: "Remove favorite", - imageFileLabel: "Select an image file (.jpeg, .jpg, .png, .gif)", + imageAddFavoriteButton: "Aggiungi preferito", + imageRemoveFavoriteButton: "Rimuovi preferito", + imageFileLabel: "Seleziona un file immagine (.jpeg, .jpg, .png, .gif)", imageTagsLabel: "Tag", - imageTagsPlaceholder: "Enter tags separated by commas", + imageTagsPlaceholder: "Inserisci tag separati da virgole", imageTitleLabel: "Titolo", - imageTitlePlaceholder: "Optional", + imageTitlePlaceholder: "Opzionale", imageDescriptionLabel: "Descrizione", - imageDescriptionPlaceholder: "Optional", - imageMemeLabel: "Mark as MEME", - imageNoFile: "No image file provided", - noImages: "No images available.", - imageSearchPlaceholder: "Search title, tags, description, author...", - imageSortRecent: "Most recent", - imageSortOldest: "Oldest", - imageSortTop: "Most voted", + imageDescriptionPlaceholder: "Opzionale", + imageMemeLabel: "MEME?", + imageNoFile: "Nessun file immagine fornito", + noImages: "Nessuna immagine disponibile.", + imageSearchPlaceholder: "Cerca titolo, tag, descrizione, autore...", + imageSortRecent: "Più recenti", + imageSortOldest: "Più vecchie", + imageSortTop: "Più votate", imageSearchButton: "Cerca", - imageMessageAuthorButton: "Message", - imageUpdatedAt: "Updated", - imageNoMatch: "No images match your search.", - //feed + imageMessageAuthorButton: "Messaggio", + imageUpdatedAt: "Aggiornato", + imageNoMatch: "Nessuna immagine corrisponde alla ricerca.", feedTitle: "Feed", - createFeedTitle: "Create Feed", - createFeedButton: "Send Feed!", - feedPlaceholder: "What's happening? (max 280 characters)", - ALLButton: "Feeds", - MINEButton: "Your Feeds", - TODAYButton: "TODAY", - TOPButton: "Top Feeds", - CREATEButton: "Create Feed", - totalOpinions: "Total Opinions", + createFeedTitle: "Crea Feed", + createFeedButton: "Invia Feed!", + feedPlaceholder: "Cosa succede? (max 280 caratteri)", + ALLButton: "Feed", + MINEButton: "I tuoi Feed", + TODAYButton: "OGGI", + TOPButton: "Top Feed", + CREATEButton: "Crea Feed", + totalOpinions: "Opinioni totali", moreVoted: "Più votato", - alreadyVoted: "You have already opined.", - noFeedsFound: "No feeds found.", + alreadyVoted: "Hai già espresso un'opinione.", + noFeedsFound: "Nessun feed trovato.", author: "Di", createdAtLabel: "Creato il", - FeedshareYourOpinions: "Discover and share short-texts in your network.", - //feed - refeedButton: "Refeed", - alreadyRefeeded: "You already refeeded this.", - //activity + FeedshareYourOpinions: "Scopri e condividi testi brevi nella tua rete.", + refeedButton: "Ricondividi", + alreadyRefeeded: "Hai già fatto il refeed.", activityTitle: "Attività", - yourActivity: "Your Activity", - globalActivity: "Global Activity", + yourActivity: "La tua attività", + globalActivity: "Attività globale", activityList: "Attività", - activityDesc: "See the latest activity in your network.", - allButton: "ALL", - mineButton: "MINE", - noActions: "No activity available.", + activityDesc: "Vedi l'ultima attività nella tua rete.", + allButton: "TUTTI", + mineButton: "MIEI", + noActions: "Nessuna attività disponibile.", performed: "→", from: "Da", to: "A", amount: "Importo", - concept: "Concept", + concept: "Concetto", description: "Descrizione", meme: "Meme", - activityContact: "Contact", + activityContact: "Contatto", activityBy: "Nome", - activityPixelia: "New pixel added", - viewImage: "View image", - playAudio: "Play audio", - playVideo: "Play video", - typeRecent: "RECENT", - errorActivity: "Error retrieving activity", + activityPixelia: "Nuovo pixel aggiunto", + viewImage: "Vedi immagine", + playAudio: "Riproduci audio", + playVideo: "Riproduci video", + typeRecent: "RECENTI", + errorActivity: "Errore nel recupero dell'attività", typePost: "POST", - typeTribe: "TRIBES", - typeAbout: "INHABITANTS", + typeTribe: "TRIBÙ", + typeAbout: "ABITANTI", typeCurriculum: "Curriculum", - typeImage: "IMAGES", - typeBookmark: "BOOKMARKS", - typeDocument: "DOCUMENTS", - typeVotes: "VOTATIONS", - typeAudio: "AUDIOS", - typeMarket: "MARKET", - typeJob: "JOBS", - typeProject: "PROJECTS", - typeVideo: "VIDEOS", - typeVote: "SPREAD", - typeEvent: "EVENTS", - typeTransfer: "TRANSFER", - typeTask: "TASKS", + typeImage: "IMMAGINI", + typeBookmark: "SEGNALIBRI", + typeDocument: "DOCUMENTI", + typeVotes: "VOTAZIONI", + typeAudio: "AUDIO", + typeMarket: "MERCATO", + typeJob: "LAVORI", + typeProject: "PROGETTI", + typeVideo: "VIDEO", + typeVote: "DIFFUSIONE", + typeEvent: "EVENTI", + typeTransfer: "TRASFERIMENTO", + typeTask: "COMPITI", typePixelia: "PIXELIA", typeForum: "FORUM", - typeReport: "REPORTS", + typeReport: "SEGNALAZIONI", typeFeed: "FEED", - typeContact: "CONTACT", + typeContact: "CONTATTO", typePub: "PUB", typeTombstone: "TOMBSTONE", - typeBanking: "BANKING", - typeBankWallet: "BANKING/WALLET", - typeBankClaim: "BANKING/UBI", + typeBanking: "BANCA", + typeBankWallet: "BANCA/PORTAFOGLIO", + typeBankClaim: "BANCA/UBI", typeKarmaScore: "KARMA", - typeParliament: "PARLIAMENT", - typeSpread: "SPREADS", - typeParliamentCandidature: "Parliament · Candidature", - typeParliamentTerm: "Parliament · Term", - typeParliamentProposal:"Parliament · Proposal", - typeParliamentRevocation:"Parliament · Revocation", - typeParliamentLaw: "Parliament · New Law", + typeParliament: "PARLAMENTO", + typeSpread: "DIFFUSIONI", + typeParliamentCandidature: "Parlamento · Candidatura", + typeParliamentTerm: "Parlamento · Mandato", + typeParliamentProposal:"Parlamento · Proposta", + typeParliamentRevocation:"Parlamento · Revoca", + typeParliamentLaw: "Parlamento · Nuova legge", typeCourts: "COURTS", - typeCourtsCase: "Courts · Case", - typeCourtsEvidence: "Courts · Evidence", - typeCourtsAnswer: "Courts · Answer", - typeCourtsVerdict: "Courts · Verdict", - typeCourtsSettlement: "Courts · Settlement", - typeCourtsSettlementProposal: "Courts · Settlement Proposal", - typeCourtsSettlementAccepted: "Courts · Settlement Accepted", - typeCourtsNomination: "Courts · Nomination", - typeCourtsNominationVote: "Courts · Nomination Vote", - activitySupport: "New alliance forged", - activityJoin: "New PUB joined", - question: "Question", - deadline: "Deadline", + typeCourtsCase: "Tribunali · Caso", + typeCourtsEvidence: "Tribunali · Prova", + typeCourtsAnswer: "Tribunali · Risposta", + typeCourtsVerdict: "Tribunali · Verdetto", + typeCourtsSettlement: "Tribunali · Accordo", + typeCourtsSettlementProposal: "Tribunali · Proposta di accordo", + typeCourtsSettlementAccepted: "Tribunali · Accordo accettato", + typeCourtsNomination: "Tribunali · Nomina", + typeCourtsNominationVote: "Tribunali · Voto di nomina", + activitySupport: "Nuova alleanza forgiata", + activityJoin: "Nuovo PUB unito", + question: "Domanda", + deadline: "Scadenza", status: "Stato", - votes: "Votazioni", - totalVotes: "Total Votes", - voteTotalVotes: "Total Votes", + votes: "Voti", + totalVotes: "Voti totali", + voteTotalVotes: "Voti totali", name: "Nome", skills: "Competenze", tags: "Tag", title: "Titolo", date: "Data", category: "Categoria", - attendees: "Attendees", + attendees: "Partecipanti", activitySpread: "->", - visitLink: "Visit Link", - viewDocument: "View Document", + visitLink: "Visita link", + viewDocument: "Vedi documento", location: "Posizione", - contentWarning: "Subject", - personName: "Inhabitant Name", - bankWalletConnected: "ECOin Wallet", - bankUbiReceived: "UBI Received", + contentWarning: "Oggetto", + personName: "Nome abitante", + bankWalletConnected: "Portafoglio ECOin", + bankUbiReceived: "UBI ricevuto", bankTx: "Tx", - bankEpochShort: "Epoch", - bankAllocId: "Allocation ID", - bankingUserEngagementScore: "KARMA Scoring", + bankEpochShort: "Epoca", + bankAllocId: "ID allocazione", + bankingUserEngagementScore: "Punteggio KARMA", viewDetails: "Vedi dettagli", link: "Link", - aiSnippetsLearned: "Snippets learned", - tribeFeedRefeeds: "Refeeds", - activityProjectFollow: "%OASIS% is now %ACTION% this project %PROJECT%", - activityProjectUnfollow: "%OASIS% is now %ACTION% this project %PROJECT%", - activityProjectPledged: "%OASIS% has %ACTION% %AMOUNT% to project %PROJECT%", - following: "FOLLOWING", - unfollowing: "UNFOLLOWING", - pledged: "PLEDGED", + aiSnippetsLearned: "Snippet appresi", + tribeFeedRefeeds: "Ricondivisioni", + activityProjectFollow: "%OASIS% ora sta %ACTION% questo progetto %PROJECT%", + activityProjectUnfollow: "%OASIS% ora sta %ACTION% questo progetto %PROJECT%", + activityProjectPledged: "%OASIS% ha %ACTION% %AMOUNT% al progetto %PROJECT%", + following: "SEGUENDO", + unfollowing: "NON SEGUENDO", + pledged: "CONTRIBUITO", parliamentCandidatureId: "Candidature", parliamentGovMethod: "Method", parliamentVotesReceived: "Votes received", parliamentMethodANARCHY: "Anarchy", - parliamentMethodVOTE: "Community Vote", - parliamentMethodRANKED: "Ranked Choice", - parliamentMethodPLURALITY: "Plurality", - parliamentMethodCOUNCIL: "Council", - parliamentMethodJURY: "Jury", - parliamentAnarchy: "ANARCHY", - parliamentElectionsStart: "Elections start", - parliamentElectionsEnd: "Elections end", - parliamentCurrentLeader: "Winning candidature", + parliamentMethodVOTE: "Voto comunitario", + parliamentMethodRANKED: "Scelta graduata", + parliamentMethodPLURALITY: "Pluralità", + parliamentMethodCOUNCIL: "Consiglio", + parliamentMethodJURY: "Giuria", + parliamentAnarchy: "ANARCHIA", + parliamentElectionsStart: "Inizio elezioni", + parliamentElectionsEnd: "Fine elezioni", + parliamentCurrentLeader: "Candidatura vincente", parliamentProposalTitle: "Titolo", - parliamentOpenVote: "Open vote", + parliamentOpenVote: "Apri votazione", parliamentStatus: "Stato", - parliamentLawQuestion: "Question", - parliamentLawMethod: "Method", - parliamentLawProposer: "Proposer", - parliamentLawEnacted: "Enacted at", + parliamentLawQuestion: "Domanda", + parliamentLawMethod: "Metodo", + parliamentLawProposer: "Proposto da", + parliamentLawEnacted: "Emanata il", parliamentLawVotes: "Votazioni", - createdAt: "Created at", - courtsCaseTitle: "Case", - courtsMethod: "Method", - courtsMethodJUDGE: "Judge", - courtsMethodJUDGES: "Judges Panel", - courtsMethodSINGLE_JUDGE: "Single Judge", - courtsMethodJURY: "Jury", - courtsMethodCOUNCIL: "Council", - courtsMethodCOMMUNITY: "Community", - courtsMethodMEDIATION: "Mediation", - courtsMethodARBITRATION: "Arbitration", - courtsMethodVOTE: "Community Vote", - courtsAccuser: "Accuser", - courtsRespondent: "Respondent", + createdAt: "Creato il", + courtsCaseTitle: "Caso", + courtsMethod: "Metodo", + courtsMethodJUDGE: "Giudice", + courtsMethodJUDGES: "Collegio di giudici", + courtsMethodSINGLE_JUDGE: "Giudice unico", + courtsMethodJURY: "Giuria", + courtsMethodCOUNCIL: "Consiglio", + courtsMethodCOMMUNITY: "Comunità", + courtsMethodMEDIATION: "Mediazione", + courtsMethodARBITRATION: "Arbitrato", + courtsMethodVOTE: "Voto comunitario", + courtsAccuser: "Accusatore", + courtsRespondent: "Convenuto", courtsThStatus: "Stato", - courtsThAnswerBy: "Answer by", - courtsThEvidenceBy: "Evidence by", - courtsThDecisionBy: "Decision by", - courtsVotesNeeded: "Votes needed", - courtsVotesSlashTotal: "YES/TOTAL", - courtsOpenVote: "Open vote", - courtsAnswerTitle: "Answer", - courtsStanceADMIT: "Admit", - courtsStanceDENY: "Deny", - courtsStancePARTIAL: "Partial", - courtsStanceCOUNTERCLAIM: "Counterclaim", - courtsStanceNEUTRAL: "Neutral", - courtsVerdictResult: "Result", - courtsVerdictOrders: "Orders", - courtsSettlementText: "Settlement", - courtsSettlementAccepted: "Accepted", + courtsThAnswerBy: "Risposta di", + courtsThEvidenceBy: "Prove di", + courtsThDecisionBy: "Decisione di", + courtsVotesNeeded: "Voti necessari", + courtsVotesSlashTotal: "SÌ / TOTALE", + courtsOpenVote: "Apri votazione", + courtsAnswerTitle: "Rispondi alla denuncia", + courtsStanceADMIT: "Ammetti", + courtsStanceDENY: "Nega", + courtsStancePARTIAL: "Parziale", + courtsStanceCOUNTERCLAIM: "Controdenuncia", + courtsStanceNEUTRAL: "Neutrale", + courtsVerdictResult: "Risultato", + courtsVerdictOrders: "Ordini", + courtsSettlementText: "Condizioni", + courtsSettlementAccepted: "Accettato", courtsSettlementPending: "In attesa", - courtsJudge: "Judge", - courtsThSupports: "Supports", - courtsFilterOpenCase: 'Open Case', - courtsEvidenceFileLabel: 'Evidence file (image, audio, video or PDF)', - courtsCaseMediators: 'Mediators', - courtsCaseMediatorsPh: 'Mediator Oasis IDs, separated by comma', - courtsMediatorsLabel: 'Mediators', - courtsThCase: 'Case', - courtsThCreatedAt: 'Start date', - courtsThActions: 'Actions', - courtsPublicPrefLabel: 'Visibility after resolution', - courtsPublicPrefYes: 'I agree this case can be fully public', - courtsPublicPrefNo: 'I prefer to keep the details private', - courtsPublicPrefSubmit: 'Save visibility preference', - courtsMethodMEDIATION: 'Mediation', - courtsNoCases: 'No cases.', - //reports + courtsJudge: "Giudice", + courtsThSupports: "Supporti", + courtsFilterOpenCase: 'Apri caso', + courtsEvidenceFileLabel: 'File di prova (immagine, audio, video o PDF)', + courtsCaseMediators: 'Mediatori', + courtsCaseMediatorsPh: 'Oasis ID dei mediatori, separati da virgola', + courtsMediatorsLabel: 'Mediatori', + courtsThCase: 'Caso', + courtsThCreatedAt: 'Data di inizio', + courtsThActions: 'Azioni', + courtsPublicPrefLabel: 'Visibilità dopo la risoluzione', + courtsPublicPrefYes: 'Acconsento che questo caso sia completamente pubblico', + courtsPublicPrefNo: 'Preferisco mantenere i dettagli privati', + courtsPublicPrefSubmit: 'Salva preferenza di visibilità', + courtsMethodMEDIATION: 'Mediazione', + courtsNoCases: 'Nessun caso.', reportsTitle: "Rapporti", - reportsDescription: "Manage and track reports related to issues, bugs, abuses and content warnings in your network.", - reportsFilterAll: "ALL", - reportsFilterMine: "MINE", - reportsFilterFeatures: "FEATURES", - reportsFilterBugs: "BUGS", - reportsFilterAbuse: "ABUSE", - reportsFilterContent: "CONTENT", - reportsFilterConfirmed: "CONFIRMED", - reportsFilterResolved: "RESOLVED", - reportsFilterOpen: "OPEN", - reportsFilterUnderReview: "UNDER REVIEW", - reportsFilterInvalid: "INVALID", - reportsCreateButton: "Create Report", + reportsDescription: "Gestisci e monitora le segnalazioni relative a problemi, bug, abusi e avvisi sui contenuti nella tua rete.", + reportsFilterAll: "TUTTI", + reportsFilterMine: "MIEI", + reportsFilterFeatures: "FUNZIONALITÀ", + reportsFilterBugs: "BUG", + reportsFilterAbuse: "ABUSO", + reportsFilterContent: "CONTENUTO", + reportsFilterConfirmed: "CONFERMATI", + reportsFilterResolved: "RISOLTI", + reportsFilterOpen: "APERTI", + reportsFilterUnderReview: "IN REVISIONE", + reportsFilterInvalid: "NON VALIDI", + reportsCreateButton: "Crea segnalazione", reportsTitleLabel: "Titolo", reportsDescriptionLabel: "Descrizione", - reportsDescriptionPlaceholder: "Please provide a detailed description.", + reportsDescriptionPlaceholder: "Fornisci una descrizione dettagliata.", reportsCategory: "Categoria", reportsCategoryLabel: "Categoria", - reportsCategoryFeatures: "Features", - reportsCategoryBugs: "Bugs", - reportsCategoryAbuse: "Abuse", - reportsCategoryContent: "Content Issues", + reportsCategoryFeatures: "Funzionalità", + reportsCategoryBugs: "Bug", + reportsCategoryAbuse: "Abuso", + reportsCategoryContent: "Problemi di contenuto", reportsUpdateButton: "Aggiorna", reportsDeleteButton: "Elimina", reportsDateLabel: "Data", reportsUploadFile: "Carica media (max: 50MB)", - reportsCreatedBy: "By", - reportsMineSectionTitle: "Your Reports", - reportsFeaturesSectionTitle: "Feature Requests", - reportsBugsSectionTitle: "Bugs", - reportsAbuseSectionTitle: "Abuse Reports", - reportsContentSectionTitle: "Content Issues", + reportsCreatedBy: "Di", + reportsMineSectionTitle: "Le tue segnalazioni", + reportsFeaturesSectionTitle: "Richieste di funzionalità", + reportsBugsSectionTitle: "Bug", + reportsAbuseSectionTitle: "Segnalazioni di abuso", + reportsContentSectionTitle: "Problemi di contenuto", reportsAllSectionTitle: "Rapporti", - reportsNoItems: "No reports available.", - reportsValidationTitle: "Please enter a valid title.", - reportsValidationDescription: "Description cannot be empty.", - reportsValidationCategory: "Please select a category.", - reportsCreatedAt: "Created At", - reportsCreatedBy: "By", - reportsSeverity: "Severity", + reportsNoItems: "Nessuna segnalazione disponibile.", + reportsValidationTitle: "Inserisci un titolo valido.", + reportsValidationDescription: "La descrizione non può essere vuota.", + reportsValidationCategory: "Seleziona una categoria.", + reportsCreatedAt: "Creato il", + reportsCreatedBy: "Di", + reportsSeverity: "Gravità", reportsSeverityLow: "Bassa", reportsSeverityMedium: "Media", reportsSeverityHigh: "Alta", - reportsSeverityCritical: "Critical", + reportsSeverityCritical: "Critica", reportsStatus: "Stato", - reportsStatusOpen: "Apri", - reportsStatusUnderReview: "Under Review", - reportsStatusResolved: "Resolved", - reportsStatusInvalid: "Invalid", - reportsUpdateStatusButton: "Update Status", - reportsAnonymityOption: "Submit Anonymously", + reportsStatusOpen: "Aperto", + reportsStatusUnderReview: "In revisione", + reportsStatusResolved: "Risolto", + reportsStatusInvalid: "Non valido", + reportsUpdateStatusButton: "Aggiorna stato", + reportsAnonymityOption: "Invia in modo anonimo", reportsAnonymousAuthor: "Anonimo", - reportsConfirmButton: "CONFIRM REPORT!", - reportsConfirmations: "Confirmations", - reportsConfirmedSectionTitle: "Confirmed Reports", - reportsCreateTaskButton: "CREATE TASK", - reportsOpenSectionTitle: "Open Reports", - reportsUnderReviewSectionTitle: "Under Review Reports", - reportsResolvedSectionTitle: "Resolved Reports", - reportsInvalidSectionTitle: "Invalid Reports", - reportsTemplateSectionTitle: 'Report template', - reportsBugTemplateTitle: 'Reproduction details (Bugs)', - reportsFeatureTemplateTitle: 'Details (Features)', - reportsAbuseTemplateTitle: 'Details (Abuse)', - reportsContentTemplateTitle: 'Details (Content Issues)', - reportsStepsToReproduceLabel: 'Steps to reproduce', + reportsConfirmButton: "CONFERMA SEGNALAZIONE!", + reportsConfirmations: "Conferme", + reportsConfirmedSectionTitle: "Segnalazioni confermate", + reportsCreateTaskButton: "CREA COMPITO", + reportsOpenSectionTitle: "Segnalazioni aperte", + reportsUnderReviewSectionTitle: "Segnalazioni in revisione", + reportsResolvedSectionTitle: "Segnalazioni risolte", + reportsInvalidSectionTitle: "Segnalazioni non valide", + reportsTemplateSectionTitle: 'Modello di segnalazione', + reportsBugTemplateTitle: 'Dettagli di riproduzione (Bug)', + reportsFeatureTemplateTitle: 'Dettagli (Funzionalità)', + reportsAbuseTemplateTitle: 'Dettagli (Abuso)', + reportsContentTemplateTitle: 'Dettagli (Problemi di contenuto)', + reportsStepsToReproduceLabel: 'Passaggi per riprodurre', reportsStepsToReproducePlaceholder: '1) ...\n2) ...\n3) ...', - reportsExpectedBehaviorLabel: 'Expected result', - reportsExpectedBehaviorPlaceholder: 'What should happen?', - reportsActualBehaviorLabel: 'Actual result', - reportsActualBehaviorPlaceholder: 'What actually happens?', - reportsEnvironmentLabel: 'Environment', - reportsEnvironmentPlaceholder: 'Version, device, OS, browser, settings, logs, etc.', - reportsReproduceRateLabel: 'Reproduction rate', - reportsReproduceRateAlways: 'Always', - reportsReproduceRateOften: 'Often', - reportsReproduceRateSometimes: 'Sometimes', - reportsReproduceRateRarely: 'Rarely', - reportsReproduceRateUnable: 'Unable to reproduce', - reportsReproduceRateUnknown: 'Not specified', - reportsProblemStatementLabel: 'Problem / need', - reportsProblemStatementPlaceholder: 'What problem does this feature solve?', - reportsUserStoryLabel: 'Inhabitant story', - reportsUserStoryPlaceholder: 'As a , I want , so that .', - reportsAcceptanceCriteriaLabel: 'Acceptance criteria', - reportsAcceptanceCriteriaPlaceholder: '- Given...\n- When...\n- Then...', - reportsWhatHappenedLabel: 'What happened?', - reportsWhatHappenedPlaceholder: 'Describe the incident with context and approximate dates.', - reportsReportedUserLabel: 'Reported inhabitant / entity', - reportsReportedUserPlaceholder: '@inhabitant, feed, ID, link, etc.', - reportsEvidenceLinksLabel: 'Evidence / links', - reportsEvidenceLinksPlaceholder: 'Paste links, message IDs, screenshots (if applicable), etc.', - reportsContentLocationLabel: 'Where the content is', - reportsContentLocationPlaceholder: 'Link, ID, channel, thread, author, etc.', - reportsWhyInappropriateLabel: "Why it's inappropriate", - reportsWhyInappropriatePlaceholder: 'Explain the reason and impact.', - reportsRequestedActionLabel: 'Requested action', - reportsRequestedActionPlaceholder: 'Remove, hide, tag, warn, etc.', - //tribes - tribesTitle: "Tribes", - tribeAllSectionTitle: "Tribes", - tribeMineSectionTitle: "Your Tribes", - tribeCreateSectionTitle: "Create Tribe", - tribeUpdateSectionTitle: "Update Tribe", - tribeGallerySectionTitle: "Tribes Gallery", + reportsExpectedBehaviorLabel: 'Risultato atteso', + reportsExpectedBehaviorPlaceholder: 'Cosa dovrebbe succedere?', + reportsActualBehaviorLabel: 'Risultato effettivo', + reportsActualBehaviorPlaceholder: 'Cosa succede effettivamente?', + reportsEnvironmentLabel: 'Ambiente', + reportsEnvironmentPlaceholder: 'Versione, dispositivo, SO, browser, impostazioni, log, ecc.', + reportsReproduceRateLabel: 'Frequenza di riproduzione', + reportsReproduceRateAlways: 'Sempre', + reportsReproduceRateOften: 'Spesso', + reportsReproduceRateSometimes: 'A volte', + reportsReproduceRateRarely: 'Raramente', + reportsReproduceRateUnable: 'Impossibile riprodurre', + reportsReproduceRateUnknown: 'Non specificato', + reportsProblemStatementLabel: 'Problema / necessità', + reportsProblemStatementPlaceholder: 'Quale problema risolve questa funzionalità?', + reportsUserStoryLabel: 'Storia abitante', + reportsUserStoryPlaceholder: 'Come , voglio , così che .', + reportsAcceptanceCriteriaLabel: 'Criteri di accettazione', + reportsAcceptanceCriteriaPlaceholder: '- Dato che...\n- Quando...\n- Allora...', + reportsWhatHappenedLabel: 'Cosa è successo?', + reportsWhatHappenedPlaceholder: 'Descrivi l\'incidente con contesto e date approssimative.', + reportsReportedUserLabel: 'Abitante / entità segnalata', + reportsReportedUserPlaceholder: '@abitante, feed, ID, link, ecc.', + reportsEvidenceLinksLabel: 'Prove / link', + reportsEvidenceLinksPlaceholder: 'Incolla link, ID messaggi, screenshot (se applicabile), ecc.', + reportsContentLocationLabel: 'Dove si trova il contenuto', + reportsContentLocationPlaceholder: 'Link, ID, canale, discussione, autore, ecc.', + reportsWhyInappropriateLabel: "Perché è inappropriato", + reportsWhyInappropriatePlaceholder: 'Spiega il motivo e l\'impatto.', + reportsRequestedActionLabel: 'Azione richiesta', + reportsRequestedActionPlaceholder: 'Rimuovi, nascondi, tagga, avvisa, ecc.', + tribesTitle: "Tribù", + tribeAllSectionTitle: "Tribù", + tribeMineSectionTitle: "Le tue tribù", + tribeCreateSectionTitle: "Crea tribù", + tribeUpdateSectionTitle: "Aggiorna tribù", + tribeGallerySectionTitle: "Galleria tribù", tribeLarpSectionTitle: "L.A.R.P", - tribeRecentSectionTitle: "Recent Tribes", - tribeTopSectionTitle: "Popular Tribes", - tribeviewTribeButton: "Visit Tribe", - tribeDescription: "Explore or create tribes on your network.", - tribeFilterAll: "ALL", - tribeFilterMine: "MINE", - tribeFilterMembership: "MEMBERSHIP", - tribeFilterRecent: "RECENT", + tribeRecentSectionTitle: "Tribù recenti", + tribeTopSectionTitle: "Tribù popolari", + tribeviewTribeButton: "Visita tribù", + tribeDescription: "Esplora o crea tribù nella tua rete.", + tribeFilterAll: "TUTTE", + tribeFilterMine: "MIE", + tribeFilterMembership: "ISCRIZIONE", + tribeFilterRecent: "RECENTI", tribeFilterLarp: "L.A.R.P.", tribeFilterTop: "TOP", tribeFilterSubtribes: "SOTTO-TRIBÙ", - tribeFilterGallery: "GALLERY", + tribeFilterGallery: "GALLERIA", tribeMainTribeLabel: "TRIBÙ PRINCIPALE", - tribeCreateButton: "Create Tribe", + tribeCreateButton: "Crea tribù", tribeUpdateButton: "Aggiorna", tribeDeleteButton: "Elimina", tribeImageLabel: "Carica media (max: 50MB)", tribeTitleLabel: "Titolo", - searchTribesPlaceholder: "FILTER tribes BY NAME …", - tribeTitlePlaceholder: "Name of the tribe", + searchTribesPlaceholder: "FILTRA tribù PER NOME …", + tribeTitlePlaceholder: "Nome della tribù", tribeDescriptionLabel: "Descrizione", - tribeDescriptionPlaceholder: "Describe this tribe", + tribeDescriptionPlaceholder: "Descrivi questa tribù", tribeLocationLabel: "Posizione", - tribeLocationPlaceholder: "Where is this tribe located?", + tribeLocationPlaceholder: "Dove si trova questa tribù?", tribeTagsLabel: "Tag", - tribeTagsPlaceholder: "Enter tags separated by commas", - tribeIsLARPLabel: "L.A.R.P. Tribe?", - tribeInviteMode: "Invite mode", + tribeTagsPlaceholder: "Inserisci tag separati da virgole", + tribeIsLARPLabel: "Tribù L.A.R.P.?", + tribeInviteMode: "Modalità invito", tribeLARPLabel: "L.A.R.P.", tribeModeLabel: "MODE", - tribeIsAnonymousLabel: "STATUS", - tribeMembersCount: "Members", - tribeInviteCodePlaceholder: "Enter invite code", - tribeJoinByCodeButton: "Join with code", - tribeJoinButton: "JOIN", - tribeLeaveButton: "LEAVE", - tribeYes: "YES", + tribeIsAnonymousLabel: "STATO", + tribeMembersCount: "Membri", + tribeInviteCodePlaceholder: "Inserisci codice invito", + tribeJoinByCodeButton: "Unisciti con codice", + tribeJoinButton: "UNISCITI", + tribeLeaveButton: "ESCI", + tribeYes: "SÌ", tribeNo: "NO", - tribePublic: "PUBLIC", - tribePrivate: "PRIVATE", - tribeGenerateInvite: "GENERATE CODE", - tribeCreatedAt: "Created at", - tribeAuthor: "By", + tribePublic: "PUBBLICO", + tribePrivate: "PRIVATO", + tribeGenerateInvite: "GENERA CODICE", + tribeCreatedAt: "Creato il", + tribeAuthor: "Di", tribeAuthorLabel: "AUTORE", - tribeStrict: "Strict", - tribeOpen: "Apri", - tribeFeedFilterRECENT: "RECENT", - tribeFeedFilterMINE: "MINE", - tribeFeedFilterALL: "ALL", + tribeStrict: "Rigoroso", + tribeOpen: "Aperto", + tribeFeedFilterRECENT: "RECENTI", + tribeFeedFilterMINE: "MIEI", + tribeFeedFilterALL: "TUTTI", tribeFeedFilterTOP: "TOP", - tribeFeedRefeeds: "Refeeds", - tribeFeedRefeed: "Refeed", - tribeFeedMessagePlaceholder: "Write a feed…", + tribeFeedRefeeds: "Ricondivisioni", + tribeFeedRefeed: "Ricondividi", + tribeFeedMessagePlaceholder: "Scrivi un feed…", tribeFeedSend: "Invia", - tribeFeedEmpty: "No feed messages available, yet.", + tribeFeedEmpty: "Nessun messaggio feed disponibile, per ora.", noTribes: "Nessuna tribù trovata.", tribeNotFound: "Tribù non trovata!", createTribeTitle: "Crea tribù", updateTribeTitle: "Aggiorna tribù", tribeSectionOverview: "Panoramica", tribeSectionInhabitants: "Abitanti", - tribeSectionVotations: "Votazioni", - tribeSectionEvents: "Eventi", + tribeSectionVotations: "VOTAZIONI", + tribeSectionEvents: "EVENTI", tribeSectionReports: "Segnalazioni", - tribeSectionTasks: "Compiti", - tribeSectionFeed: "Feed", - tribeSectionForum: "Forum", + tribeSectionTasks: "COMPITI", + tribeSectionFeed: "FEED", + tribeSectionForum: "FORUM", tribeSectionMarket: "Mercato", tribeSectionJobs: "Lavori", tribeSectionProjects: "Progetti", @@ -1749,6 +1731,16 @@ module.exports = { tribeSectionVideos: "VIDEO", tribeSectionDocuments: "DOCUMENTI", tribeSectionBookmarks: "SEGNALIBRI", + tribeSectionMaps: "MAPS", + tribeSectionPads: "PADS", + tribeSectionChats: "CHATS", + tribeSectionCalendars: "CALENDARS", + tribePadCreate: "Create Pad", + tribeChatCreate: "Create Chat", + tribeCalendarCreate: "Create Calendar", + tribePadsEmpty: "No pads, yet.", + tribeChatsEmpty: "No chats, yet.", + tribeCalendarsEmpty: "No calendars, yet.", tribeInhabitantsEmpty: "Nessun abitante in questa tribù.", tribeEventCreate: "Crea evento", tribeEventsEmpty: "Nessun evento.", @@ -1843,8 +1835,8 @@ module.exports = { tribePriorityMedium: "MEDIA", tribePriorityHigh: "ALTA", tribePriorityCritical: "CRITICA", - tribeTaskFilterAll: "ALL", - tribeMediaFilterAll: "ALL", + tribeTaskFilterAll: "TUTTI", + tribeMediaFilterAll: "TUTTI", tribeReportCatBug: "BUG", tribeReportCatAbuse: "ABUSO", tribeReportCatContent: "CONTENUTO", @@ -1866,7 +1858,7 @@ module.exports = { tribeActivityJoined: "ISCRITTO", tribeActivityLeft: "USCITO", tribeActivityFeed: "FEED", - tribeActivityRefeed: "REFEED", + tribeActivityRefeed: "RICONDIVISIONE", tribeGroupAnalytics: "Analisi", tribeGroupCreative: "Creativo", tribeSectionActivity: "ATTIVITÀ", @@ -1901,790 +1893,872 @@ module.exports = { tribeSearchEmpty: "Nessun risultato trovato.", tribeSearchResults: "Risultati", tribeSearchMinChars: "Inserisci almeno 2 caratteri per cercare.", - // opinionCat - opinionCatInteresting: "Interessante", - opinionCatNecessary: "Necessario", - opinionCatUseful: "Utile", - opinionCatInformative: "Informativo", - opinionCatSpam: "Spam", - opinionCatTroll: "Troll", - //agenda agendaTitle: "Agenda", - agendaDescription: "Here you can find all your assigned items.", - agendaFilterAll: "ALL", - agendaFilterOpen: "OPEN", - agendaFilterClosed: "CLOSED", - agendaFilterTasks: "TASKS", - agendaFilterMarket: "MARKET", - agendaFilterTribes: "TRIBES", - agendaFilterEvents: "EVENTS", - agendaFilterReports: "REPORTS", - agendaFilterTransfers: "TRANSFERS", - agendaFilterJobs: "JOBS", - agendaFilterProjects: "PROJECTS", - agendaNoItems: "No assignments found.", - agendaAuthor: "By", - agendaDiscardButton: "Discard", - agendaRestoreButton: "Restore", - agendaCreatedAt: "Created At", + agendaDescription: "Qui trovi tutti gli elementi assegnati a te.", + agendaFilterAll: "TUTTI", + agendaFilterOpen: "APERTI", + agendaFilterClosed: "CHIUSI", + agendaFilterTasks: "COMPITI", + agendaFilterMarket: "MERCATO", + agendaFilterTribes: "TRIBÙ", + agendaFilterEvents: "EVENTI", + agendaFilterReports: "SEGNALAZIONI", + agendaFilterTransfers: "TRASFERIMENTI", + agendaFilterJobs: "LAVORI", + agendaFilterProjects: "PROGETTI", + agendaFilterCalendars: "CALENDARI", + agendaNoItems: "Nessun incarico trovato.", + agendaAuthor: "Di", + agendaDiscardButton: "Scarta", + agendaRestoreButton: "Ripristina", + agendaCreatedAt: "Creato il", agendaTitleLabel: "Titolo", - agendaMembersCount: "Members", + agendaMembersCount: "Membri", agendaDescriptionLabel: "Descrizione", agendaStatus: "Stato", - agendaVisibility: "Visibility", - agendaEventDate: "Event Date", + agendaVisibility: "Visibilità", + agendaEventDate: "Data evento", agendaEventLocation: "Posizione", agendaEventPrice: "Prezzo", agendaEventUrl: "URL", - agendaTaskStart: "Start Time", + agendaTaskStart: "Ora di inizio", agendaLocationLabel: "Posizione", agendaLARPLabel: "L.A.R.P.", - agendaYes: "YES", + agendaYes: "SÌ", agendaNo: "NO", agendaInviteModeLabel: "Stato", agendaAnonymousLabel: "Anonimo", - agendaMembersLabel: "Members", + agendaMembersLabel: "Membri", agendareportCategory: "Categoria", - agendareportSeverity: "Severity", + agendareportSeverity: "Gravità", agendareportStatus: "Stato", agendareportDescription: "Descrizione", - agendaTaskEnd: "End Time", + agendaTaskEnd: "Ora di fine", agendaTaskPriority: "Priorità", agendaTransferFrom: "Da", agendaTransferTo: "A", - agendaTransferConcept: "Concept", + agendaTransferConcept: "Concetto", agendaTransferAmount: "Importo", - agendaTransferDeadline: "Deadline", + agendaTransferDeadline: "Scadenza", agendaTransferFrom: "Da", agendaTransferTo: "A", - agendaTransferConcept: "Concept", + agendaTransferConcept: "Concetto", agendaTransferAmount: "Importo", - agendaTransferDeadline: "Deadline", - //opinions + agendaTransferDeadline: "Scadenza", opinionsTitle: "Opinioni", - shareYourOpinions: "Discover and vote for opinions in your network.", + shareYourOpinions: "Scopri e vota opinioni nella tua rete.", author: "By", - voteNow: "Vote now", - alreadyVoted: "You have already opined.", - noOpinionsFound: "No opinions found.", + voteNow: "Vota ora", + alreadyVoted: "Hai già espresso un'opinione.", + noOpinionsFound: "Nessuna opinione trovata.", ALLButton: "ALL", MINEButton: "MINE", RECENTButton: "RECENT", TOPButton: "TOP", - interestingButton: "INTERESTING", - necessaryButton: "NECESSARY", - funnyButton: "FUNNY", - disgustingButton: "DISGUSTING", - sensibleButton: "SENSIBLE", + interestingButton: "INTERESSANTE", + necessaryButton: "NECESSARIO", + funnyButton: "DIVERTENTE", + disgustingButton: "DISGUSTOSO", + sensibleButton: "SENSIBILE", propagandaButton: "PROPAGANDA", - adultOnlyButton: "ADULT ONLY", - boringButton: "BORING", - confusingButton: "CONFUSING", - inspiringButton: "INSPIRING", + adultOnlyButton: "SOLO ADULTI", + boringButton: "NOIOSO", + confusingButton: "CONFUSO", + inspiringButton: "ISPIRANTE", spamButton: "SPAM", - usefulButton: "USEFUL", - informativeButton: "INFORMATIVE", - wellResearchedButton: "WELL RESEARCHED", - accurateButton: "ACCURATE", - needsSourcesButton: "NEEDS SOURCES", - wrongButton: "WRONG", - lowQualityButton: "LOW QUALITY", - creativeButton: "CREATIVE", - insightfulButton: "INSIGHTFUL", - actionableButton: "ACTIONABLE", - inspiringButton: "INSPIRING", - loveButton: "LOVE", - clearButton: "CLEAR", - upliftingButton: "UPLIFTING", - unnecessaryButton: "UNNECESSARY", - rejectedButton: "REJECTED", - misleadingButton: "MISLEADING", - offTopicButton: "OFF TOPIC", - duplicateButton: "DUPLICATE", + usefulButton: "UTILE", + informativeButton: "INFORMATIVO", + wellResearchedButton: "BEN DOCUMENTATO", + accurateButton: "ACCURATO", + needsSourcesButton: "SERVONO FONTI", + wrongButton: "SBAGLIATO", + lowQualityButton: "BASSA QUALITÀ", + creativeButton: "CREATIVO", + insightfulButton: "PERSPICACE", + actionableButton: "ATTUABILE", + inspiringButton: "ISPIRANTE", + loveButton: "AMORE", + clearButton: "CHIARO", + upliftingButton: "EDIFICANTE", + unnecessaryButton: "INUTILE", + rejectedButton: "RIFIUTATO", + misleadingButton: "FUORVIANTE", + offTopicButton: "FUORI TEMA", + duplicateButton: "DUPLICATO", clickbaitButton: "CLICKBAIT", spamButton: "SPAM", trollButton: "TROLL", nsfwButton: "NSFW", - violentButton: "VIOLENT", - toxicButton: "TOXIC", - harassmentButton: "HARASSMENT", - hateButton: "HATE", - scamButton: "SCAM", - triggeringButton: "TRIGGERING", - opinionsCreatedAt: "Created At", - opinionsTotalCount: "Total Opinions", - voteInteresting: "Interesting", - voteNecessary: "Necessary", - voteUseful: "Useful", - voteInformative: "Informative", - voteWellResearched: "Well researched", - voteNeedsSources: "Needs sources", - voteWrong: "Wrong", - voteLowQuality: "Low quality", - voteLove: "Love", + violentButton: "VIOLENTO", + toxicButton: "TOSSICO", + harassmentButton: "MOLESTIA", + hateButton: "ODIO", + scamButton: "TRUFFA", + triggeringButton: "DISTURBANTE", + opinionsCreatedAt: "Creato il", + opinionsTotalCount: "Opinioni totali", + voteInteresting: "Interessante", + voteNecessary: "Necessario", + voteUseful: "Utile", + voteInformative: "Informativo", + voteWellResearched: "Ben documentato", + voteNeedsSources: "Servono fonti", + voteWrong: "Sbagliato", + voteLowQuality: "Bassa qualità", + voteLove: "Amore", voteClear: "Cancella", - voteMisleading: "Misleading", - voteOffTopic: "Off topic", - voteDuplicate: "Duplicate", + voteMisleading: "Fuorviante", + voteOffTopic: "Fuori tema", + voteDuplicate: "Duplicato", voteClickbait: "Clickbait", votePropaganda: "Propaganda", - voteFunny: "Funny", - voteInspiring: "Inspiring", - voteUplifting: "Uplifting", - voteUnnecessary: "Unnecessary", + voteFunny: "Divertente", + voteInspiring: "Ispirante", + voteUplifting: "Edificante", + voteUnnecessary: "Inutile", voteRejected: "Rifiutato", - voteConfusing: "Confusing", + voteConfusing: "Confuso", voteTroll: "Troll", voteNsfw: "NSFW", - voteViolent: "Violent", - voteToxic: "Toxic", - voteHarassment: "Harassment", - voteHate: "Hate", - voteScam: "Scam", - voteTriggering: "Triggering", - voteInsightful: "Insightful", - voteAccurate: "Accurate", - voteActionable: "Actionable", - voteCreative: "Creative", + voteViolent: "Violento", + voteToxic: "Tossico", + voteHarassment: "Molestia", + voteHate: "Odio", + voteScam: "Truffa", + voteTriggering: "Disturbante", + voteInsightful: "Perspicace", + voteAccurate: "Accurato", + voteActionable: "Attuabile", + voteCreative: "Creativo", voteSpam: "Spam", - voteAdultOnly: "Adult Only", - //inbox - publishBlog: "Publish Blog", + voteAdultOnly: "Solo adulti", + publishBlog: "Pubblica post", privateMessage: "PM", - pmSendTitle: "Private Messages", - pmSend: "Send!", - pmDescription: "Use this form to send an encrypted message to other inhabitants.", - pmRecipients: "Recipients", - pmRecipientsHint: "Enter Oasis IDs separated by commas", - pmSubject: "Subject", - pmSubjectHint: "Enter the message subject", - pmText: "Message", - pmFile: "Attachment", + pmSendTitle: "Messaggi privati", + pmSend: "Invia!", + pmDescription: "Usa questo modulo per inviare un messaggio crittografato ad altri abitanti.", + pmRecipients: "Destinatari", + pmRecipientsHint: "Inserisci Oasis ID separati da virgole", + pmSubject: "Oggetto", + pmSubjectHint: "Inserisci l'oggetto del messaggio", + pmText: "Messaggio", + pmFile: "Allegato", private: "Privato", - privateDescription: "Your encrypted messages.", + privateDescription: "I tuoi messaggi crittografati.", privateInbox: "Posta in arrivo", - privateSent: "Sent", + privateSent: "Inviati", privateDelete: "Elimina", pmCreateButton: "Scrivi un MP", - noPrivateMessages: "No private messages.", - pmFromLabel: "From:", - pmToLabel: "To:", - pmInvalidMessage: "Invalid message", - pmNoSubject: "(no subject)", + noPrivateMessages: "Nessun messaggio privato.", + pmFromLabel: "Da:", + pmToLabel: "A:", + pmInvalidMessage: "Messaggio non valido", + pmNoSubject: "(senza oggetto)", pmSubjectLabel: "Oggetto:", - pmBodyLabel: "Corpo", - pmBotJobs: "42-JobsBOT", - pmBotProjects: "42-ProjectsBOT", - pmBotMarket: "42-MarketBOT", - inboxJobSubscribedTitle: "New subscription to your job offer", - pmInhabitantWithId: "Inhabitant with OASIS ID:", - pmHasSubscribedToYourJobOffer: "has subscribed to your job offer", - inboxProjectCreatedTitle: "New project created", - pmHasCreatedAProject: "has created a project", - inboxMarketItemSoldTitle: "Item Sold", - pmYourItem: "Your item", - pmHasBeenSoldTo: "has been sold to", - pmFor: "for", - inboxProjectPledgedTitle: "New pledge to your project", - pmHasPledged: "has pledged", - pmToYourProject: "to your project", - //blockexplorer + pmBodyLabel: "Messaggio", + pmBotJobs: "42-LavoriBOT", + pmBotProjects: "42-ProgettiBOT", + pmBotMarket: "42-MercatoBOT", + inboxJobSubscribedTitle: "Nuova iscrizione alla tua offerta di lavoro", + pmInhabitantWithId: "Abitante con Oasis ID:", + pmHasSubscribedToYourJobOffer: "si è iscritto alla tua offerta di lavoro", + inboxProjectCreatedTitle: "Nuovo progetto creato", + pmHasCreatedAProject: "ha creato un progetto", + inboxMarketItemSoldTitle: "Articolo venduto", + pmYourItem: "Il tuo articolo", + pmHasBeenSoldTo: "è stato venduto a", + pmFor: "per", + inboxProjectPledgedTitle: "Nuovo contributo al tuo progetto", + pmHasPledged: "ha contribuito", + pmToYourProject: "al tuo progetto", blockchain: 'BlockExplorer', blockchainTitle: 'BlockExplorer', - blockchainDescription: 'Explore and visualize the blocks in the blockchain.', - blockchainNoBlocks: 'No blocks found in the blockchain.', - blockchainBlockID: 'Block ID', - blockchainBlockAuthor: 'Author', - blockchainBlockType: 'Type', - blockchainBlockTimestamp: 'Timestamp', - blockchainBlockContent: 'Block', + blockchainDescription: 'Esplora e visualizza i blocchi nella blockchain.', + blockchainNoBlocks: 'Nessun blocco trovato nella blockchain.', + blockchainBlockID: 'ID blocco', + blockchainBlockAuthor: 'Autore', + blockchainBlockType: 'Tipo', + blockchainBlockTimestamp: 'Data e ora', + blockchainBlockContent: 'Blocco', blockchainBlockURL: 'URL:', - blockchainContent: 'Block', - blockchainContentPreview: 'Preview of the block content', + blockchainContent: 'Blocco', + blockchainContentPreview: 'Anteprima del contenuto del blocco', blockchainLatestDatagram: 'Ultimo Datagramma', blockchainDatagram: 'Datagramma', - blockchainDetails: 'View block details', - blockchainBlockInfo: 'Block Information', - blockchainBlockDetails: 'Details of the selected block', - blockchainBack: 'Back to Blockexplorer', - blockchainContentDeleted: "This content has been tombstoned", + blockchainDetails: 'Vedi dettagli blocco', + blockchainBlockInfo: 'Informazioni blocco', + blockchainBlockDetails: 'Dettagli del blocco selezionato', + blockchainBack: 'Torna al BlockExplorer', + blockchainContentDeleted: "Questo contenuto è stato rimosso (tombstone)", visitContent: "Visita contenuto", - //banking banking: 'Banking', bankingTitle: 'Banking', - bankingDescription: 'Explore the current value of ECOin and the corresponding UBI allocation, distributed per epoch based on participation and trust.', - bankOverview: 'Overview', - bankEpochs: 'Epochs', - bankRules: 'Rules', - pending: 'Pending', - closed: 'Closed', - bankBack: 'Back to Banking', - bankViewTx: 'View Tx', - bankClaimNow: 'Claim now', - bankPubBalance: 'PUB Balance', - bankEpoch: 'Epoch', - bankPool: 'Pool (this epoch)', - bankWeightsSum: 'Sum of weights', - bankAllocations: 'Allocations', - bankNoAllocations: 'No allocations found.', - bankNoEpochs: 'No epochs found.', - bankEpochAllocations: 'Epoch allocations', - bankAllocId: 'Allocation ID', - bankAllocDate: 'Date', - bankAllocConcept: 'Concept', - bankAllocFrom: 'From', - bankAllocTo: 'To', - bankAllocAmount: 'Amount', - bankAllocStatus: 'Status', - bankEpochId: 'Epoch ID', - bankRuleHash: 'Rules Snapshot Hash', - bankViewEpoch: 'View Epoch', - bankUserBalance: 'Your Balance', - ecoWalletNotConfigured: 'ECOin Wallet not configured', - editWallet: 'Edit wallet', - addWallet: 'Add wallet', - bankAddresses: 'Addresses', - bankNoAddresses: 'No addresses found.', + bankingDescription: 'Esplora il valore attuale di ECOin e la corrispondente allocazione UBI, distribuita per epoca in base a partecipazione e fiducia.', + bankOverview: 'Panoramica', + bankEpochs: 'Epoche', + bankRules: 'Regole', + pending: 'In attesa', + closed: 'Chiuso', + bankBack: 'Torna alla Banca', + bankViewTx: 'Vedi Tx', + bankClaimNow: 'Riscuoti ora', + bankClaimUBI: 'Richiedi RBU!', + bankClaimAndPay: 'Claim & Pay', + bankClaimedPending: 'Claim pending...', + bankStatusUnclaimed: 'Unclaimed', + bankStatusClaimed: 'Claimed', + bankStatusExpired: 'Expired', + bankPubOnly: 'PUB-only operation', + bankNoPendingUBI: 'Nessuna assegnazione RBU in sospeso per questa epoca.', + bankEpoch: 'Epoca', + bankPool: 'Pool (questa epoca)', + bankWeightsSum: 'Somma dei pesi', + bankAllocations: 'Allocazioni', + bankNoAllocations: 'Nessuna allocazione trovata.', + bankNoEpochs: 'Nessuna epoca trovata.', + bankEpochAllocations: 'Allocazioni epoca', + bankAllocId: 'ID allocazione', + bankAllocDate: 'Data', + bankAllocConcept: 'Concetto', + bankAllocFrom: 'Da', + bankAllocTo: 'A', + bankAllocAmount: 'Importo', + bankAllocStatus: 'Stato', + bankEpochId: 'ID epoca', + bankRuleHash: 'Hash snapshot regole', + bankViewEpoch: 'Vedi epoca', + bankUserBalance: 'Il tuo saldo', + ecoWalletNotConfigured: 'Portafoglio ECOin non configurato', + editWallet: 'Modifica portafoglio', + addWallet: 'Aggiungi portafoglio', + bankAddresses: 'Indirizzi', + bankNoAddresses: 'Nessun indirizzo trovato.', bankUser: 'Oasis ID', - bankAddress: 'Address', - bankAddAddressTitle: 'Add ECOIN address', + bankAddress: 'Indirizzo', + bankAddAddressTitle: 'Aggiungi indirizzo ECOIN', bankAddAddressUser: 'Oasis ID', - bankAddAddressAddress: 'ECOIN Address', - bankAddAddressSave: 'Save', - bankAddressAdded: 'Address added', - bankAddressUpdated: 'Address updated', - bankAddressExists: 'Address already exists', - bankAddressInvalid: 'Invalid address', - bankAddressDeleted: 'Address deleted', - bankAddressNotFound: 'Address not found', - bankAddressTotal: 'Total Addresses', - bankAddressSearch: 'Search @inhabitant or address', - bankAddressActions: 'Actions', - bankAddressDelete: 'Delete', - bankAddressSource: 'Source', - bankAddressDeleteConfirm: 'Delete this address?', - search: 'Search!', - bankLocal: 'Local', + bankAddAddressAddress: 'Indirizzo ECOIN', + bankAddAddressSave: 'Salva', + bankAddressAdded: 'Indirizzo aggiunto', + bankAddressUpdated: 'Indirizzo aggiornato', + bankAddressExists: 'Indirizzo già esistente', + bankAddressInvalid: 'Indirizzo non valido', + bankAddressDeleted: 'Indirizzo eliminato', + bankAddressNotFound: 'Indirizzo non trovato', + bankAddressTotal: 'Indirizzi totali', + bankAddressSearch: 'Cerca @abitante o indirizzo', + bankAddressActions: 'Azioni', + bankAddressDelete: 'Elimina', + bankAddressSource: 'Fonte', + bankAddressDeleteConfirm: 'Eliminare questo indirizzo?', + search: 'Cerca!', + bankLocal: 'Locale', bankFromOasis: 'Oasis', - bankMyAddress: 'Your address', - bankRemoveMyAddress: 'Remove my address', - bankNotRemovableOasis: 'Addresses cannot be removed locally', - bankingFutureUBI: "Estimated UBI Allocation", - bankExchange: 'Exchange', - bankExchangeCurrentValue: 'ECOin Value (1h)', - bankTotalSupply: 'ECOin Total Supply', - bankEcoinHours: "ECOin Equivalence in Time", - bankHoursOfWork: 'hours', - bankExchangeNoData: 'No data available', - bankExchangeIndex: 'ECOin Value (1h)', - bankInflation: 'ECOin Inflation', - bankCurrentSupply: 'ECOin Current Supply', - bankingSyncStatus: 'ECOin Status', - bankingSyncStatusSynced: 'Synced', - bankingSyncStatusOutdated: 'Outdated', - //stats - statsTitle: 'Statistics', + bankMyAddress: 'Il tuo indirizzo', + bankRemoveMyAddress: 'Rimuovi il mio indirizzo', + bankNotRemovableOasis: 'Gli indirizzi non possono essere rimossi localmente', + bankingFutureUBI: "UBI", + pubIdTitle: "PUB Wallet", + pubIdDescription: "Set the PUB OASIS ID. This will be used for PUB transactions (including the UBI).", + pubIdLabel: "PUB ID", + pubIdSave: "Save configuration", + pubIdPlaceholder: "@PUB_ID.ed25519", + bankUbiAvailableNo: "NESSUN FONDO!", + bankUbiAvailableOk: "DISPONIBILE!", + bankUbiAvailability: "Disponibilità UBI", + bankAlreadyClaimedThisMonth: "Già richiesto questo mese", + bankUbiThisMonth: "RBU (questo mese)", + bankUbiLastClaimed: "RBU (ultima richiesta)", + bankUbiNeverClaimed: "Mai richiesto", + bankUbiTotalClaimed: "RBU (totale richiesto)", + bankUbiPub: "PUB", + bankUbiInhabitant: "ABITANTE", + bankUbiClaimedAmount: "RICHIESTO (ECO)", + typeBankUbiResult: "BANCARIO - RBU", + bankNoPubConfigured: "Nessun PUB configurato. Imposta il tuo ID PUB nelle Impostazioni.", + shopsTitle: "Negozi", + shopDescription: "Scopri e gestisci negozi nella rete.", + shopTitle: "Negozio", + shopFilterAll: "TUTTI", + shopFilterMine: "MIEI", + shopFilterRecent: "RECENTI", + shopFilterTop: "TOP", + shopFilterProducts: "PRODOTTI", + shopFilterPrices: "PREZZI", + shopFilterFavorites: "PREFERITI", + shopUpload: "Crea Negozio", + shopAllSectionTitle: "Tutti i Negozi", + shopMineSectionTitle: "I Miei Negozi", + shopRecentSectionTitle: "Negozi Recenti", + shopTopSectionTitle: "Top Negozi", + shopProductsSectionTitle: "Top Prodotti", + shopPricesSectionTitle: "Prodotti per Prezzo", + shopFavoritesSectionTitle: "Preferiti", + shopCreateSectionTitle: "Crea Negozio", + shopUpdateSectionTitle: "Aggiorna Negozio", + shopCreate: "Crea", + shopUpdate: "Aggiorna", + shopDelete: "Elimina", + shopAddFavorite: "Aggiungi Preferito", + shopRemoveFavorite: "Rimuovi Preferito", + shopOpen: "APERTO", + shopClosed: "CHIUSO", + shopOpenShop: "Apri Negozio", + shopCloseShop: "Chiudi Negozio", + shopProducts: "Prodotti", + shopProductAdd: "Aggiungi Prodotto", + shopProductTitle: "Prodotto", + shopProductUpdate: "Aggiorna Prodotto", + shopProductPrice: "Prezzo (ECO)", + shopProductStock: "Disponibilità", + shopProductUntitled: "Prodotto senza titolo", + shopUntitled: "Negozio senza titolo", + shopNoItems: "Nessun negozio trovato.", + shopNoProducts: "Nessun prodotto ancora.", + shopOutOfStock: "Esaurito", + shopBuy: "Acquista", + shopBackToShop: "Torna al Negozio", + shopShareUrl: "URL di condivisione", + shopVisitShop: "VISITA NEGOZIO", + shopStatus: "STATO", + shopCreatedAt: "CREATO", + shopSearchPlaceholder: "Cerca negozi...", + shopUrl: "URL", + shopLocation: "Posizione", + shopTags: "Tag", + shopVisibility: "Visibilità", + shopImage: "Immagine", + shopShortDescription: "Descrizione Breve", + shopShortDescriptionPlaceholder: "Descrizione breve per le schede (max 160 caratteri)", + shopTitlePlaceholder: "Nome del tuo negozio", + shopDescriptionPlaceholder: "Descrizione dettagliata del tuo negozio", + shopUrlPlaceholder: "https://url-del-tuo-negozio.com", + shopLocationPlaceholder: "Città, Paese", + shopTagsPlaceholder: "tag1, tag2, tag3", + mapTitlePlaceholder: "Titolo della mappa", + shopProductFeatured: "Prodotto in Evidenza", + shopSendToMarket: "Send to Market", + typeShop: "NEGOZIO", + typeShopProduct: "PRODOTTO NEGOZIO", + bankExchange: 'Cambio', + bankExchangeCurrentValue: 'Valore ECOin (1h)', + bankTotalSupply: 'Offerta totale ECOin', + bankEcoinHours: "Equivalenza ECOin in tempo", + bankHoursOfWork: 'ore', + bankUnitMs: "ms", + bankUnitSeconds: "secondi", + bankUnitMinutes: "minuti", + bankUnitDays: "giorni", + bankExchangeNoData: 'Nessun dato disponibile', + bankExchangeIndex: 'Valore ECOin (1h)', + bankInflation: 'Inflazione ECOin (anual)', + bankInflationMonthly: 'Inflazione ECOin (mensual)', + bankCurrentSupply: 'Offerta attuale ECOin', + bankingSyncStatus: 'Stato ECOin', + bankingSyncStatusSynced: 'Sincronizzato', + bankingSyncStatusOutdated: 'Non aggiornato', + statsTitle: 'Statistiche', statistics: "Statistiche", - statsInhabitant: "Inhabitant Stats", - statsDescription: "Discover statistics about your network.", + statsInhabitant: "Statistiche abitante", + statsDescription: "Scopri le statistiche della tua rete.", ALLButton: "ALL", MINEButton: "MINE", TOMBSTONEButton: "TOMBSTONES", - statsYou: "You", + statsYou: "Tu", statsUserId: "Oasis ID", - statsCreatedAt: "Created At", + statsCreatedAt: "Creato il", statsYourContent: "Contenuto", statsYourOpinions: "Opinioni", - statsYourTombstone: "Tombstones", - statsNetwork: "Network", + statsYourTombstone: "Tombstone", + statsNetwork: "Rete", statsTotalInhabitants: "Abitanti", - statsDiscoveredTribes: "Tribes (Public)", - statsPrivateDiscoveredTribes: "Tribes (Private)", + statsDiscoveredTribes: "Tribù (Pubbliche)", + statsPrivateDiscoveredTribes: "Tribù (Private)", statsNetworkContent: "Contenuto", statsYourMarket: "Mercato", statsYourJob: "Lavori", statsYourProject: "Progetti", statsYourTransfer: "Trasferimenti", - statsYourForum: "Forums", + statsYourForum: "Forum", statsNetworkOpinions: "Opinioni", statsDiscoveredMarket: "Mercato", statsDiscoveredJob: "Lavori", statsDiscoveredProject: "Progetti", statsBankingTitle: "Banca", - statsEcoWalletLabel: "ECOIN Wallet", - statsEcoWalletNotConfigured: "Not configured!", - statsTotalEcoAddresses: "Total addresses", + statsEcoWalletLabel: "Portafoglio ECOIN", + statsEcoWalletNotConfigured: "Non configurato!", + statsTotalEcoAddresses: "Indirizzi totali", statsDiscoveredTransfer: "Trasferimenti", - statsDiscoveredForum: "Forums", - statsNetworkTombstone: "Tombstones", + statsDiscoveredForum: "Forum", + statsNetworkTombstone: "Tombstone", statsBookmark: "Segnalibri", statsEvent: "Eventi", statsTask: "Compiti", - statsVotes: "Votazioni", + statsVotes: "Voti", statsMarket: "Mercato", - statsForum: "Forums", + statsForum: "Forum", statsJob: "Lavori", statsProject: "Progetti", statsReport: "Rapporti", - statsFeed: "Feeds", - statsTribe: "Tribes", + statsFeed: "Feed", + statsTribe: "Tribù", statsImage: "Immagini", statsAudio: "Audio", statsVideo: "Video", statsDocument: "Documenti", + statsMap: "Mappe", + statsShop: "Negozi", + statsShopProduct: "Prodotti del negozio", statsTransfer: "Trasferimenti", statsAiExchange: "AI", statsPUBs: 'PUBs', statsPost: "Post", statsOasisID: "Oasis ID", - statsSize: "Total (size)", - statsBlockchainSize: "Blockchain (size)", - statsBlobsSize: "Blobs (size)", - statsActivity7d: "Activity (last 7 days)", - statsActivity7dTotal: "7-day total", - statsActivity30dTotal: "30-day total", - statsKarmaScore: "KARMA Score", + statsSize: "Totale (dimensione)", + statsBlockchainSize: "Blockchain (dimensione)", + statsBlobsSize: "Blob (dimensione)", + statsActivity7d: "Attività (ultimi 7 giorni)", + statsActivity7dTotal: "Totale 7 giorni", + statsActivity30dTotal: "Totale 30 giorni", + statsKarmaScore: "Punteggio KARMA", statsPublic: "Pubblico", statsPrivate: "Privato", - day: "Day", - messages: "Messages", + day: "Giorno", + messages: "Messaggi", statsProject: "Progetti", statsProjectsTitle: "Progetti", - statsProjectsTotal: "Total projects", + statsProjectsTotal: "Progetti totali", statsProjectsActive: "Attivo", statsProjectsCompleted: "Completato", statsProjectsPaused: "In pausa", statsProjectsCancelled: "Annullato", - statsProjectsGoalTotal: "Total goal", - statsProjectsPledgedTotal: "Total pledged", - statsProjectsSuccessRate: "Success rate", - statsProjectsAvgProgress: "Average progress", - statsProjectsMedianProgress: "Median progress", - statsProjectsActiveFundingAvg: "Avg. active funding", + statsProjectsGoalTotal: "Obiettivo totale", + statsProjectsPledgedTotal: "Contribuito totale", + statsProjectsSuccessRate: "Tasso di successo", + statsProjectsAvgProgress: "Progresso medio", + statsProjectsMedianProgress: "Progresso mediano", + statsProjectsActiveFundingAvg: "Finanziamento attivo medio", statsJobsTitle: "Lavori", - statsJobsTotal: "Total jobs", - statsJobsOpen: "Apri", - statsJobsClosed: "Closed", - statsJobsOpenVacants: "Open vacants", - statsJobsSubscribersTotal: "Total subscribers", - statsJobsAvgSalary: "Average salary", - statsJobsMedianSalary: "Median salary", + statsJobsTotal: "Lavori totali", + statsJobsOpen: "Aperti", + statsJobsClosed: "Chiusi", + statsJobsOpenVacants: "Posti vacanti aperti", + statsJobsSubscribersTotal: "Iscritti totali", + statsJobsAvgSalary: "Stipendio medio", + statsJobsMedianSalary: "Stipendio mediano", statsMarketTitle: "Mercato", - statsMarketTotal: "Total items", - statsMarketForSale: "For sale", - statsMarketReserved: "Reserved", - statsMarketClosed: "Closed", - statsMarketSold: "Sold", + statsMarketTotal: "Articoli totali", + statsMarketForSale: "In vendita", + statsMarketReserved: "Riservato", + statsMarketClosed: "Chiuso", + statsMarketSold: "Venduto", statsMarketRevenue: "Entrate", - statsMarketAvgSoldPrice: "Avg. sold price", + statsMarketAvgSoldPrice: "Prezzo medio venduto", statsUsersTitle: "Abitanti", - user: "Inhabitant", - statsTombstoneTitle: "Tombstones", - statsNetworkTombstones: "Network tombstones", - statsTombstoneRatio: "Tombstone ratio (%)", - statsAITraining: "AI Training", - statsAIExchanges: "Exchanges", - statsParliamentCandidature: "Parliament candidatures", - statsParliamentTerm: "Parliament terms", - statsParliamentProposal: "Parliament proposals", - statsParliamentRevocation: "Parliament revocations", - statsParliamentLaw: "Parliament laws", - statsCourtsCase: "Court cases", - statsCourtsEvidence: "Court evidence", - statsCourtsAnswer: "Court answers", - statsCourtsVerdict: "Court verdicts", - statsCourtsSettlement: "Court settlements", - statsCourtsSettlementProposal: "Settlement proposals", - statsCourtsSettlementAccepted: "Settlements accepted", - statsCourtsNomination: "Judge nominations", - statsCourtsNominationVote: "Nomination votes", - //AI + user: "Abitante", + statsTombstoneTitle: "Tombstone", + statsNetworkTombstones: "Tombstone della rete", + statsTombstoneRatio: "Rapporto tombstone (%)", + statsAITraining: "Addestramento AI", + statsAIExchanges: "Scambi", + statsParliamentCandidature: "Candidature parlamento", + statsParliamentTerm: "Mandati parlamento", + statsParliamentProposal: "Proposte parlamento", + statsParliamentRevocation: "Revoche parlamento", + statsParliamentLaw: "Leggi parlamento", + statsCourtsCase: "Casi tribunale", + statsCourtsEvidence: "Prove tribunale", + statsCourtsAnswer: "Risposte tribunale", + statsCourtsVerdict: "Verdetti tribunale", + statsCourtsSettlement: "Accordi tribunale", + statsCourtsSettlementProposal: "Proposte di accordo", + statsCourtsSettlementAccepted: "Accordi accettati", + statsCourtsNomination: "Nomine giudici", + statsCourtsNominationVote: "Voti nomina", ai: "AI", aiTitle: "AI", - aiDescription: "A Collective Artificial Intelligence (CAI) called '42' that learns from your network.", - aiInputPlaceholder: "What's up?", - aiUserQuestion: "Question", + aiDescription: "Un'Intelligenza Artificiale Collettiva (IAC) chiamata '42' che impara dalla tua rete.", + aiInputPlaceholder: "Che succede?", + aiUserQuestion: "Domanda", aiResponseTitle: "Rispondi", - aiSubmitButton: "Send!", - aiSettingsDescription: "Set your prompt (max 128 characters) for the AI model.", - aiPrompt: "Provide an informative and precise response.", - aiConfiguration: "Set prompt", + aiSubmitButton: "Invia!", + aiSettingsDescription: "Imposta il tuo prompt (max 128 caratteri) per il modello AI.", + aiPrompt: "Fornisci una risposta informativa e precisa.", + aiConfiguration: "Imposta prompt", aiPromptUsed: "Prompt", - aiClearHistory: "Clear chat history", - aiSharePrompt: "Add this answer to collective training?", + aiClearHistory: "Cancella cronologia chat", + aiSharePrompt: "Aggiungere questa risposta all'addestramento collettivo?", aiShareYes: "Sì", aiShareNo: "No", - aiSharedLabel: "Added to training", - aiRejectedLabel: "Not added to training", - aiServerError: "The AI could not answer. Please try again.", - aiInputPlaceholder: "What is Oasis?", + aiSharedLabel: "Aggiunto all'addestramento", + aiRejectedLabel: "Non aggiunto all'addestramento", + aiServerError: "L'AI non ha potuto rispondere. Riprova.", + aiInputPlaceholder: "Cos'è Oasis?", typeAiExchange: "AI", - aiApproveTrain: "Add to collective training", - aiRejectTrain: "Do not train", - aiTrainPending: "Pending approval", - aiTrainApproved: "Approved for training", - aiTrainRejected: "Rejected for training", - aiSnippetsUsed: "Snippets used", - aiSnippetsLearned: "Snippets learned", - statsAITraining: "AI training", - aiApproveCustomTrain: "Train using this custom answer", - aiCustomAnswerPlaceholder: "Write your custom answer…", - statsAIExchanges: "Model Exchanges", - //market - marketMineSectionTitle: "Your Items", - marketCreateSectionTitle: "Create Item", + aiApproveTrain: "Aggiungi all'addestramento collettivo", + aiRejectTrain: "Non addestrare", + aiTrainPending: "In attesa di approvazione", + aiTrainApproved: "Approvato per l'addestramento", + aiTrainRejected: "Rifiutato per l'addestramento", + aiSnippetsUsed: "Snippet utilizzati", + aiSnippetsLearned: "Snippet appresi", + statsAITraining: "Addestramento AI", + aiApproveCustomTrain: "Addestra usando questa risposta personalizzata", + aiCustomAnswerPlaceholder: "Scrivi la tua risposta personalizzata…", + statsAIExchanges: "Scambi modello", + marketMineSectionTitle: "I tuoi articoli", + marketCreateSectionTitle: "Crea articolo", marketUpdateSectionTitle: "Aggiorna", marketAllSectionTitle: "Mercato", - marketRecentSectionTitle: "Recent Market", + marketRecentSectionTitle: "Mercato recente", marketTitle: "Mercato", - marketDescription: "A marketplace for exchanging goods or services in your network.", - marketFilterAll: "ALL", - marketFilterMine: "MINE", - marketFilterAuctions: "AUCTIONS", - marketFilterItems: "EXCHANGE", - marketFilterNew: "NEW", - marketFilterUsed: "USED", - marketFilterBroken: "BROKEN", - marketFilterForSale: "FOR SALE", - marketFilterSold: "SOLD", - marketFilterDiscarded: "DISCARDED", - marketFilterRecent: "RECENT", - marketFilterMyBids: "BIDS", - marketCreateButton: "Create Item", + marketDescription: "Un mercato per scambiare beni o servizi nella tua rete.", + marketFilterAll: "TUTTI", + marketFilterMine: "MIEI", + marketFilterAuctions: "ASTE", + marketFilterItems: "SCAMBIO", + marketFilterNew: "NUOVO", + marketFilterUsed: "USATO", + marketFilterBroken: "ROTTO", + marketFilterForSale: "IN VENDITA", + marketFilterSold: "VENDUTO", + marketFilterDiscarded: "SCARTATO", + marketFilterRecent: "RECENTI", + marketFilterMyBids: "OFFERTE", + marketCreateButton: "Crea articolo", marketItemType: "Tipo", marketItemTitle: "Titolo", - marketItemAvailable: "Deadline", + marketItemAvailable: "Scadenza", marketItemDescription: "Descrizione", - marketItemDescriptionPlaceholder: "Describe the item you're selling", + marketItemDescriptionPlaceholder: "Descrivi l'articolo che stai vendendo", marketItemStatus: "Stato", - marketItemCondition: "Condition", + marketShopLabel: "Negozio", + marketItemCondition: "Condizione", marketItemPrice: "Prezzo", marketItemTags: "Tag", - marketItemTagsPlaceholder: "Enter tags separated by commas", - marketItemDeadline: "Deadline", - marketItemIncludesShipping: "Includes Shipping?", - marketItemHighestBid: "Highest Bid", - marketItemHighestBidder: "Highest Bidder", - marketItemStock: "Stock", - marketOutOfStock: "Out of stock", - marketItemBidTime: "Bid Time", + marketItemTagsPlaceholder: "Inserisci tag separati da virgole", + marketItemDeadline: "Scadenza", + marketItemIncludesShipping: "Spedizione inclusa?", + marketItemHighestBid: "Offerta più alta", + marketItemHighestBidder: "Miglior offerente", + marketItemStock: "Disponibilità", + marketOutOfStock: "Esaurito", + marketItemBidTime: "Ora dell'offerta", marketActionsUpdate: "Aggiorna", - marketUpdateButton: "Update Item!", + marketUpdateButton: "Aggiorna articolo!", marketActionsDelete: "Elimina", - marketActionsSold: "Mark as Sold", - marketActionsChangeStatus: "CHANGE STATUS", - marketActionsBuy: "BUY!", - marketAuctionBids: "Current Bids", - marketPlaceBidButton: "Place Bid", - marketItemSeller: "Seller", - marketNoItems: "No items available, yet.", - marketYourBid: "Your Bid", + marketActionsSold: "Segna come venduto", + marketActionsChangeStatus: "CAMBIA STATO", + marketActionsBuy: "COMPRA!", + marketAuctionBids: "Offerte attuali", + marketPlaceBidButton: "Fai un'offerta", + marketItemSeller: "Venditore", + marketNoItems: "Nessun articolo disponibile ancora.", + marketYourBid: "La tua offerta", marketCreateFormImageLabel: "Carica media (max: 50MB)", marketSearchLabel: "Cerca", - marketSearchPlaceholder: "Search title or tags", - marketMinPriceLabel: "Min price", - marketMaxPriceLabel: "Max price", - marketSortLabel: "Sort by", - marketSortRecent: "Most recent", + marketSearchPlaceholder: "Cerca titolo o tag", + marketMinPriceLabel: "Prezzo minimo", + marketMaxPriceLabel: "Prezzo massimo", + marketSortLabel: "Ordina per", + marketSortRecent: "Più recenti", marketSortPrice: "Prezzo", - marketSortDeadline: "Deadline", + marketSortDeadline: "Scadenza", marketSearchButton: "Cerca", - marketAuctionEndsIn: "Ends", - marketAuctionEnded: "Ended", - marketMyBidBadge: "You bid", - marketNoItemsMatch: "No items match your search.", - //jobs + marketAuctionEndsIn: "Termina", + marketAuctionEnded: "Terminata", + marketMyBidBadge: "Hai offerto", + marketNoItemsMatch: "Nessun articolo corrisponde alla ricerca.", jobsTitle: "Lavori", - jobsDescription: "Discover and manage jobs in your network.", - jobsFilterRecent: "RECENT", - jobsFilterMine: "MINE", - jobsFilterAll: "ALL", - jobsFilterRemote: "REMOTE", - jobsFilterOpen: "OPEN", - jobsFilterClosed: "CLOSED", - jobsCV: "CVs", - jobsCreateJob: "Create Job", - jobsRecentTitle: "Recent Jobs", - jobsMineTitle: "Your Jobs", + jobsDescription: "Scopri e gestisci lavori nella tua rete.", + jobsFilterRecent: "RECENTI", + jobsFilterMine: "MIEI", + jobsFilterAll: "TUTTI", + jobsFilterRemote: "REMOTO", + jobsFilterOpen: "APERTI", + jobsFilterClosed: "CHIUSI", + jobsCV: "CV", + jobsCreateJob: "Crea lavoro", + jobsRecentTitle: "Lavori recenti", + jobsMineTitle: "I tuoi lavori", jobsAllTitle: "Lavori", - jobsRemoteTitle: "Remote Jobs", - jobsOpenTitle: "Open Jobs", - jobsClosedTitle: "Closed Jobs", - jobsCVTitle: "CVs", - jobsFilterPresencial: "PRESENCIAL", + jobsRemoteTitle: "Lavori da remoto", + jobsOpenTitle: "Lavori aperti", + jobsClosedTitle: "Lavori chiusi", + jobsCVTitle: "CV", + jobsFilterPresencial: "IN SEDE", jobsFilterFreelancer: "FREELANCER", - jobsFilterEmployee: "EMPLOYEE", - jobsPresencialTitle: "Presential Jobs", - jobsFreelancerTitle: "Freelance Jobs", - jobsEmployeeTitle: "Employee Jobs", + jobsFilterEmployee: "DIPENDENTE", + jobsPresencialTitle: "Lavori in sede", + jobsFreelancerTitle: "Lavori freelance", + jobsEmployeeTitle: "Lavori dipendente", jobTitle: "Titolo", jobLocation: "Posizione", - jobSalary: "Salary (ECO/1h)", - jobVacants: "Vacants", + jobSalary: "Stipendio (ECO/1h)", + jobVacants: "Posti vacanti", jobDescription: "Descrizione", - jobRequirements: "Requirements", - jobLanguages: "Languages", + jobRequirements: "Requisiti", + jobLanguages: "Lingue", jobStatus: "Stato", - jobStatusOPEN: "OPEN", - jobStatusCLOSED: "CLOSED", - jobSetOpen: "Set as OPEN", - jobSetClosed: "Set as CLOSED", - jobSubscribeButton: "Join this offer!", - jobUnsubscribeButton: "Leave this offer!", - jobTitlePlaceholder: "Enter job title", - jobDescriptionPlaceholder: "Describe the job", - jobRequirementsPlaceholder: "Enter requirements", - jobLanguagesPlaceholder: "English, Spanish, French, Basque...", - jobTasksPlaceholder: "List tasks", - jobLocationPresencial: "On-place", - jobLocationRemote: "Remote", - jobVacantsPlaceholder: "Number of positions", - jobSalaryPlaceholder: "Salary in ECO for 1 dedicated hour", + jobStatusOPEN: "APERTO", + jobStatusCLOSED: "CHIUSO", + jobSetOpen: "Segna come APERTO", + jobSetClosed: "Segna come CHIUSO", + jobSubscribeButton: "Candidati!", + jobUnsubscribeButton: "Ritira candidatura!", + jobTitlePlaceholder: "Inserisci titolo del lavoro", + jobDescriptionPlaceholder: "Descrivi il lavoro", + jobRequirementsPlaceholder: "Inserisci requisiti", + jobLanguagesPlaceholder: "Inglese, Spagnolo, Francese, Basco...", + jobTasksPlaceholder: "Elenca i compiti", + jobLocationPresencial: "In sede", + jobLocationRemote: "Da remoto", + jobVacantsPlaceholder: "Numero di posizioni", + jobSalaryPlaceholder: "Stipendio in ECO per 1 ora dedicata", jobImage: "Carica media (max: 50MB)", jobTasks: "Compiti", - jobType: "Job Type", - jobTime: "Job Time", - jobSubscribers: "Subscribers", - noSubscribers: "No subscribers", + jobType: "Tipo lavoro", + jobTime: "Orario lavoro", + jobSubscribers: "Candidati", + noSubscribers: "Nessun candidato", jobsFilterTop: "TOP", - jobsTopTitle: "Top Salary Jobs", - createJobButton: "Publish Job", - viewDetailsButton: "View Details", - noJobsFound: "No job offers found.", - jobAuthor: "By", - jobTypeFreelance: "Freelancer", - jobTypeSalary: "Employee", + jobsTopTitle: "Lavori con stipendio più alto", + createJobButton: "Pubblica lavoro", + viewDetailsButton: "Vedi dettagli", + noJobsFound: "Nessuna offerta di lavoro trovata.", + jobAuthor: "Di", + jobTypeFreelance: "Freelance", + jobTypeSalary: "Dipendente", jobTimePartial: "Part-time", jobTimeComplete: "Full-time", - jobsDeleteButton: "DELETE", - jobsUpdateButton: "UPDATE", - jobsFilterApplied: "APPLIED", - jobsAppliedTitle: "My applications", - jobsAppliedBadge: "Applied", + jobsDeleteButton: "ELIMINA", + jobsUpdateButton: "AGGIORNA", + jobsFilterApplied: "CANDIDATURE", + jobsAppliedTitle: "Le mie candidature", + jobsAppliedBadge: "Candidato", jobsFilterFavs: "Preferiti", jobsFavsTitle: "Preferiti", - jobsFilterNeeds: "Needs help", - jobsNeedsTitle: "Needs help", + jobsFilterNeeds: "Serve aiuto", + jobsNeedsTitle: "Serve aiuto", jobsSearchLabel: "Cerca", - jobsSearchPlaceholder: "Search title, tags, description...", - jobsMinSalaryLabel: "Min salary", - jobsMaxSalaryLabel: "Max salary", - jobsSortLabel: "Sort by", - jobsSortRecent: "Most recent", - jobsSortSalary: "Highest salary", - jobsSortSubscribers: "Most applicants", + jobsSearchPlaceholder: "Cerca titolo, tag, descrizione...", + jobsMinSalaryLabel: "Stipendio minimo", + jobsMaxSalaryLabel: "Stipendio massimo", + jobsSortLabel: "Ordina per", + jobsSortRecent: "Più recenti", + jobsSortSalary: "Stipendio più alto", + jobsSortSubscribers: "Più candidati", jobsSearchButton: "Cerca", - jobsFavoriteButton: "Favorite", - jobsUnfavoriteButton: "Unfavorite", + jobsFavoriteButton: "Preferito", + jobsUnfavoriteButton: "Rimuovi preferito", jobsMessageAuthorButton: "PM", - jobsApplicants: "Applicants", - jobsUpdatedAt: "Updated", - jobSetOpen: "Set open", - jobNewBadge: "NEW", + jobsApplicants: "Candidati", + jobsUpdatedAt: "Aggiornato", + jobSetOpen: "Segna come aperto", + jobNewBadge: "NUOVO", jobsTagsLabel: "Tag", jobsTagsPlaceholder: "tag1, tag2, tag3", - noJobsMatch: "No jobs match your search.", - //projects + noJobsMatch: "Nessun lavoro corrisponde alla ricerca.", projectsTitle: "Progetti", - projectsDescription: "Create, fund, and follow community-driven projects in your network.", - projectCreateProject: "Create Project", - projectCreateButton: "Create Project", - projectUpdateButton: "UPDATE", - projectDeleteButton: "DELETE", - projectNoProjectsFound: "No projects found.", - projectFilterAll: "ALL", - projectFilterMine: "MINE", - projectFilterActive: "ACTIVE", - projectFilterPaused: "PAUSED", - projectFilterCompleted: "COMPLETED", - projectFilterFollowing: "FOLLOWING", - projectFilterRecent: "RECENT", + projectsDescription: "Crea, finanzia e segui progetti comunitari nella tua rete.", + projectCreateProject: "Crea progetto", + projectCreateButton: "Crea progetto", + projectUpdateButton: "AGGIORNA", + projectDeleteButton: "ELIMINA", + projectNoProjectsFound: "Nessun progetto trovato.", + projectFilterAll: "TUTTI", + projectFilterMine: "MIEI", + projectFilterActive: "ATTIVI", + projectFilterPaused: "IN PAUSA", + projectFilterCompleted: "COMPLETATI", + projectFilterFollowing: "SEGUITI", + projectFilterRecent: "RECENTI", projectFilterTop: "TOP", projectAllTitle: "Progetti", - projectMineTitle: "Your Projects", - projectActiveTitle: "Active Projects", - projectPausedTitle: "Paused Projects", - projectCompletedTitle: "Completed Projects", - projectFollowingTitle: "Following Projects", - projectRecentTitle: "Recent Projects", - projectTopTitle: "Top Funded", - projectTitlePlaceholder: "Project name", + projectMineTitle: "I tuoi progetti", + projectActiveTitle: "Progetti attivi", + projectPausedTitle: "Progetti in pausa", + projectCompletedTitle: "Progetti completati", + projectFollowingTitle: "Progetti seguiti", + projectRecentTitle: "Progetti recenti", + projectTopTitle: "Più finanziati", + projectTitlePlaceholder: "Nome del progetto", projectImage: "Carica media (max: 50MB)", projectDescription: "Descrizione", - projectDescriptionPlaceholder: "Tell the story and goals…", - projectGoal: "Goal (ECO)", + projectDescriptionPlaceholder: "Racconta la storia e gli obiettivi…", + projectGoal: "Obiettivo (ECO)", projectGoalPlaceholder: "50000", - projectDeadline: "Deadline", - projectProgress: "Starting Progress (%)", + projectDeadline: "Scadenza", + projectProgress: "Progresso iniziale (%)", projectStatus: "Stato", - projectFunding: "Funding", - projectPledged: "Pledged", - projectSetStatus: "Set Status", - projectSetProgress: "Update Progress", - projectFollowButton: "FOLLOW", - projectUnfollowButton: "UNFOLLOW", - projectStatusACTIVE: "ACTIVE", - projectStatusPAUSED: "PAUSED", - projectStatusCOMPLETED: "COMPLETED", - projectStatusCANCELLED: "CANCELLED", - projectPledgeTitle: "Back this project", - projectPledgePlaceholder: "Amount in ECO", - projectBounties: "Bounties", - projectBountiesInputLabel: "Bounties (one per line: Title|Amount [ECO]|Description)", - projectBountiesPlaceholder: "Fix UI bug|100|Link to issue\nWrite docs|250|Outline usage examples", - projectNoBounties: "No bounties found.", + projectFunding: "Finanziamento", + projectPledged: "Contribuito", + projectSetStatus: "Imposta stato", + projectSetProgress: "Aggiorna progresso", + projectFollowButton: "SEGUI", + projectUnfollowButton: "SMETTI DI SEGUIRE", + projectStatusACTIVE: "ATTIVO", + projectStatusPAUSED: "IN PAUSA", + projectStatusCOMPLETED: "COMPLETATO", + projectStatusCANCELLED: "ANNULLATO", + projectPledgeTitle: "Supporta questo progetto", + projectPledgePlaceholder: "Importo in ECO", + projectBounties: "Taglie", + projectBountiesInputLabel: "Taglie (una per riga: Titolo|Importo [ECO]|Descrizione)", + projectBountiesPlaceholder: "Correggi bug UI|100|Link al problema\nScrivi documentazione|250|Descrivi esempi d'uso", + projectNoBounties: "Nessuna taglia trovata.", projectTitle: "Titolo", - projectAddBountyTitle: "New Bounty", - projectBountyTitle: "Bounty Title", - projectBountyAmount: "Amount (ECO)", + projectAddBountyTitle: "Nuova taglia", + projectBountyTitle: "Titolo taglia", + projectBountyAmount: "Importo (ECO)", projectBountyDescription: "Descrizione", - projectMilestoneSelect: "Select Milestone", - projectBountyCreateButton: "Create Bounty", - projectBountyStatus: "Bounty Status", - projectBountyOpen: "open", - projectBountyClaimed: "claimed", - projectBountyDone: "completed", - projectBountyClaimedBy: "claimed by", - projectBountyClaimButton: "claim", - projectBountyCompleteButton: "Mark Completed", - projectMilestones: "Milestones", - projectAddMilestoneTitle: "New milestone", - projectMilestoneTitle: "Milestone Title", - projectMilestoneTargetPercent: "Percent (%)", + projectMilestoneSelect: "Seleziona traguardo", + projectBountyCreateButton: "Crea taglia", + projectBountyStatus: "Stato taglia", + projectBountyOpen: "aperta", + projectBountyClaimed: "rivendicata", + projectBountyDone: "completata", + projectBountyClaimedBy: "rivendicata da", + projectBountyClaimButton: "rivendica", + projectBountyCompleteButton: "Segna come completata", + projectMilestones: "Traguardi", + projectAddMilestoneTitle: "Nuovo traguardo", + projectMilestoneTitle: "Titolo traguardo", + projectMilestoneTargetPercent: "Percentuale (%)", projectMilestoneDueDate: "Data", - projectMilestoneCreateButton: "Create Milestone", - projectMilestoneStatus: "Milestone Status", - projectMilestoneOpen: "open", - projectMilestoneDone: "completed", - projectMilestoneMarkDone: "Mark as Completed", - projectMilestoneDue: "due", - projectNoMilestones: "No milestones found.", - projectMilestoneMarkDone: "Mark as Done", - projectMilestoneTitlePlaceholder: "Enter milestone title", - projectMilestoneDescriptionPlaceholder: "Enter description for this milestone", - projectMilestoneDescription: "Milestone Description", - projectBudgetGoal: "Budget (Goal)", - projectBudgetAssigned: "Assigned to bounties", - projectBudgetRemaining: "Remaining", - projectBudgetOver: "⚠ Over budget: assigned exceeds goal", - projectFollowers: "Followers", - projectFollowersTitle: "Followers", - projectFollowersNone: "No followers yet.", - projectMore: "more", - projectYouFollowHint: "You follow this project", - projectBackers: "Backers", - projectBackersTitle: "Backers", - projectBackersTotal: "Total backers", - projectBackersTotalPledged: "Total pledged", - projectBackersYourPledge: "Your pledge", - projectBackersNone: "No pledges yet.", - projectNoRemainingBudget: "No remaining budget.", - projectFilterBackers: "BACKERS", - projectFilterApplied: "APPLIED", - projectAppliedTitle: "APPLIED", - projectBackersLeaderboardTitle: "Top Backers", - projectNoBackersFound: "No backers found.", - projectBackerAmount: "Total contributed", - projectBackerPledges: "Pledges", + projectMilestoneCreateButton: "Crea traguardo", + projectMilestoneStatus: "Stato traguardo", + projectMilestoneOpen: "aperto", + projectMilestoneDone: "completato", + projectMilestoneMarkDone: "Segna come completato", + projectMilestoneDue: "scadenza", + projectNoMilestones: "Nessun traguardo trovato.", + projectMilestoneMarkDone: "Segna come completato", + projectMilestoneTitlePlaceholder: "Inserisci titolo traguardo", + projectMilestoneDescriptionPlaceholder: "Inserisci descrizione per questo traguardo", + projectMilestoneDescription: "Descrizione traguardo", + projectBudgetGoal: "Budget (obiettivo)", + projectBudgetAssigned: "Assegnato alle taglie", + projectBudgetRemaining: "Rimanente", + projectBudgetOver: "⚠ Budget superato: l'assegnato supera l'obiettivo", + projectFollowers: "Sostenitori", + projectFollowersTitle: "Sostenitori", + projectFollowersNone: "Nessun sostenitore ancora.", + projectMore: "altri", + projectYouFollowHint: "Stai seguendo questo progetto", + projectBackers: "Finanziatori", + projectBackersTitle: "Finanziatori", + projectBackersTotal: "Finanziatori totali", + projectBackersTotalPledged: "Totale contribuito", + projectBackersYourPledge: "Il tuo contributo", + projectBackersNone: "Nessun contributo ancora.", + projectNoRemainingBudget: "Nessun budget rimanente.", + projectFilterBackers: "FINANZIATORI", + projectFilterApplied: "CANDIDATURE", + projectAppliedTitle: "CANDIDATURE", + projectBackersLeaderboardTitle: "Migliori finanziatori", + projectNoBackersFound: "Nessun finanziatore trovato.", + projectBackerAmount: "Totale contribuito", + projectBackerPledges: "Contributi", projectBackerProjects: "Progetti", projectPledgeAmount: "Importo", - projectSelectMilestoneOrBounty: "Select Milestone or Bounty", - projectPledgeButton: "Pledge", - //footer + projectSelectMilestoneOrBounty: "Seleziona traguardo o taglia", + projectPledgeButton: "Contribuisci", footerLicense: "GPLv3", - footerPackage: "Package", - footerVersion: "Version", - //modules + footerPackage: "Pacchetto", + footerVersion: "Versione", modulesModuleName: "Nome", modulesModuleDescription: "Descrizione", modulesModuleStatus: "Stato", - modulesTotalModulesLabel: "Loaded Modules", + modulesTotalModulesLabel: "Moduli caricati", modulesEnabledModulesLabel: "Attivato", modulesDisabledModulesLabel: "Disattivato", - modulesPopularLabel: "Popular", - modulesPopularDescription: "Module to receive posts that are trending, most viewed, or most commented on.", + modulesPopularLabel: "In evidenza", + modulesPopularDescription: "Modulo per ricevere i post più popolari, più visti o più commentati.", modulesTopicsLabel: "Argomenti", - modulesTopicsDescription: "Module to receive discussion categories based on shared interests.", + modulesTopicsDescription: "Modulo per ricevere categorie di discussione basate su interessi comuni.", modulesSummariesLabel: "Riassunti", - modulesSummariesDescription: "Module to receive summaries of long discussions or posts.", + modulesSummariesDescription: "Modulo per ricevere riassunti di discussioni o post lunghi.", modulesLatestLabel: "Più recenti", - modulesLatestDescription: "Module to receive the most recent posts and discussions.", + modulesLatestDescription: "Modulo per ricevere i post e le discussioni più recenti.", modulesThreadsLabel: "Discussioni", - modulesThreadsDescription: "Module to receive conversations grouped by topic or question.", + modulesThreadsDescription: "Modulo per ricevere conversazioni raggruppate per argomento o domanda.", modulesMultiverseLabel: "Multiverso", - modulesMultiverseDescription: "Module to receive content from other federated peers.", + modulesMultiverseDescription: "Modulo per ricevere contenuti da altri peer federati.", modulesInvitesLabel: "Inviti", - modulesInvitesDescription: "Module to manage and apply invite codes.", + modulesInvitesDescription: "Modulo per gestire e applicare codici invito.", modulesWalletLabel: "Portafoglio", - modulesWalletDescription: "Module to manage your digital assets (ECOin).", - modulesLegacyLabel: "Legacy", - modulesLegacyDescription: "Module to manage your secret (private key) quickly and securely.", - modulesCipherLabel: "Cipher", - modulesCipherDescription: "Module to encrypt and decrypt your text symmetrically (using a shared password).", + modulesWalletDescription: "Modulo per gestire i tuoi asset digitali (ECOin).", + modulesLegacyLabel: "Chiavi", + modulesLegacyDescription: "Modulo per gestire il tuo segreto (chiave privata) in modo rapido e sicuro.", + modulesCipherLabel: "Crittografia", + modulesCipherDescription: "Modulo per crittografare e decifrare il tuo testo simmetricamente (usando una password condivisa).", modulesBookmarksLabel: "Segnalibri", - modulesBookmarksDescription: "Module to discover and manage bookmarks.", + modulesBookmarksDescription: "Modulo per scoprire e gestire i segnalibri.", modulesVideosLabel: "Video", - modulesVideosDescription: "Module to discover and manage videos.", + modulesVideosDescription: "Modulo per scoprire e gestire i video.", modulesDocsLabel: "Documenti", - modulesDocsDescription: "Module to discover and manage documents.", + modulesDocsDescription: "Modulo per scoprire e gestire i documenti.", modulesAudiosLabel: "Audio", - modulesAudiosDescription: "Module to discover and manage audios.", + modulesAudiosDescription: "Modulo per scoprire e gestire gli audio.", modulesTagsLabel: "Tag", - modulesTagsDescription: "Module to discover and explore taxonomy patterns (tags).", + modulesTagsDescription: "Modulo per scoprire ed esplorare i pattern tassonomici (tag).", modulesImagesLabel: "Immagini", - modulesImagesDescription: "Module to discover and manage images.", + modulesImagesDescription: "Modulo per scoprire e gestire le immagini.", modulesTrendingLabel: "Tendenze", - modulesTrendingDescription: "Module to explore the most popular content.", + modulesTrendingDescription: "Modulo per esplorare i contenuti più popolari.", modulesEventsLabel: "Eventi", - modulesEventsDescription: "Module to discover and manage events.", + modulesEventsDescription: "Modulo per scoprire e gestire gli eventi.", modulesTasksLabel: "Compiti", - modulesTasksDescription: "Module to discover and manage tasks.", + modulesTasksDescription: "Modulo per scoprire e gestire i compiti.", modulesMarketLabel: "Mercato", - modulesMarketDescription: "Module to exchange goods or services.", - modulesTribesLabel: "Tribes", - modulesTribesDescription: "Module to explore or create tribes (groups).", - modulesVotationsLabel: "Votations", - modulesVotationsDescription: "Module to discover and manage votations.", + modulesMarketDescription: "Modulo per scambiare beni o servizi.", + modulesShopsLabel: "Negozi", + modulesShopsDescription: "Modulo per gestire e scoprire negozi.", + modulesTribesLabel: "Tribù", + modulesTribesDescription: "Modulo per esplorare o creare tribù (gruppi).", + modulesVotationsLabel: "Votazioni", + modulesVotationsDescription: "Modulo per scoprire e gestire le votazioni.", modulesReportsLabel: "Rapporti", - modulesReportsDescription: "Module to manage and track reports related to issues, bugs, abuses, and content warnings.", + modulesReportsDescription: "Modulo per gestire e monitorare segnalazioni relative a problemi, bug, abusi e avvisi sui contenuti.", modulesOpinionsLabel: "Opinioni", - modulesOpinionsDescription: "Module to discover and vote on opinions.", + modulesOpinionsDescription: "Modulo per scoprire e votare opinioni.", modulesTransfersLabel: "Trasferimenti", - modulesTransfersDescription: "Module to discover and manage smart-contracts (transfers).", + modulesTransfersDescription: "Modulo per scoprire e gestire i contratti intelligenti (trasferimenti).", modulesFeedLabel: "Feed", - modulesFeedDescription: "Module to discover and share short-texts (feeds).", + modulesFeedDescription: "Modulo per scoprire e condividere testi brevi (feed).", modulesParliamentLabel: "Parlamento", - modulesParliamentDescription: "Module to elect governments and vote on laws.", + modulesParliamentDescription: "Modulo per eleggere governi e votare leggi.", modulesCourtsLabel: "Tribunali", - modulesCourtsDescription: "Module to resolve conflicts and emit veredicts.", + modulesCourtsDescription: "Modulo per risolvere conflitti ed emettere verdetti.", modulesPixeliaLabel: "Pixelia", - modulesPixeliaDescription: "Module to draw on a collaborative grid.", + modulesPixeliaDescription: "Modulo per disegnare su una griglia collaborativa.", modulesAgendaLabel: "Agenda", - modulesAgendaDescription: "Module to manage all your assigned items.", + modulesAgendaDescription: "Modulo per gestire tutti gli elementi assegnati a te.", modulesAILabel: "AI", - modulesAIDescription: "Module to talk with a LLM called '42'.", - modulesForumLabel: "Forums", - modulesForumDescription: "Module to discover and manage forums.", + modulesAIDescription: "Modulo per parlare con un LLM chiamato '42'.", + modulesForumLabel: "Forum", + modulesForumDescription: "Modulo per scoprire e gestire i forum.", modulesJobsLabel: "Lavori", - modulesJobsDescription: "Module to discover and manage jobs.", + modulesJobsDescription: "Modulo per scoprire e gestire i lavori.", modulesProjectsLabel: "Progetti", - modulesProjectsDescription: "Module to explore, crowd-funding and manage projects.", + modulesProjectsDescription: "Modulo per esplorare, finanziare collettivamente e gestire i progetti.", modulesBankingLabel: "Banca", - modulesBankingDescription: "Module to determine the real value of ECOIN and distribute a UBI using the common treasury.", + modulesBankingDescription: "Modulo per determinare il valore reale di ECOIN e distribuire una UBI usando la tesoreria comune.", modulesFavoritesLabel: "Preferiti", - modulesFavoritesDescription: "Module to manage your favorite content.", - fileTooLargeTitle: "File too large", - fileTooLargeMessage: "The file exceeds the maximum allowed size (50 MB). Please select a smaller file.", - goBack: "Go back", + modulesFavoritesDescription: "Modulo per gestire i tuoi contenuti preferiti.", + fileTooLargeTitle: "File troppo grande", + fileTooLargeMessage: "Il file supera la dimensione massima consentita (50 MB). Seleziona un file più piccolo.", + goBack: "Torna indietro", directConnect: "Connessione diretta", directConnectDescription: "Connettiti direttamente a un peer inserendo indirizzo IP, porta e chiave pubblica.", - peerHost: "IP / Hostname", + peerHost: "IP / Nome host", peerPort: "Porta (predefinita: 8008)", peerPublicKey: "Chiave pubblica (@...ed25519)", connectAndFollow: "Connetti", deviceSourceLabel: "Dispositivo", modulesPresetTitle: "Configurazioni Comuni", - modulesPreset_minimal: "Minimale", + modulesPreset_minimal: "Minimo", modulesPreset_basic: "Base", modulesPreset_social: "Sociale", modulesPreset_economy: "Economia", @@ -2697,6 +2771,425 @@ module.exports = { dominantOpinionLabel: "Opinione dominante", uploadMedia: "Carica media (max: 50MB)", - //END + courtsRespondentInvalid: "Deve essere un ID SSB valido (@...ed25519)", + feedDetailTitle: "Feed", + feedOpenDiscussion: "Apri discussione", + feedPostComment: "Pubblica commento", + noComments: "Nessun commento ancora", + mapsLabel: "Mappe", + mapTitle: "Mappe", + mapDescription: "Esplora e gestisci mappe offline nella tua rete.", + mapMineSectionTitle: "Le Tue Mappe", + mapCreateSectionTitle: "Crea Mappa", + mapUpdateSectionTitle: "Aggiorna Mappa", + mapAllSectionTitle: "Mappe", + mapRecentSectionTitle: "Mappe Recenti", + mapFavoritesSectionTitle: "Preferiti", + mapFilterAll: "TUTTI", + mapFilterMine: "MIEI", + mapFilterRecent: "RECENTI", + mapFilterFavorites: "PREFERITI", + mapUploadButton: "Crea Mappa", + mapCreateButton: "Crea Mappa", + mapUpdateButton: "Aggiorna", + mapDeleteButton: "Elimina", + mapAddFavoriteButton: "Aggiungi ai preferiti", + mapRemoveFavoriteButton: "Rimuovi dai preferiti", + mapLatLabel: "Latitudine", + mapLatPlaceholder: "es. 41.9028", + mapLngLabel: "Longitudine", + mapLngPlaceholder: "es. 12.4964", + mapDescriptionLabel: "Descrizione", + mapDescriptionPlaceholder: "Descrivi la mappa o la posizione...", + mapTypeLabel: "Tipo di mappa", + mapTypeSingle: "SINGOLO (solo posizione iniziale)", + mapTypeOpen: "APERTO (chiunque può aggiungere marcatori)", + mapTypeClosed: "CHIUSO (solo il creatore aggiunge marcatori)", + mapTagsLabel: "Tag", + mapTagsPlaceholder: "Inserisci tag separati da virgole", + mapUrlLabel: "URL della mappa", + mapPickCoordLabel: "Oppure seleziona una posizione sulla griglia:", + mapMarkersLabel: "marcatori", + mapMarkersTitle: "Marcatori", + mapMarkerDefault: "Marcatore", + mapMarkerLatLabel: "Latitudine marcatore", + mapMarkerLngLabel: "Longitudine marcatore", + mapMarkerLabelField: "Etichetta marcatore", + mapMarkerLabelPlaceholder: "Descrivi questo marcatore...", + markerImageLabel: "Immagine del Marcatore", + mapAddMarkerTitle: "Aggiungi Marcatore", + mapAddMarkerButton: "Aggiungi Marcatore", + mapCleanMarkerButton: "Clean Marker", + mapApplyZoom: "Applica Zoom", + mapSearchPlaceholder: "Cerca descrizione, tag, autore...", + mapSearchButton: "Cerca", + mapUpdatedAt: "Aggiornato", + mapNoMatch: "Nessuna mappa corrisponde alla tua ricerca.", + noMaps: "Nessuna mappa disponibile.", + mapLocationTitle: "Posizione", + mapVisitLabel: "Visita mappa", + typeMap: "MAPPE", + typeMapMarker: "MARCATORE MAPPA", + modulesMapLabel: "Mappe", + modulesMapDescription: "Modulo per gestire e condividere mappe offline.", + padsTitle: "Pad", + padTitle: "Pad", + modulesPadsLabel: "Pad", + modulesPadsDescription: "Modulo per gestire editor di testo collaborativi.", + padFilterAll: "TUTTI", + padFilterMine: "MIO", + padFilterRecent: "RECENTE", + padFilterOpen: "APERTO", + padFilterClosed: "CHIUSO", + padCreate: "Crea Pad", + padUpdate: "Aggiorna Pad", + padDelete: "Elimina Pad", + padTitleLabel: "Titolo", + padTitlePlaceholder: "Inserisci il titolo del pad...", + padStatusLabel: "Stato", + padStatusOpen: "APERTO", + padStatusInviteOnly: "SOLO SU INVITO", + padStatusClosed: "CHIUSO", + padDeadlineLabel: "Scadenza", + padTagsLabel: "Tag", + padTagsPlaceholder: "tag1, tag2, ...", + padMembersLabel: "Membri", + padVisitPad: "Visita Pad", + padShareUrl: "Condividi URL", + padCreated: "Creato", + padAuthor: "Autore", + padGenerateCode: "Genera Codice", + padInviteCodeLabel: "Codice Invito", + padInviteCodePlaceholder: "Inserisci il codice invito...", + padValidateInvite: "Valida", + padStartEditing: "INIZIA A MODIFICARE!", + padEditorPlaceholder: "Inizia a scrivere...", + padSubmitEntry: "Invia", + padNoEntries: "Nessuna voce ancora.", + padAllSectionTitle: "Tutti i Pad", + padMineSectionTitle: "I Miei Pad", + padRecentSectionTitle: "Pad Recenti", + padOpenSectionTitle: "Pad Aperti", + padClosedSectionTitle: "Pad Chiusi", + padCreateSectionTitle: "Crea Nuovo Pad", + padUpdateSectionTitle: "Aggiorna Pad", + padInviteGenerated: "Codice Invito Generato", + typePad: "PAD", + padNew: "NUOVO", + padAddFavorite: "Aggiungi ai Preferiti", + padRemoveFavorite: "Rimuovi dai Preferiti", + padClose: "Chiudi Pad", + padBackToEditor: "Torna all'editor", + padSearchPlaceholder: "Cerca pad...", + + modulesChatsLabel: "Chat", + modulesChatsDescription: "Modulo per scoprire e gestire chat cifrate.", + typeChat: "CHAT", + typeChatMessage: "MESSAGGIO CHAT", + chatLabel: "CHAT", + chatMessageLabel: "MESSAGGI CHAT", + chatsTitle: "Chat", + chatMineSectionTitle: "Your Chats", + chatRecentTitle: "Recent Chats", + chatFavoritesTitle: "Preferiti", + chatOpenTitle: "Open Chats", + chatClosedTitle: "Closed Chats", + chatDescription: "Descrizione", + chatCategory: "Categoria", + chatStatus: "STATO", + chatFilterAll: "TUTTI", + chatFilterMine: "MIO", + chatFilterRecent: "RECENTE", + chatFilterFavorites: "PREFERITI", + chatFilterOpen: "APERTO", + chatFilterClosed: "CHIUSO", + chatCreate: "Crea Chat", + chatUpdate: "Aggiorna Chat", + chatDelete: "Elimina Chat", + chatClose: "Chiudi Chat", + chatVisitChat: "VISITA CHAT", + chatUntitled: "Chat senza titolo", + chatNoItems: "Nessuna chat trovata.", + chatParticipants: "Partecipanti", + chatStartChatting: "INIZIA A CHATTARE!", + chatGenerateCode: "Genera Codice", + chatShareUrl: "Condividi URL", + chatCreatedAt: "CREATO", + chatSearchPlaceholder: "Cerca chat...", + chatStatusOpen: "APERTO", + chatStatusInviteOnly: "SOLO SU INVITO", + chatStatusClosed: "CHIUSO", + chatSendMessage: "Invia", + chatMessagePlaceholder: "Scrivi il tuo messaggio...", + chatNoMessages: "Ancora nessun messaggio.", + chatLeave: "Abbandona Chat", + chatInviteCodeLabel: "Inserisci codice invito", + chatJoinByInvite: "Unisciti", + chatTitlePlaceholder: "Titolo chat", + chatDescriptionPlaceholder: "Descrizione chat", + chatTagsPlaceholder: "tag1, tag2, tag3", + chatImageLabel: "Seleziona un file immagine (.jpeg, .jpg, .png, .gif)", + chatInviteCode: "Codice Invito", + chatAuthor: "Autore", + chatCreated: "Creato", + chatAddFavorite: "Aggiungi ai Preferiti", + chatRemoveFavorite: "Rimuovi dai Preferiti", + chatPM: "MP", + chatStatusLabel: "Stato", + chatCategoryLabel: "Categoria", + chatParticipantsLabel: "Partecipanti", + gamesTitle: "Giochi", + gamesDescription: "Scopri e gioca ad alcuni giochi.", + gamesFilterAll: "TUTTI", + gamesPlayButton: "GIOCA!", + gamesBackToGames: "Torna ai Giochi", + modulesGamesLabel: "Giochi", + modulesGamesDescription: "Modulo per scoprire e giocare ad alcuni giochi.", + gamesCocolandTitle: "Cocoland", + gamesCocolandDesc: "Una noce di cocco con occhi che salta palme e raccoglie ECOins.", + gamesTheFlowTitle: "ECOinflow", + gamesTheFlowDesc: "Collega i PUB agli abitanti tramite validatori, negozi e accumulatori. Sopravvivi alla minaccia CBDC!", + gamesNeonInfiltratorTitle: "Neon Infiltrator", + gamesNeonInfiltratorDesc: "Infiltra la griglia, raccogli dati riservati, evita i droni di sicurezza e fuggi. Quanti livelli riesci a superare?", + gamesSpaceInvadersTitle: "Space Invaders", + gamesSpaceInvadersDesc: "Fermate l'invasione aliena! Abbattete le ondate di invasori.", + gamesArkanoidTitle: "Arkanoid", + gamesArkanoidDesc: "Rompi tutti i mattoni con la tua racchetta e la pallina. Una sfida arcade classica.", + gamesPingPongTitle: "PingPong", + gamesPingPongDesc: "Ping-pong classico contro un'IA. Il primo a 5 punti vince.", + gamesOutrunTitle: "Outrun", + gamesOutrunDesc: "Corsa contro il tempo! Evita il traffico e raggiungi il traguardo prima che scada.", + gamesAsteroidsTitle: "Asteroids", + gamesAsteroidsDesc: "Pilota la tua navicella in un campo di asteroidi. Sparali prima che ti colpiscano.", + gamesRockPaperScissorsTitle: "Carta Forbici Sasso", + gamesRockPaperScissorsDesc: "Carta, forbici, sasso contro una IA. Il migliore dei tre round vince.", + gamesTikTakToeTitle: "TikTakToe", + gamesTikTakToeDesc: "Tris classico contro l'IA. Allinea tre simboli per vincere.", + gamesFlipFlopTitle: "FlipFlop", + gamesFlipFlopDesc: "Lancia una moneta e scommetti su testa o croce. Quanta fortuna hai?", + games8BallTitle: "8Ball Pool", + games8BallDesc: "Top-down pool. Click to aim, hold to charge power. Pot all balls in the fewest shots.", + gamesArtilleryTitle: "Artillery", + gamesArtilleryDesc: "Aim your cannon, factor in the wind, and hit the target. 5 rounds, fewest shots wins.", + gamesLabyrinthTitle: "Labyrinth", + gamesLabyrinthDesc: "Escape the maze before your moves run out. Each level gets bigger and harder.", + gamesCocomanTitle: "Cocoman", + gamesCocomanDesc: "Eat all the dots, avoid the ghosts. Turn-based Pac-Man — every key press counts.", + gamesTetrisTitle: "Tetris", + gamesAudioPendulumTitle: "Audio Pendulum", + gamesAudioPendulumDesc: "Chaotic physics simulator with real-time audio synthesis. Angular velocities become frequencies, peaks become drum hits. No two simulations sound alike.", + gamesTetrisDesc: "Classic falling blocks. Clear lines to score. How long can you last?", + gamesQuakeTitle: "Quake Arena", + gamesQuakeDesc: "First-person raycasting arena. Move and shoot your way through waves of enemies.", + gamesFilterScoring: "SCORING", + gamesHallOfFame: "Hall of Fame", + gamesHallPlayer: "Player", + gamesHallScore: "Score", + gamesNoScores: "No scores yet.", + calendarsTitle: "Calendari", + calendarTitle: "Calendario", + modulesCalendarsLabel: "Calendari", + modulesCalendarsDescription: "Modulo per scoprire e gestire i calendari.", + typeCalendar: "CALENDARIO", + calendarFilterAll: "TUTTI", + calendarFilterMine: "I MIEI", + calendarFilterOpen: "APERTO", + calendarFilterClosed: "CHIUSO", + calendarFilterRecent: "RECENTI", + calendarFilterFavorites: "PREFERITI", + calendarCreate: "Crea calendario", + calendarUpdate: "Aggiorna", + calendarDelete: "Elimina", + calendarTitleLabel: "Titolo", + calendarTitlePlaceholder: "Titolo del calendario...", + calendarStatusLabel: "Stato", + calendarStatusOpen: "APERTO", + calendarStatusClosed: "CHIUSO", + calendarDeadlineLabel: "Deadline", + calendarTagsLabel: "Tag", + calendarTagsPlaceholder: "tag1, tag2...", + calendarParticipantsLabel: "Partecipanti", + calendarParticipantsCount: "Partecipanti", + calendarVisitCalendar: "Visita il calendario", + calendarCreated: "Creato", + calendarAuthor: "Autore", + calendarJoin: "Partecipa", + calendarJoined: "Iscritto", + calendarAddDate: "Aggiungi data", + calendarAddNote: "Aggiungi nota", + calendarDateLabel: "Data", + calendarDatePlaceholder: "Descrivi questa data...", + calendarNoteLabel: "Nota", + calendarNotePlaceholder: "Aggiungi una nota...", + calendarFirstDateLabel: "Data", + calendarFirstNoteLabel: "Note", + calendarIntervalLabel: "Interval", + calendarIntervalWeekly: "Weekly", + calendarIntervalMonthly: "Monthly", + calendarIntervalYearly: "Yearly", + calendarFormDescription: "Descrizione", + calendarNoDates: "Nessuna data aggiunta.", + calendarNoNotes: "Nessuna nota.", + calendarsNoItems: "Nessun calendario trovato.", + calendarsDescription: "Scopri e gestisci i calendari nella tua rete.", + calendarMonthPrev: "← Precedente", + calendarMonthNext: "Successivo →", + calendarMonthLabel: "Date", + calendarsShareUrl: "URL di condivisione", + calendarAllSectionTitle: "Calendari", + calendarRecentSectionTitle: "Calendari Recenti", + calendarFavoritesSectionTitle: "Preferiti", + calendarMineSectionTitle: "I Tuoi Calendari", + calendarOpenSectionTitle: "Calendari aperti", + calendarClosedSectionTitle: "Calendari chiusi", + calendarCreateSectionTitle: "Crea nuovo calendario", + calendarUpdateSectionTitle: "Aggiorna calendario", + calendarAddFavorite: "Aggiungi ai preferiti", + calendarDeleteNote: "Delete", + calendarRemoveFavorite: "Rimuovi dai preferiti", + calendarSearchPlaceholder: "Cerca calendari...", + calendarAddEntry: "Aggiungi Voce", + calendarLeave: "Lascia Calendario", + statsCalendar: "Calendari", + statsCalendarDate: "Date calendario", + statsCalendarNote: "Note calendario", + chatAccessDenied: "Non hai accesso a questa chat. Chiedi un invito per accedere al contenuto.", + padAccessDenied: "Non hai accesso a questo pad. Chiedi un invito per accedere al contenuto.", + contentAccessDenied: "Non hai accesso a questo contenuto.", + blockAccessRestricted: "Accesso limitato", + tribeContentAccessDenied: "Accesso Negato", + tribeContentAccessDeniedMsg: "Questo contenuto appartiene a una tribù. Devi essere membro per accedervi.", + tribeViewTribes: "Visualizza Tribù", + torrentsTitle: "Torrent", + torrentsDescription: "Esplora e gestisci i torrent nella tua rete.", + torrentAllSectionTitle: "Torrent", + torrentMineSectionTitle: "I Tuoi Torrent", + torrentRecentSectionTitle: "Torrent Recenti", + torrentTopSectionTitle: "Migliori Torrent", + torrentFavoritesSectionTitle: "Preferiti", + torrentFilterAll: "TUTTI", + torrentFilterMine: "MIEI", + torrentFilterRecent: "RECENTI", + torrentFilterTop: "MIGLIORI", + torrentFilterFavorites: "PREFERITI", + torrentCreateSectionTitle: "Carica Torrent", + torrentUpdateSectionTitle: "Aggiorna Torrent", + torrentCreateButton: "Carica Torrent", + torrentUpdateButton: "Aggiorna", + torrentDeleteButton: "Elimina", + torrentAddFavoriteButton: "Aggiungi ai Preferiti", + torrentRemoveFavoriteButton: "Rimuovi dai Preferiti", + torrentFileLabel: "Seleziona file torrent (.torrent)", + torrentTitleLabel: "Titolo", + torrentTitlePlaceholder: "Titolo", + torrentDescriptionLabel: "Descrizione", + torrentDescriptionPlaceholder: "Descrizione", + torrentTagsLabel: "Tag", + torrentTagsPlaceholder: "Inserisci tag separati da virgole", + torrentSizeLabel: "Dimensione", + torrentDownloadButton: "DOWNLOAD IT!", + torrentNoFile: "Nessun file torrent", + noTorrents: "Nessun torrent trovato.", + torrentSearchPlaceholder: "Cerca titolo, tag, autore...", + torrentSearchButton: "Cerca", + torrentSortRecent: "Più recenti", + torrentSortOldest: "Più vecchi", + torrentSortTop: "Più votati", + torrentNoMatch: "Nessun torrent corrispondente.", + torrentMessageAuthorButton: "Invia Messaggio all'Autore", + torrentUpdatedAt: "Aggiornato", + statsTorrent: "Torrent", + typeTorrent: "TORRENT", + modulesTorrentsLabel: "Torrent", + modulesTorrentsDescription: "Modulo per scoprire e gestire i torrent.", + favoritesFilterTorrents: "TORRENT", + tribeSectionTorrents: "TORRENT", + tribeCreateTorrent: "Carica Torrent", + tribeMediaTypeTorrent: "Torrent", + settingsWishTitle: "Desiderio", + settingsWishDesc: "Configura il desiderio del tuo Avatar.", + settingsWishWhole: "Multiverse", + settingsWishMutuals: "Only mutual-support", + settingsPmVisibilityTitle: "Messaggi Privati", + settingsPmVisibilityDesc: "Configura il livello di esposizione ai messaggi privati.", + settingsPmVisibilityWhole: "Multiverse", + settingsPmVisibilityMutuals: "Only mutual-support", + pmMutualNotice: "L'invio è un guardrail UX. La ricezione è un filtro di attenzione.", + pmBlockedNonMutual: "Puoi inviare MP solo ad abitanti in supporto reciproco.", + inhabitantsPendingFollowsTitle: "Richieste di supporto in attesa", + inhabitantsPendingAccept: "Accetta", + inhabitantsPendingReject: "Rifiuta", + bxEncrypted: "CRITTOGRAFATO", + bxEncryptedHexLabel: "Testo cifrato (anteprima)", + tribeSectionGovernance: "GOVERNANCE", + tribeSubStatusPublic: "PUBBLICA", + tribeSubStatusPrivate: "PRIVATA", + tribeSubInheritedPrivate: "PRIVATA (ereditata dalla tribù principale)", + tribePadInviteRequired: "Non hai accesso al pad. Richiedi un invito.", + tribeChatInviteRequired: "Non hai accesso alla chat. Richiedi un invito.", + tribeGovernanceDesc: "Governance interna di questa tribù.", + tribeGovernanceNoGov: "Nessun governo attivo", + tribeGovernanceNoGovDesc: "Questa tribù non ha ancora eletto un governo.", + tribeGovernanceAlreadyPublished: "Questa tribù ha già una candidatura aperta.", + tribeGovernanceProposeInternal: "Proponi candidatura interna", + tribeGovernanceInternalCandidatures: "Candidature interne", + tribeGovernanceNoCandidatures: "Nessuna candidatura aperta.", + tribeGovernanceAddRule: "Aggiungi regola", + tribeGovernanceNoRules: "Nessuna regola.", + tribeGovernanceNoLeaders: "Nessun leader eletto.", + tribeGovernanceComingSoon: "Presto nel modulo governance.", + logsTitle: "Diario", + logsDescription: "Registra la tua esperienza nella rete.", + logsReadMore: "Leggi di più", + logsViewTitle: "Diario", + logsColumnType: "Tipo", + logsView: "Vedi", + logsManualPrompt: "Scrivi il tuo diario", + logsUpdateButton: "Aggiorna", + logsEditTitle: "Modifica voce", + logsCreateDescription: "Registra la tua esperienza...", + logsCreateTitle: "Crea voce", + logsWriteButton: "Scrivi", + logsTextPlaceholder: "Descrivi le tue esperienze...", + logsTextField: "Testo", + logsLabelPlaceholder: "Etichetta...", + logsLabelField: "Scrivi il tuo diario (etichetta)", + logsAiDisabledWarn: "Attiva il modulo IA in /modules per usare le voci scritte dall'IA.", + logsAiContextValue: "Giorno di blockchain", + logsAiContext: "Contesto", + logsAiModStatus: "AImod", + logsModeApply: "Applica!", + logsModeAIWritten: "AI-Assistant", + logsModeManual: "Manuale", + logsModeAI: "IA", + logsColumnDelete: "Elimina", + logsColumnEdit: "Modifica", + logsColumnLog: "Diario", + logsColumnDate: "Data", + logsDelete: "Elimina", + logsEdit: "Modifica", + logsFilterAlways: "SEMPRE", + logsFilterYear: "ULTIMO ANNO", + logsFilterMonth: "ULTIMO MESE", + logsFilterWeek: "ULTIMA SETTIMANA", + logsFilterToday: "OGGI", + logsFilterRecent: "RECENTI", + logsFilterAll: "TUTTI", + logsCreate: "Crea voce", + logsExport: "Esporta diario", + logsExportOne: "Esporta", + logsViewDetails: "Vedi dettagli", + logsGenerateButton: "Genera testo", + logsSearchText: "Cerca nei diari...", + logsSearchAnyType: "Qualsiasi tipo", + logsSearchButton: "Cerca", + logsEmpty: "Nessuna voce ancora.", + modulesLogsLabel: "Diario", + modulesLogsDescription: "Modulo per registrare (tramite assistente IA) le tue esperienze.", + statsLogsTitle: "Diario", + statsLogsEntries: "Voci", + typeLog: "DIARIO", + blockchainCycle: "Ciclo", + } }; diff --git a/nodejs-project/nodejs-project/src/client/assets/translations/oasis_pt.js b/nodejs-project/nodejs-project/src/client/assets/translations/oasis_pt.js index c53022b6..78c6c149 100644 --- a/nodejs-project/nodejs-project/src/client/assets/translations/oasis_pt.js +++ b/nodejs-project/nodejs-project/src/client/assets/translations/oasis_pt.js @@ -50,7 +50,7 @@ module.exports = { private: "Caixa de entrada", privateDescription: "Ver e gerir as tuas mensagens privadas.", privateInbox: "CAIXA DE ENTRADA", - privateSent: "ENVIADAS", + privateSent: "Enviadas", privateFrom: "De", privateTo: "Para", privateDate: "Data", @@ -63,7 +63,7 @@ module.exports = { inReplyTo: "EM RESPOSTA A", pmPreview: "Pré-visualizar", pmPreviewTitle: "Pré-visualização da mensagem", - noPrivateMessages: "Ainda não recebeste mensagens privadas.", + noPrivateMessages: "Sem mensagens privadas.", peers: "Pares", privateDescription: ["As mensagens privadas são ",strong("encriptadas para a tua chave pública")," e têm um máximo de 7 destinatários."], search: "Pesquisa", @@ -74,19 +74,17 @@ module.exports = { continueReading: "Continuar a ler", moreComments: "mais comentários", readThread: "ler o resto da conversa", - // pixelia pixeliaTitle: 'Pixelia', - pixeliaDescription: 'Draw pixels on the grid and collaborARTe with others in your network.', - coordLabel: 'Coordinate (e.g., A3)', - coordPlaceholder: 'Enter coordinate', + pixeliaDescription: 'Desenha pixéis na grelha e colabor-ARTe com outros na tua rede.', + coordLabel: 'Coordenada (ex.: A3)', + coordPlaceholder: 'Introduz coordenada', contributorsTitle: "Contribuidores", pixeliaBy: "por", - colorLabel: 'Pick a color', - paintButton: 'Paint it!', - invalidCoordinate: 'Incorrect coordinate', + colorLabel: 'Escolhe uma cor', + paintButton: 'Pintar!', + invalidCoordinate: 'Coordenada incorreta', goToMuralButton: "Ver mural", - totalPixels: 'Total Pixels', - // modules + totalPixels: 'Total de pixéis', modules: "Módulos", modulesViewTitle: "Módulos", modulesViewDescription: "Configura o teu ambiente ativando ou desativando módulos.", @@ -117,858 +115,853 @@ module.exports = { transfersTitle: "Transferências", marketTitle: "Mercado", opinionsTitle: "Opiniões", - saveSettings: "Save configuration", + saveSettings: "Guardar configuração", apply: "Aplicar", - // menu categories - menuPersonal: "Personal", + menuPersonal: "Pessoal", menuContent: "Conteúdo", - menuGovernance: "Governance", - menuOffice: "Office", + menuGovernance: "Governação", + menuOffice: "Escritório", menuMultiverse: "Multiverso", - menuNetwork: "Network", - menuCreative: "Creative", - menuEconomy: "Economy", - menuMedia: "Media", - menuTools: "Tools", - // post actions + menuNetwork: "Rede", + menuCreative: "Criativo", + menuEconomy: "Economia", + menuMedia: "Multimédia", + menuTools: "Ferramentas", comment: "Comentário", - subtopic: "Subtopic", + subtopic: "Subtópico", json: "JSON", - createdAt: "Created At", + createdAt: "Criado em", createdBy: "por", - // relationships - unfollow: "Unsupport", + unfollow: "Deixar de apoiar", follow: "Apoiar", block: "Bloquear", - unblock: "Unblock", - newerPosts: "Newer posts", - olderPosts: "Older posts", - feedRangeEmpty: "The given range is empty for this feed. Try viewing the ", - seeFullFeed: "full feed", - feedEmpty: "The Oasis network has never seen posts from this account.", - beginningOfFeed: "This is the beginning of the feed", - noNewerPosts: "No newer posts have been received yet.", - relationshipNotFollowing: "You are not supported", - relationshipTheyFollow: "Supports you", - relationshipMutuals: "Mutual support", - relationshipFollowing: "You are supporting", - relationshipYou: "You", - relationshipBlocking: "You are blocking", - relationshipBlockedBy: "You are blocked", - relationshipMutualBlock: "Mutual block", - relationshipNone: "You are not supporting", - relationshipConflict: "Conflict", - relationshipBlockingPost: "Blocked post", - // spreads view - viewLikes: "View spreads", - spreadedDescription: "List of posts spread by the inhabitant.", - totalspreads: "Total spreads", - // composer - attachFiles: "Attach files", + unblock: "Desbloquear", + newerPosts: "Publicações mais recentes", + olderPosts: "Publicações mais antigas", + feedRangeEmpty: "O intervalo indicado está vazio para este feed. Tenta ver o ", + seeFullFeed: "feed completo", + feedEmpty: "A rede Oasis nunca viu publicações desta conta.", + beginningOfFeed: "Este é o início do feed", + noNewerPosts: "Ainda não foram recebidas publicações mais recentes.", + relationshipNotFollowing: "Não te apoia", + relationshipTheyFollow: "Apoia-te", + relationshipMutuals: "Apoio mútuo", + relationshipFollowing: "Estás a apoiar", + relationshipYou: "Tu", + relationshipBlocking: "Estás a bloquear", + relationshipBlockedBy: "Estás bloqueado", + relationshipMutualBlock: "Bloqueio mútuo", + relationshipNone: "Não estás a apoiar", + relationshipConflict: "Conflito", + relationshipBlockingPost: "Publicação bloqueada", + viewLikes: "Ver difusões", + spreadedDescription: "Lista de publicações difundidas pelo habitante.", + totalspreads: "Total de difusões", + attachFiles: "Anexar ficheiros", preview: "Pré-visualizar", - publish: "Write", - contentWarningPlaceholder: "Add a subject to the post (optional)", - privateWarningPlaceholder: "Add inhabitants to send a private post (optional)", + publish: "Publicar", + contentWarningPlaceholder: "Adiciona um assunto à publicação (opcional)", + privateWarningPlaceholder: "Adiciona habitantes para enviar uma publicação privada (opcional)", publishWarningPlaceholder: "...", publishCustomDescription: [ - "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.", + "LEMBRA-TE: Devido à tecnologia blockchain, uma vez publicado, não pode ser editado nem eliminado.", ], commentWarning: [ - "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.", + "LEMBRA-TE: Devido à tecnologia blockchain, uma vez publicado, não pode ser editado nem eliminado.", ], - commentPublic: "public", - commentPrivate: "private", + commentPublic: "público", + commentPrivate: "privado", commentLabel: ({ publicOrPrivate, markdownUrl }) => [ ], publishLabel: ({ markdownUrl, linkTarget }) => [ - "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.", + "LEMBRA-TE: Devido à tecnologia blockchain, uma vez publicado, não pode ser editado nem eliminado.", ], replyLabel: ({ markdownUrl }) => [ - "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.", + "LEMBRA-TE: Devido à tecnologia blockchain, uma vez publicado, não pode ser editado nem eliminado.", ], publishCustomInfo: ({ href }) => [ - "If you have experience, you can also ", - a({ href }, "write an advanced post"), + "Se tens experiência, também podes ", + a({ href }, "escrever uma publicação avançada"), ".", ], publishBasicInfo: ({ href }) => [ - "If you have not experience, you should ", - a({ href }, "write a post"), + "Se não tens experiência, deves ", + a({ href }, "escrever uma publicação"), ".", ], - publishCustom: "Write advanced post", - subtopicLabel: "Create a subtopic of this post", - //mentions - messagePreview: "Post Preview", + publishCustom: "Escrever publicação avançada", + subtopicLabel: "Criar um subtópico desta publicação", + messagePreview: "Pré-visualização da publicação", mentionsMatching: "Menções correspondentes", mentionsName: "Nome", mentionsRelationship: "Relacionamento", - //settings - updateit: "GET UPDATES!", - updateBannerText: "A new version of Oasis is available.", - updateBannerAction: "Update now →", + updateit: "OBTER ATUALIZAÇÕES!", + updateBannerText: "Uma nova versão do Oasis está disponível.", + updateBannerAction: "Atualizar agora →", info: "Info", settingsIntro: ({ version }) => [ `[SNH] ꖒ OASIS [ v.${version} ]`, ], - timeAgo: "ago", - sendTime: "about ", - theme: "Theme", + timeAgo: "atrás", + sendTime: "há ", + theme: "Tema", legacy: "Chaves", legacyTitle: "Chaves", - legacyDescription: "Manage your secret (private key) quickly and safely.", - legacyExportButton: "Export", - legacyImportButton: "Import", + legacyDescription: "Gere o teu segredo (chave privada) de forma rápida e segura.", + legacyExportButton: "Exportar", + legacyImportButton: "Importar", ssbLogStream: "Blokchain", - ssbLogStreamDescription: "Configure the message limit for Blockchain streams.", - saveSettings: "Save settings", - exportTitle: "Export data", - exportDescription: "Set password (min 32 characters long) to encrypt your key", - exportDataTitle: "Backup", - exportDataDescription: "Download your data (secret key excluded!)", - exportDataButton: "Download database", - pubWallet: "PUB Wallet", - pubWalletDescription: "Set the PUB wallet URL. This will be used for PUB transactions (including the UBI).", - pubWalletConfiguration: "Save configuration", - importTitle: "Import data", - importDescription: "Import your encrypted secret (private key) to enable your avatar", - importAttach: "Attach encrypted file (.enc)", - passwordLengthInfo: "Password must be at least 32 characters long.", - passwordImport: "Write your password to decrypt data that will be saved at your system home (name: secret)", - randomPassword: "Random password", - exportPasswordPlaceholder: "Use lowercase, uppercase, numbers & symbols", - fileInfo: "Your encrypted secret key will be saved at your system home (name: oasis.enc)", + ssbLogStreamDescription: "Configura o limite de mensagens para os fluxos da Blockchain.", + saveSettings: "Guardar definições", + exportTitle: "Exportar dados", + exportDescription: "Define uma senha (mínimo 32 caracteres) para encriptar a tua chave", + exportDataTitle: "Cópia de segurança", + exportDataDescription: "Descarrega os teus dados (chave secreta excluída!)", + exportDataButton: "Descarregar base de dados", + pubWallet: "Carteira PUB", + pubWalletDescription: "Define o URL da carteira PUB. Será usado para transações PUB (incluindo o UBI).", + pubWalletConfiguration: "Guardar configuração", + importTitle: "Importar dados", + importDescription: "Importa o teu segredo encriptado (chave privada) para ativar o teu avatar", + importAttach: "Anexar ficheiro encriptado (.enc)", + passwordLengthInfo: "A senha deve ter pelo menos 32 caracteres.", + passwordImport: "Escreve a tua senha para decifrar os dados que serão guardados no teu diretório pessoal (nome: secret)", + randomPassword: "Senha aleatória", + exportPasswordPlaceholder: "Usa minúsculas, maiúsculas, números e símbolos", + fileInfo: "A tua chave secreta encriptada será guardada no teu diretório pessoal (nome: oasis.enc)", themeIntro: - "Choose a theme.", - setTheme: "Set theme", + "Escolhe um tema.", + setTheme: "Definir tema", language: "Idioma", languageDescription: - "If you'd like to use another language, select it here.", - setLanguage: "Set language", + "Se preferires usar outro idioma, seleciona-o aqui.", + setLanguage: "Definir idioma", status: "Estado", peerConnections: "Pares", - peerConnectionsIntro: "Manage all your connections with other peers.", + peerConnectionsIntro: "Gere todas as tuas ligações com outros pares.", online: "Online", offline: "Offline", - discovered: 'Discovered', - unknown: 'Unknown', + discovered: 'Descobertos', + unknown: 'Desconhecido', pub: 'PUB', - supported: "Supported", - recommended: "Recommended", + supported: "Apoiados", + recommended: "Recomendados", blocked: "Bloqueados", - noConnections: "No peers connected.", - noDiscovered: "No peers discovered.", - noSupportedConnections: "No peers supported.", - noBlockedConnections: "No peers blocked.", - noRecommendedConnections: "No peers recommended.", + noConnections: "Nenhum par conectado.", + noDiscovered: "Nenhum par descoberto.", + noSupportedConnections: "Nenhum par apoiado.", + noBlockedConnections: "Nenhum par bloqueado.", + noRecommendedConnections: "Nenhum par recomendado.", connectionActionIntro: "", startNetworking: "Iniciar rede", stopNetworking: "Parar rede", restartNetworking: "Reiniciar rede", - sync: "Sync network", - indexes: "Indexes", + sync: "Sincronizar rede", + indexes: "Índices", indexesDescription: - "Rebuilding your indexes is safe, and may fix some types of bugs.", - homePageTitle: "Home", - homePageDescription: "Select which module you want as your home page.", - saveHomePage: "Set home", - //invites + "Reconstruir os teus índices é seguro e pode corrigir alguns tipos de erros.", + homePageTitle: "Início", + homePageDescription: "Seleciona qual módulo queres como página inicial.", + saveHomePage: "Definir início", invites: "Convites", invitesTitle: "Convites", - invitesInvites: "Invitations", - invitesDescription: "Manage and apply invite codes in your network.", - invitesTribesTitle: "Tribes", - invitesTribeInviteCodePlaceholder: "Enter tribe invite code", - invitesTribeJoinButton: "Join Tribe", + invitesInvites: "Convites", + invitesDescription: "Gere e aplica códigos de convite na tua rede.", + invitesTribesTitle: "Tribos", + invitesTribeInviteCodePlaceholder: "Introduz código de convite da tribo", + invitesTribeJoinButton: "Aderir à tribo", invitesPubsTitle: "PUBs", - invitesPubInviteCodePlaceholder: "Enter PUB invite code", - invitesAcceptInvite: "Join PUB", - invitesAcceptedInvites: "Federated Networks", - invitesNoInvites: "No invitations accepted, yet.", + invitesPubInviteCodePlaceholder: "Introduz código de convite PUB", + invitesAcceptInvite: "Aderir ao PUB", + invitesAcceptedInvites: "Redes federadas", + invitesNoInvites: "Ainda sem convites aceites.", invitesUnfollow: "Deixar de seguir", invitesFollow: "Seguir", - invitesUnfollowedInvites: "Unfederated Networks", - invitesNoFederatedPubs: "No federated networks.", - invitesNoUnfollowed: "No unfederated networks.", - invitesUnreachablePubs: "Unreachable Networks", - invitesNoUnreachablePubs: "No unreachable networks.", - currentlyUnreachable: "ERROR!", - errorDetails: "Error Details", - genericError: "An error occurred.", - //panic - panicMode: "Panic Mode!", - //cipher - encryptData: "Set password (min 32 characters long) to encrypt your blockchain", - decryptData: "Enter password to decrypt your blockchain", - panicModeDescription: "Encrypt/Decrypt or DELETE your blockchain", - removeDataDescription: "WARNING: This process cannot be undone.", - encryptPanicButton: "Encrypt blockchain", - decryptPanicButton: "Decrypt blockchain", - removePanicButton: "DELETE ALL YOUR DATA!", - //search + invitesUnfollowedInvites: "Redes não federadas", + invitesNoFederatedPubs: "Sem redes federadas.", + invitesNoUnfollowed: "Sem redes não federadas.", + invitesUnreachablePubs: "Redes inalcançáveis", + invitesNoUnreachablePubs: "Sem redes inalcançáveis.", + currentlyUnreachable: "ERRO!", + errorDetails: "Detalhes do erro", + genericError: "Ocorreu um erro.", + panicMode: "Modo pânico!", + encryptData: "Define uma senha (mínimo 32 caracteres) para encriptar a tua blockchain", + decryptData: "Introduz a senha para decifrar a tua blockchain", + panicModeDescription: "Encriptar/Decifrar ou ELIMINAR a tua blockchain", + removeDataDescription: "AVISO: Este processo não pode ser revertido.", + encryptPanicButton: "Encriptar blockchain", + decryptPanicButton: "Decifrar blockchain", + removePanicButton: "ELIMINAR TODOS OS TEUS DADOS!", searchTitle: "Pesquisa", - searchDescriptionLabel: "Search for content in your network.", - searchLanguagesLabel: "Languages", + searchDescriptionLabel: "Pesquisa conteúdo na tua rede.", + searchLanguagesLabel: "Idiomas", searchSkillsLabel: "Competências", - searchPlaceholder:"Search for content...", - searchSubmit:"Search!", + searchPlaceholder:"Pesquisar conteúdo...", + searchSubmit:"Pesquisar!", tribeLocationLabel:"Localização", - tribeModeLabel:"Invite Mode", - tribeMembersCount:"Members Count", + tribeModeLabel:"Modo de convite", + tribeMembersCount:"Número de membros", searchDateLabel:"Data", searchLocationLabel:"Localização", searchPriceLabel:"Preço", searchUrlLabel:"URL", searchCategoryLabel:"Categoria", - searchStartLabel:"Start Time", - searchEndLabel:"End Time", + searchStartLabel:"Hora de início", + searchEndLabel:"Hora de fim", searchPriorityLabel:"Prioridade", searchStatusLabel:"Estado", statusLabel:"Estado", - totalVotesLabel:"Total Votes", + totalVotesLabel:"Total de votos", votesLabel:"Votações", - noResultsFound:"No results found.", + noResultsFound:"Nenhum resultado encontrado.", author:"Autor", createdAtLabel:"Criado em", - hashtagDescription:"Explore the content associated with this hashtag", + hashtagDescription:"Explora o conteúdo associado a esta hashtag", tribeDescriptionLabel:"Descrição", - votesOption:"Vote Options", + votesOption:"Opções de voto", voteYesLabel:"Sim", voteNoLabel:"Não", - allTypesLabel: "UNLIMITED", - ABSTENTIONLabel:"ABSTENTION", - YESLabel:"YES", - NOLabel:"NO", - FOLLOW_MAJORITYLabel: "FOLLOW MAJORITY", - CONFUSEDLabel: "CONFUSED", - NOT_INTERESTEDLabel: "NOT INTERESTED", + allTypesLabel: "ILIMITADO", + ABSTENTIONLabel:"ABSTENÇÃO", + YESLabel:"SIM", + NOLabel:"NÃO", + FOLLOW_MAJORITYLabel: "SEGUIR MAIORIA", + CONFUSEDLabel: "CONFUSO", + NOT_INTERESTEDLabel: "SEM INTERESSE", voteOptionYes:"Sim", voteOptionNo:"Não", - voteOptionAbstention:"Abstention", + voteOptionAbstention:"Abstenção", StatusLabel:"Estado", votesOptionYesLabel:"Sim", votesOptionNoLabel:"Não", - votesOptionAbstentionLabel:"Abstention", - votesQuestionLabel:"Question", - votesCreatedByLabel:"Created by", - voteStatusOpen:"OPEN", - voteStatusClosed:"CLOSED", - //image search page - imageSearchLabel: "Enter words to search for images labelled with them.", - //posts and comments + votesOptionAbstentionLabel:"Abstenção", + votesQuestionLabel:"Pergunta", + votesCreatedByLabel:"Criado por", + voteStatusOpen:"ABERTO", + voteStatusClosed:"FECHADO", + imageSearchLabel: "Introduz palavras para pesquisar imagens etiquetadas com elas.", commentDescription: ({ parentUrl }) => [ - " commented on ", - a({ href: parentUrl }, " thread"), + " comentou em ", + a({ href: parentUrl }, " conversa"), ], - commentTitle: ({ authorName }) => [`Comment on @${authorName}'s post`], + commentTitle: ({ authorName }) => [`Comentário na publicação de @${authorName}`], subtopicDescription: ({ parentUrl }) => [ - " created a subtopic from ", - a({ href: parentUrl }, " a post"), + " criou um subtópico de ", + a({ href: parentUrl }, " uma publicação"), ], - subtopicTitle: ({ authorName }) => [`Subtopic on @${authorName}'s post`], - mysteryDescription: "posted a mysterious post", - // misc + search - oasisDescription: "OASIS Project Network", - searchSubmit: "Let's Search...", - hashtagDescription: "Posts tagged with this hashtag.", - postLabel: "POSTS", - aboutLabel: "INHABITANTS", + subtopicTitle: ({ authorName }) => [`Subtópico na publicação de @${authorName}`], + mysteryDescription: "publicou uma publicação misteriosa", + oasisDescription: "Rede do Projeto OASIS", + searchSubmit: "Pesquisar...", + hashtagDescription: "Publicações etiquetadas com esta hashtag.", + postLabel: "PUBLICAÇÕES", + aboutLabel: "HABITANTES", feedLabel: "FEEDS", - votesLabel: "VOTATIONS", - reportLabel: "REPORTS", - imageLabel: "IMAGES", - videoLabel: "VIDEOS", - audioLabel: "AUDIOS", - documentLabel: "DOCUMENTS", + votesLabel: "VOTAÇÕES", + reportLabel: "DENÚNCIAS", + imageLabel: "IMAGENS", + videoLabel: "VÍDEOS", + audioLabel: "ÁUDIOS", + documentLabel: "DOCUMENTOS", + torrentLabel: "TORRENTS", pdfFallbackLabel: "Documento PDF", - eventLabel: "EVENTS", - taskLabel: "TASKS", - transferLabel: "TRANSFERS", - curriculumLabel: "CURRICULUM", - bookmarkLabel: "BOOKMARKS", - tribeLabel: "TRIBES", - marketLabel: "MARKET", + eventLabel: "EVENTOS", + taskLabel: "TAREFAS", + transferLabel: "TRANSFERÊNCIAS", + curriculumLabel: "CURRÍCULO", + bookmarkLabel: "MARCADORES", + tribeLabel: "TRIBOS", + marketLabel: "MERCADO", + shopLabel: "SHOPS", + shopProductLabel: "SHOP PRODUCTS", + mapLabel: "MAPS", + jobLabel: "JOBS", + forumLabel: "FORUMS", + projectLabel: "PROJECTS", + bankWalletLabel: "CARTEIRAS", + bankClaimLabel: "UBI CLAIMS", + voteLabel: "VOTES", + contactLabel: "CONTACTS", + pubLabel: "PUBS", cvLabel: "CVs", - submit: "Submeter", - subjectLabel: "Subject", - editProfile: "Edit Avatar", + submit: "Enviar", + subjectLabel: "Assunto", + editProfile: "Editar avatar", editProfileDescription: "", profileName: "Nome", profileImage: "Imagem Avatar", profileDescription: "Descrição", hashtagDescription: - "Posts from inhabitants in your network that reference this #hashtag, sorted by recency.", - rebuildName: "Rebuild database", + "Publicações de habitantes na tua rede que referenciam esta #hashtag, ordenadas por data.", + rebuildName: "Reconstruir base de dados", wallet: "Carteira", walletAddress: "Endereço", walletAmount: "Montante", - walletAddressLine: ({ address }) => `Address: ${address}`, - walletAmountLine: ({ amount }) => `Amount: ${amount} ECO`, + walletAddressLine: ({ address }) => `Endereço: ${address}`, + walletAmountLine: ({ amount }) => `Montante: ${amount} ECO`, walletBack: "Voltar", - walletBalanceTitle: "Balance", + walletBalanceTitle: "Saldo", walletWalletSendTitle: "Enviar", walletReceiveTitle: "Receber", - walletHistoryTitle: "History", + walletHistoryTitle: "Histórico", walletBalanceLine: ({ balance }) => `${balance} ECO`, - walletCnfrs: "Cnfrs", + walletCnfrs: "Conf.", walletConfirm: "Confirmar", - walletDescription: "Manage your digital assets, including sending and receiving ECOin, viewing your balance, and accessing your transaction history.", + walletDescription: "Gere os teus ativos digitais, incluindo enviar e receber ECOin, ver o teu saldo e aceder ao teu histórico de transações.", walletDate: "Data", - walletFee: "Fee (The higher the fee, the faster your transaction will be processed)", - walletFeeLine: ({ fee }) => `Fee: ECO ${fee}`, - walletHistory: "History", + walletFee: "Taxa (quanto maior a taxa, mais rápido a tua transação será processada)", + walletFeeLine: ({ fee }) => `Taxa: ECO ${fee}`, + walletHistory: "Histórico", walletReceive: "Receber", walletReset: "Repor", walletSend: "Enviar", walletStatus: "Estado", walletDisconnected: [ "ECOin ", - strong("wallet disconnected"), - ". Check ", - a({ href: '/settings' }, "your settings"), - " or connection status.", - ], - walletSentToLine: ({ destination, amount }) => `Sent ECO ${amount} to ${destination}`, + strong("carteira desconectada"), + ". Verifica ", + a({ href: '/settings' }, "as tuas definições"), + " ou o estado da ligação.", + ], + walletSentToLine: ({ destination, amount }) => `Enviado ECO ${amount} para ${destination}`, walletSettingsTitle: "Carteira", - walletSettingsDescription: "Integrate Oasis with your ECOin wallet.", - walletSettingsDocLink: "ECOin installation guide", + walletSettingsDescription: "Integra o Oasis com a tua carteira ECOin.", + walletSettingsDocLink: "Guia de instalação ECOin", walletStatusMessages: { - invalid_amount: "Invalid amount", - invalid_dest: "Invalid destination address", - invalid_fee: "Invalid fee", - validation_errors: "Validation errors", - send_tx_success: "Transaction successful", + invalid_amount: "Montante inválido", + invalid_dest: "Endereço de destino inválido", + invalid_fee: "Taxa inválida", + validation_errors: "Erros de validação", + send_tx_success: "Transação bem-sucedida", }, walletTitle: "Carteira", - walletTotalCostLine: ({ totalCost }) => `Total cost: ECO ${totalCost}`, - walletTransactionId: "Transaction ID", - walletTxId: "Tx ID", + walletTotalCostLine: ({ totalCost }) => `Custo total: ECO ${totalCost}`, + walletTransactionId: "ID da transação", + walletTxId: "ID Tx", walletType: "Tipo", - walletUser: "Username", - walletPass: "Password", - walletConfiguration: "Set wallet", - //cipher + walletUser: "Nome de utilizador", + walletPass: "Senha", + walletConfiguration: "Definir carteira", cipher: "Encriptação", cipherTitle: "Encriptação", - cipherDescription: "Encrypt and decrypt your text symmetrically (using a shared password).", - randomPassword: "Random Password", - cipherEncryptTitle: "Encrypt Text", - cipherEncryptDescription: "Enter text to encrypt", - cipherTextLabel: "Text to Encrypt", - cipherTextPlaceholder: "Enter text to encrypt...", - cipherPasswordLabel: "Set password (min 32 characters long) to encrypt your text", - cipherPasswordPlaceholder: "Enter a password...", - cipherEncryptButton: "Encrypt", - cipherDecryptTitle: "Decrypt Text", - cipherDecryptDescription: "Enter text to decrypt", - cipherEncryptedMessageLabel: "Encrypted Text", - cipherDecryptedMessageLabel: "Decrypted Text", - cipherPasswordUsedLabel: "Password used to encrypt (keep it!)", - cipherEncryptedTextPlaceholder: "Enter the encrypted text...", + cipherDescription: "Encripta e decifra o teu texto simetricamente (usando uma senha partilhada).", + randomPassword: "Senha aleatória", + cipherEncryptTitle: "Encriptar texto", + cipherEncryptDescription: "Introduz o texto a encriptar", + cipherTextLabel: "Texto a encriptar", + cipherTextPlaceholder: "Introduz o texto a encriptar...", + cipherPasswordLabel: "Define uma senha (mínimo 32 caracteres) para encriptar o teu texto", + cipherPasswordDecryptLabel: "Define uma senha (mínimo 32 caracteres) para decifrar o seu texto", + cipherPasswordPlaceholder: "Introduz uma senha...", + cipherEncryptButton: "Encriptar", + cipherDecryptTitle: "Decifrar texto", + cipherDecryptDescription: "Introduz o texto a decifrar", + cipherEncryptedMessageLabel: "Texto encriptado", + cipherDecryptedMessageLabel: "Texto decifrado", + cipherPasswordUsedLabel: "Senha usada para encriptar (guarda-a!)", + cipherEncryptedTextPlaceholder: "Introduz o texto encriptado...", cipherIvLabel: "IV", - cipherIvPlaceholder: "Enter the initialization vector...", - cipherDecryptButton: "Decrypt", - password: "Password", - text: "Text", - encryptedText: "Encrypted Text", - iv: "Initialization Vector (IV)", - encryptTitle: "Encrypt your text", - encryptDescription: "Enter the text you want to encrypt and provide a password.", - encryptButton: "Encrypt", - decryptTitle: "Decrypt your text", - decryptDescription: "Enter the encrypted text and provide the same password used for encryption.", - decryptButton: "Decrypt", - passwordLengthError: "Password must be at least 32 characters long.", - missingFieldsError: "Text, password or IV not provided.", - encryptionError: "Error encrypting text.", - decryptionError: "Error decrypting text.", - //bookmarking + cipherIvPlaceholder: "Introduz o vetor de inicialização...", + cipherDecryptButton: "Decifrar", + password: "Senha", + text: "Texto", + encryptedText: "Texto encriptado", + iv: "Vetor de inicialização (IV)", + encryptTitle: "Encriptar o teu texto", + encryptDescription: "Introduz o texto que queres encriptar e fornece uma senha.", + encryptButton: "Encriptar", + decryptTitle: "Decifrar o teu texto", + decryptDescription: "Introduz o texto encriptado e fornece a mesma senha usada para encriptar.", + decryptButton: "Decifrar", + passwordLengthError: "A senha deve ter pelo menos 32 caracteres.", + missingFieldsError: "Texto, senha ou IV não fornecidos.", + encryptionError: "Erro ao encriptar o texto.", + decryptionError: "Erro ao decifrar o texto.", bookmarkTitle: "Marcadores", - bookmarkDescription: "Discover and manage bookmarks in your network.", + bookmarkDescription: "Descobre e gere marcadores na tua rede.", bookmarkAllSectionTitle: "Marcadores", - bookmarkMineSectionTitle: "Your Bookmarks", - bookmarkRecentSectionTitle: "Recent Bookmarks", - bookmarkTopSectionTitle: "Top Bookmarks", + bookmarkMineSectionTitle: "Os teus marcadores", + bookmarkRecentSectionTitle: "Marcadores recentes", + bookmarkTopSectionTitle: "Marcadores mais votados", bookmarkFavoritesSectionTitle: "Favoritos", - bookmarkCreateSectionTitle: "Create Bookmark", - bookmarkUpdateSectionTitle: "Update Bookmark", - bookmarkFilterAll: "ALL", - bookmarkFilterMine: "MINE", + bookmarkCreateSectionTitle: "Criar marcador", + bookmarkUpdateSectionTitle: "Atualizar marcador", + bookmarkFilterAll: "TODOS", + bookmarkFilterMine: "MEUS", bookmarkFilterTop: "TOP", - bookmarkFilterFavorites: "FAVORITES", - bookmarkFilterRecent: "RECENT", - bookmarkCreateButton: "Create Bookmark", + bookmarkFilterFavorites: "FAVORITOS", + bookmarkFilterRecent: "RECENTES", + bookmarkCreateButton: "Criar marcador", bookmarkUpdateButton: "Atualizar", bookmarkDeleteButton: "Eliminar", - bookmarkAddFavoriteButton: "Add favorite", - bookmarkRemoveFavoriteButton: "Remove favorite", + bookmarkAddFavoriteButton: "Adicionar favorito", + bookmarkRemoveFavoriteButton: "Remover favorito", bookmarkUrlLabel: "Link", bookmarkUrlPlaceholder: "https://example.com", bookmarkDescriptionLabel: "Descrição", - bookmarkDescriptionPlaceholder: "Optional", + bookmarkDescriptionPlaceholder: "Opcional", bookmarkTagsLabel: "Tags", - bookmarkTagsPlaceholder: "Enter tags separated by commas", + bookmarkTagsPlaceholder: "Introduz tags separadas por vírgulas", bookmarkCategoryLabel: "Categoria", - bookmarkCategoryPlaceholder: "Optional", - bookmarkLastVisitLabel: "Last Visit", - bookmarkSearchPlaceholder: "Search URL, tags, category, author...", - bookmarkSortRecent: "Most recent", - bookmarkSortOldest: "Oldest", - bookmarkSortTop: "Most voted", + bookmarkCategoryPlaceholder: "Opcional", + bookmarkLastVisitLabel: "Última visita", + bookmarkSearchPlaceholder: "Pesquisar URL, tags, categoria, autor...", + bookmarkSortRecent: "Mais recentes", + bookmarkSortOldest: "Mais antigos", + bookmarkSortTop: "Mais votados", bookmarkSearchButton: "Pesquisa", - bookmarkUpdatedAt: "Updated", - bookmarkNoMatch: "No bookmarks match your search.", - noBookmarks: "No bookmarks available.", - noUrl: "No link", - noCategory: "No category", - noLastVisit: "No last visit", - //videos + bookmarkUpdatedAt: "Atualizado", + bookmarkNoMatch: "Nenhum marcador corresponde à tua pesquisa.", + noBookmarks: "Sem marcadores disponíveis.", + noUrl: "Sem link", + noCategory: "Sem categoria", + noLastVisit: "Sem última visita", videoTitle: "Vídeos", - videoDescription: "Explore and manage video content in your network.", + videoDescription: "Explora e gere conteúdo de vídeo na tua rede.", videoPluginTitle: "Título", videoPluginDescription: "Descrição", - videoMineSectionTitle: "Your Videos", - videoCreateSectionTitle: "Upload Video", - videoUpdateSectionTitle: "Update Video", + videoMineSectionTitle: "Os teus vídeos", + videoCreateSectionTitle: "Carregar vídeo", + videoUpdateSectionTitle: "Atualizar vídeo", videoAllSectionTitle: "Vídeos", - videoRecentSectionTitle: "Recent Videos", - videoTopSectionTitle: "Top Videos", + videoRecentSectionTitle: "Vídeos recentes", + videoTopSectionTitle: "Vídeos mais votados", videoFavoritesSectionTitle: "Favoritos", - videoFilterAll: "ALL", - videoFilterMine: "MINE", - videoFilterRecent: "RECENT", + videoFilterAll: "TODOS", + videoFilterMine: "MEUS", + videoFilterRecent: "RECENTES", videoFilterTop: "TOP", - videoFilterFavorites: "FAVORITES", - videoCreateButton: "Upload Video", + videoFilterFavorites: "FAVORITOS", + videoCreateButton: "Carregar vídeo", videoUpdateButton: "Atualizar", videoDeleteButton: "Eliminar", - videoAddFavoriteButton: "Add favorite", - videoRemoveFavoriteButton: "Remove favorite", - videoFileLabel: "Select a video file (.mp4, .webm, .ogv, .mov)", + videoAddFavoriteButton: "Adicionar favorito", + videoRemoveFavoriteButton: "Remover favorito", + videoFileLabel: "Seleciona um ficheiro de vídeo (.mp4, .webm, .ogv, .mov)", videoTagsLabel: "Tags", - videoTagsPlaceholder: "Enter tags separated by commas", + videoTagsPlaceholder: "Introduz tags separadas por vírgulas", videoTitleLabel: "Título", - videoTitlePlaceholder: "Optional", + videoTitlePlaceholder: "Opcional", videoDescriptionLabel: "Descrição", - videoDescriptionPlaceholder: "Optional", - videoNoFile: "No video file provided", - noVideos: "No videos available.", - videoSearchPlaceholder: "Search title, tags, author...", - videoSortRecent: "Most recent", - videoSortOldest: "Oldest", - videoSortTop: "Most voted", + videoDescriptionPlaceholder: "Opcional", + videoNoFile: "Nenhum ficheiro de vídeo fornecido", + noVideos: "Sem vídeos disponíveis.", + videoSearchPlaceholder: "Pesquisar título, tags, autor...", + videoSortRecent: "Mais recentes", + videoSortOldest: "Mais antigos", + videoSortTop: "Mais votados", videoSearchButton: "Pesquisa", - videoMessageAuthorButton: "PM", - videoUpdatedAt: "Updated", - videoNoMatch: "No videos match your search.", - //documents + videoMessageAuthorButton: "MP", + videoUpdatedAt: "Atualizado", + videoNoMatch: "Nenhum vídeo corresponde à tua pesquisa.", documentTitle: "Documentos", - documentDescription: "Discover and manage documents in your network.", + documentDescription: "Descobre e gere documentos na tua rede.", documentAllSectionTitle: "Documentos", - documentMineSectionTitle: "Your Documents", - documentRecentSectionTitle: "Recent Documents", - documentTopSectionTitle: "Top Documents", + documentMineSectionTitle: "Os teus documentos", + documentRecentSectionTitle: "Documentos recentes", + documentTopSectionTitle: "Documentos mais votados", documentFavoritesSectionTitle: "Favoritos", - documentCreateSectionTitle: "Upload Document", - documentUpdateSectionTitle: "Edit Document", - documentFilterAll: "ALL", - documentFilterMine: "MINE", - documentFilterRecent: "RECENT", + documentCreateSectionTitle: "Carregar documento", + documentUpdateSectionTitle: "Editar documento", + documentFilterAll: "TODOS", + documentFilterMine: "MEUS", + documentFilterRecent: "RECENTES", documentFilterTop: "TOP", - documentFilterFavorites: "FAVORITES", - documentCreateButton: "Upload Document", + documentFilterFavorites: "FAVORITOS", + documentCreateButton: "Carregar documento", documentUpdateButton: "Atualizar", documentDeleteButton: "Eliminar", - documentAddFavoriteButton: "Add favorite", - documentRemoveFavoriteButton: "Remove from favorites", - documentMessageAuthorButton: "PM", - documentFileLabel: "Upload Document (.pdf)", + documentAddFavoriteButton: "Adicionar favorito", + documentRemoveFavoriteButton: "Remover dos favoritos", + documentMessageAuthorButton: "MP", + documentFileLabel: "Carregar documento (.pdf)", documentTagsLabel: "Tags", - documentTagsPlaceholder: "Enter tags separated by commas", + documentTagsPlaceholder: "Introduz tags separadas por vírgulas", documentTitleLabel: "Título", - documentTitlePlaceholder: "Optional", + documentTitlePlaceholder: "Opcional", documentDescriptionLabel: "Descrição", - documentDescriptionPlaceholder: "Optional", - documentNoFile: "No file.", - noDocuments: "No documents available.", - documentSearchPlaceholder: "Search title, tags, description, author...", - documentSortRecent: "Most recent", - documentSortOldest: "Oldest", - documentSortTop: "Most voted", + documentDescriptionPlaceholder: "Opcional", + documentNoFile: "Sem ficheiro.", + noDocuments: "Sem documentos disponíveis.", + documentSearchPlaceholder: "Pesquisar título, tags, descrição, autor...", + documentSortRecent: "Mais recentes", + documentSortOldest: "Mais antigos", + documentSortTop: "Mais votados", documentSearchButton: "Pesquisa", - documentNoMatch: "No documents match your search.", - documentUpdatedAt: "Updated", - //audios + documentNoMatch: "Nenhum documento corresponde à tua pesquisa.", + documentUpdatedAt: "Atualizado", audioTitle: "Áudios", - audioDescription: "Explore and manage audio content in your network.", + audioDescription: "Explora e gere conteúdo de áudio na tua rede.", audioPluginTitle: "Título", audioPluginDescription: "Descrição", - audioMineSectionTitle: "Your Audios", - audioCreateSectionTitle: "Upload Audio", - audioUpdateSectionTitle: "Update Audio", + audioMineSectionTitle: "Os teus áudios", + audioCreateSectionTitle: "Carregar áudio", + audioUpdateSectionTitle: "Atualizar áudio", audioAllSectionTitle: "Áudios", - audioRecentSectionTitle: "Recent Audios", - audioTopSectionTitle: "Top Audios", - audioFilterAll: "ALL", - audioFilterMine: "MINE", - audioFilterRecent: "RECENT", + audioRecentSectionTitle: "Áudios recentes", + audioTopSectionTitle: "Áudios mais votados", + audioFilterAll: "TODOS", + audioFilterMine: "MEUS", + audioFilterRecent: "RECENTES", audioFilterTop: "TOP", - audioCreateButton: "Upload Audio", + audioCreateButton: "Carregar áudio", audioUpdateButton: "Atualizar", audioDeleteButton: "Eliminar", - audioAddFavoriteButton: "Add favorite", - audioRemoveFavoriteButton: "Remove favorite", - audioFileLabel: "Select an audio file (.mp3, .wav, .ogg)", + audioAddFavoriteButton: "Adicionar favorito", + audioRemoveFavoriteButton: "Remover favorito", + audioFileLabel: "Seleciona um ficheiro de áudio (.mp3, .wav, .ogg)", audioTagsLabel: "Tags", - audioTagsPlaceholder: "Enter tags separated by commas", + audioTagsPlaceholder: "Introduz tags separadas por vírgulas", audioTitleLabel: "Título", - audioTitlePlaceholder: "Optional", + audioTitlePlaceholder: "Opcional", audioDescriptionLabel: "Descrição", - audioDescriptionPlaceholder: "Optional", - audioNoFile: "No audio file provided", - noAudios: "No audios available.", - audioSearchPlaceholder: "Search title, tags, author...", - audioSortRecent: "Most recent", - audioSortOldest: "Oldest", - audioSortTop: "Most voted", + audioDescriptionPlaceholder: "Opcional", + audioNoFile: "Nenhum ficheiro de áudio fornecido", + noAudios: "Sem áudios disponíveis.", + audioSearchPlaceholder: "Pesquisar título, tags, autor...", + audioSortRecent: "Mais recentes", + audioSortOldest: "Mais antigos", + audioSortTop: "Mais votados", audioSearchButton: "Pesquisa", - audioMessageAuthorButton: "PM", - audioUpdatedAt: "Updated", - audioNoMatch: "No audios match your search.", + audioMessageAuthorButton: "MP", + audioUpdatedAt: "Atualizado", + audioNoMatch: "Nenhum áudio corresponde à tua pesquisa.", audioFavoritesSectionTitle: "Favoritos", - audioFilterFavorites: "FAVORITES", - //favorites + audioFilterFavorites: "FAVORITOS", favoritesTitle: "Favoritos", - favoritesDescription: "All your favorited media in one place.", - favoritesFilterAll: "ALL", - favoritesFilterRecent: "RECENT", - favoritesFilterAudios: "AUDIOS", - favoritesFilterBookmarks: "BOOKMARKS", - favoritesFilterDocuments: "DOCUMENTS", - favoritesFilterImages: "IMAGES", - favoritesFilterVideos: "VIDEOS", - favoritesRemoveButton: "Remove from favorites", - favoritesNoItems: "No favorites yet.", - //inhabitants + favoritesDescription: "Todos os teus conteúdos favoritos num só lugar.", + favoritesFilterAll: "TODOS", + favoritesFilterRecent: "RECENTES", + favoritesFilterAudios: "ÁUDIOS", + favoritesFilterBookmarks: "MARCADORES", + favoritesFilterDocuments: "DOCUMENTOS", + favoritesFilterImages: "IMAGENS", + favoritesFilterMaps: "MAPAS", + favoritesFilterPads: "PADS", + favoritesFilterChats: "CHATS", + favoritesFilterCalendars: "CALENDÁRIOS", + favoritesFilterVideos: "VÍDEOS", + favoritesRemoveButton: "Remover dos favoritos", + favoritesNoItems: "Ainda sem favoritos.", yourContacts: "Os teus contactos", allInhabitants: "Habitantes", - allCVs: "All CVs", - discoverPeople: "Discover inhabitants in your network.", - allInhabitantsButton: "ALL", - contactsButton: "SUPPORTS", + allCVs: "Todos os CVs", + discoverPeople: "Descobre habitantes na tua rede.", + allInhabitantsButton: "TODOS", + contactsButton: "APOIOS", CVsButton: "CVs", matchSkills: "Combinar competências", - matchSkillsButton: "MATCH SKILLS", - suggestedButton: "SUGGESTED", - searchInhabitantsPlaceholder: "FILTER inhabitants BY NAME …", - filterLocation: "FILTER inhabitants BY LOCATION …", - filterLanguage: "FILTER inhabitants BY LANGUAGE …", - filterSkills: "FILTER inhabitants BY SKILLS …", + matchSkillsButton: "COMBINAR COMPETÊNCIAS", + suggestedButton: "SUGERIDOS", + searchInhabitantsPlaceholder: "FILTRAR habitantes POR NOME …", + filterLocation: "FILTRAR habitantes POR LOCALIZAÇÃO …", + filterLanguage: "FILTRAR habitantes POR IDIOMA …", + filterSkills: "FILTRAR habitantes POR COMPETÊNCIAS …", applyFilters: "Aplicar filtros", locationLabel: "Localização", - languagesLabel: "Languages", + languagesLabel: "Idiomas", skillsLabel: "Competências", commonSkills: "Competências comuns", mutualFollowers: "Seguidores mútuos", - latestInteractions: "Latest Interactions", - viewAvatar: "View Avatar", - viewCV: "View CV", + latestInteractions: "Interações recentes", + viewAvatar: "Ver Avatar", + viewCV: "Ver CV", suggestedSectionTitle: "Sugeridos", - topkarmaSectionTitle: "Top Karma", + topkarmaSectionTitle: "Melhor Karma", topactivitySectionTitle: "Top Atividade", blockedSectionTitle: "Bloqueados", - gallerySectionTitle: "GALLERY", - blockedButton: "BLOCKED", - blockedLabel: "Blocked User", - inhabitantviewDetails: "View Details", - viewDetails: "View Details", + gallerySectionTitle: "GALERIA", + blockedButton: "BLOQUEADOS", + blockedLabel: "Habitante bloqueado", + inhabitantviewDetails: "Ver detalhes", + viewDetails: "Ver detalhes", keepReading: "Continuar lendo...", oasisId: "ID", - noInhabitantsFound: "No inhabitants found, yet.", + noInhabitantsFound: "Ainda sem habitantes encontrados.", inhabitantActivityLevel: "Nível de atividade", - //parliament + deviceLabel: "Dispositivo", parliamentTitle: "Parlamento", - parliamentDescription: "Explore forms of government and collective management laws.", - parliamentFilterGovernment: "GOVERMENT", - parliamentFilterCandidatures: "CANDIDATURES", - parliamentFilterProposals: "PROPOSALS", - parliamentFilterLaws: "LAWS", - parliamentFilterHistorical: "HISTORICAL", - parliamentFilterLeaders: "LEADERS", - parliamentFilterRules: "RULES", - parliamentGovernmentCard: "Current Government", - parliamentGovMethod: "GOVERMENT METHOD", - parliamentActorInPowerInhabitant: 'INHABITANT RULING', - parliamentActorInPowerTribe: 'TRIBE RULING', - parliamentHistoricalGovernmentsTitle: 'GOVERMENTS', - parliamentHistoricalElectionsTitle: 'ELECTION CYCLES', - parliamentHistoricalLawsTitle: 'HISTORICAL', - parliamentHistoricalLeadersTitle: 'LEADERS', - parliamentThCycles: 'CYCLES', - parliamentThTimesInPower: 'RULING', - parliamentThTotalCandidatures: 'CANDIDATURES', - parliamentThProposed: 'LAWS PROPOSED', - parliamentThApproved: 'LAWS APPROVED', - parliamentThDeclined: 'LAWS DECLINED', - parliamentThDiscarded: 'LAWS DISCARDED', - parliamentVotesReceived: "VOTES RECIEVED", - parliamentMembers: "MEMBERS", - parliamentLegSince: "CYCLE SINCE", - parliamentLegEnd: "CYCLE END", - parliamentPoliciesProposal: "LAWS PROPOSAL", - parliamentPoliciesApproved: "LAWS APPROVED", - parliamentPoliciesDeclined: "LAWS DECLINED", - parliamentPoliciesDiscarded: "LAWS DISCARDED", - parliamentEfficiency: "% EFFICIENCY", - parliamentFilterRevocations: 'REVOCATIONS', - parliamentRevocationFormTitle: 'Revocate Law', - parliamentRevocationLaw: 'Law', - parliamentRevocationTitle: 'Title', - parliamentRevocationReasons: 'Reasons', - parliamentRevocationPublish: 'Publish Revocation', - parliamentCurrentRevocationsTitle: 'Current Revocations', - parliamentFutureRevocationsTitle: 'Future Revocations', - parliamentPoliciesRevocated: 'LAWS REVOCATED', - parliamentPoliciesTitle: 'HISTORICAL', - parliamentLawsTitle: 'LAWS APPROVED', - parliamentRulesRevocations: 'Any approved law can be revocate using current goverment method ruling.', - parliamentNoStableGov: "No goverment choosen, yet.", - parliamentNoGovernments: "There are not governments, yet.", - parliamentCandidatureFormTitle: "Propose Candidature", - parliamentCandidatureId: "Candidature", - parliamentCandidatureIdPh: "Oasis ID (@...) or Tribe name", - parliamentCandidatureSlogan: "Slogan (max 140 chars)", - parliamentCandidatureSloganPh: "A short motto", - parliamentCandidatureMethod: "Method", - parliamentCandidatureProposeBtn: "Publish Candidature", + parliamentDescription: "Explora formas de governo e leis de gestão coletiva.", + parliamentFilterGovernment: "GOVERNO", + parliamentFilterCandidatures: "CANDIDATURAS", + parliamentFilterProposals: "PROPOSTAS", + parliamentFilterLaws: "LEIS", + parliamentFilterHistorical: "HISTÓRICO", + parliamentFilterLeaders: "LÍDERES", + parliamentFilterRules: "REGRAS", + parliamentGovernmentCard: "Governo atual", + parliamentGovMethod: "MÉTODO DE GOVERNO", + parliamentActorInPowerInhabitant: 'HABITANTE NO PODER', + parliamentActorInPowerTribe: 'TRIBO NO PODER', + parliamentHistoricalGovernmentsTitle: 'GOVERNOS', + parliamentHistoricalElectionsTitle: 'CICLOS ELEITORAIS', + parliamentHistoricalLawsTitle: 'HISTÓRICO', + parliamentHistoricalLeadersTitle: 'LÍDERES', + parliamentThCycles: 'CICLOS', + parliamentThTimesInPower: 'MANDATOS', + parliamentThTotalCandidatures: 'CANDIDATURAS', + parliamentThProposed: 'LEIS PROPOSTAS', + parliamentThApproved: 'LEIS APROVADAS', + parliamentThDeclined: 'LEIS REJEITADAS', + parliamentThDiscarded: 'LEIS DESCARTADAS', + parliamentVotesReceived: "VOTOS RECEBIDOS", + parliamentMembers: "MEMBROS", + parliamentLegSince: "INÍCIO DO CICLO", + parliamentLegEnd: "FIM DO CICLO", + parliamentPoliciesProposal: "PROPOSTAS DE LEIS", + parliamentPoliciesApproved: "LEIS APROVADAS", + parliamentPoliciesDeclined: "LEIS REJEITADAS", + parliamentPoliciesDiscarded: "LEIS DESCARTADAS", + parliamentEfficiency: "% EFICIÊNCIA", + parliamentFilterRevocations: 'REVOGAÇÕES', + parliamentRevocationFormTitle: 'Revogar lei', + parliamentRevocationLaw: 'Lei', + parliamentRevocationTitle: 'Título', + parliamentRevocationReasons: 'Motivos', + parliamentRevocationPublish: 'Publicar revogação', + parliamentCurrentRevocationsTitle: 'Revogações atuais', + parliamentFutureRevocationsTitle: 'Revogações futuras', + parliamentPoliciesRevocated: 'LEIS REVOGADAS', + parliamentPoliciesTitle: 'HISTÓRICO', + parliamentLawsTitle: 'LEIS APROVADAS', + parliamentRulesRevocations: 'Qualquer lei aprovada pode ser revogada usando o método de governo em vigor.', + parliamentNoStableGov: "Ainda sem governo escolhido.", + parliamentNoGovernments: "Ainda sem governos.", + parliamentCandidatureFormTitle: "Propor candidatura", + parliamentCandidatureId: "Candidatura", + parliamentCandidatureIdPh: "Oasis ID (@...) ou nome da tribo", + parliamentCandidatureSlogan: "Slogan (máx 140 caracteres)", + parliamentCandidatureSloganPh: "Um lema curto", + parliamentCandidatureMethod: "Método", + parliamentCandidatureProposeBtn: "Publicar candidatura", parliamentThType: "Tipo", parliamentThId: "ID", - parliamentThDate: "Proposal date", + parliamentThDate: "Data da proposta", parliamentThSlogan: "Slogan", - parliamentThMethod: "Method", + parliamentThMethod: "Método", parliamentThKarma: "Karma", - parliamentThSince: "Profile since", - parliamentThVotes: "Votes recieved", - parliamentThVoteAction: "Vote", - parliamentTypeUser: "Inhabitant", - parliamentTypeTribe: "Tribe", - parliamentVoteBtn: "Vote", - parliamentProposalFormTitle: "Propose Law", + parliamentThSince: "Perfil desde", + parliamentThVotes: "Votos recebidos", + parliamentThVoteAction: "Votar", + parliamentTypeUser: "Habitante", + parliamentTypeTribe: "Tribo", + parliamentVoteBtn: "Votar", + parliamentProposalFormTitle: "Propor lei", parliamentProposalTitle: "Título", - parliamentProposalDescription: "Description (≤1000)", - parliamentProposalPublish: "Publish Proposal", - parliamentOpenVote: "Open vote", - parliamentFinalize: "Finalize", - parliamentDeadline: "Deadline", + parliamentProposalDescription: "Descrição (≤1000)", + parliamentProposalPublish: "Publicar proposta", + parliamentOpenVote: "Abrir votação", + parliamentFinalize: "Finalizar", + parliamentDeadline: "Prazo", parliamentStatus: "Estado", - parliamentNoProposals: "There are not law proposals, yet.", - parliamentNoLaws: "There are not laws approved, yet.", - parliamentLawMethod: "Method", - parliamentLawProposer: "Proposed by", - parliamentLawVotes: "YES/Total", - parliamentLawEnacted: "Enacted at", - parliamentMethodDEMOCRACY: "Democracy", - parliamentMethodMAJORITY: "Majority (80%)", - parliamentMethodMINORITY: "Minority (20%)", - parliamentMethodDICTATORSHIP: "Dictatorship", - parliamentMethodKARMATOCRACY: "Karmatocracy", - parliamentMethodANARCHY: "Anarchy", + parliamentNoProposals: "Ainda sem propostas de lei.", + parliamentNoLaws: "Ainda sem leis aprovadas.", + parliamentLawMethod: "Método", + parliamentLawProposer: "Proposto por", + parliamentLawVotes: "SIM/Total", + parliamentLawEnacted: "Promulgada em", + parliamentMethodDEMOCRACY: "Democracia", + parliamentMethodMAJORITY: "Maioria (80%)", + parliamentMethodMINORITY: "Minoria (20%)", + parliamentMethodDICTATORSHIP: "Ditadura", + parliamentMethodKARMATOCRACY: "Karmatocracia", + parliamentMethodANARCHY: "Anarquia", parliamentThId: "ID", - parliamentThProposalDate: "Proposal date", + parliamentThProposalDate: "Data da proposta", parliamentThMethod: "Method", parliamentThKarma: "Karma", - parliamentThSupports: "Supports", - parliamentThVote: "Vote", - parliamentCurrentProposalsTitle: "Current Proposals", - parliamentVotesSlashTotal: "Votes/Total", - parliamentVotesNeeded: "Votes Needed", - parliamentFutureLawsTitle: "Future Laws", - parliamentNoFutureLaws: "No future laws, yet.", - parliamentVoteAction: "Vote", - parliamentLeadersTitle: "Leaders", + parliamentThSupports: "Apoios", + parliamentThVote: "Votar", + parliamentCurrentProposalsTitle: "Propostas atuais", + parliamentVotesSlashTotal: "Votos/Total", + parliamentVotesNeeded: "Votos necessários", + parliamentFutureLawsTitle: "Leis futuras", + parliamentNoFutureLaws: "Ainda sem leis futuras.", + parliamentVoteAction: "Votar", + parliamentLeadersTitle: "Líderes", parliamentThLeader: "AVATAR", - parliamentPopulation: "Population", + parliamentPopulation: "População", parliamentThType: "Tipo", - parliamentThInPower: "In power", - parliamentThPresented: "CANDIDATURES", - parliamentNoLeaders: "No leaders, yet.", - typeParliament: "PARLIAMENT", - typeParliamentCandidature: "Parliament · Candidature", - typeParliamentTerm: "Parliament · Term", - typeParliamentProposal: "Parliament · Proposal", - typeParliamentLaw: "Parliament · New Law", + parliamentThInPower: "No poder", + parliamentThPresented: "CANDIDATURAS", + parliamentNoLeaders: "Ainda sem líderes.", + typeParliament: "PARLAMENTO", + typeParliamentCandidature: "Parlamento · Candidatura", + typeParliamentTerm: "Parlamento · Mandato", + typeParliamentProposal: "Parlamento · Proposta", + typeParliamentLaw: "Parlamento · Nova lei", typeCourts: "Tribunais", - parliamentLawQuestion: "Question", + parliamentLawQuestion: "Pergunta", parliamentStatus: "Estado", - parliamentCandidaturesListTitle: "List of Candidatures", - parliamentElectionsEnd: "Election end", - parliamentTimeRemaining: "Time remaining", - parliamentCurrentLeader: "Winning candidature", - parliamentNoLeader: "No winning candidature, yet.", - parliamentElectionsStatusTitle: "Next Government", - parliamentElectionsStart: "Election start", - parliamentProposalDeadlineLabel: "Deadline", - parliamentProposalTimeLeft: "Time left", - parliamentProposalOnTrack: "On track to pass", - parliamentProposalOffTrack: "Not enough support yet", - parliamentRulesTitle: "How Parliament works", - parliamentRulesIntro: "Election resolve every 2 months; candidatures are continuous and reset when a government is chosen.", - parliamentRulesCandidates: "Any inhabitant may propose themself, another inhabitant, or any tribe. Each inhabitant can propose up to 3 candidatures per cycle; duplicates in the same cycle are rejected.", - parliamentRulesElection: "The winner is the candidature with the most votes at resolution time.", - parliamentRulesTies: "Tie-break order: highest inhabitant karma; if tied, oldest profile; if still tied, earliest proposal; then lexicographic by ID.", - parliamentRulesFallback: "If no one votes, the latest proposed candidature wins. If there are no candidatures, a random tribe is selected.", - parliamentRulesTerm: "The Government tab shows the current government and stats.", - parliamentRulesMethods: "Forms: Anarchy (simple majority), Democracy (50%+1), Majority (80%), Minority (20%), Karmatocracy (highest-karma proposals), Dictatorship (instant approval).", - parliamentRulesAnarchy: "Anarchy is the default mode: if no candidature is elected at resolution, Anarchy is proclaimed. Under Anarchy, any inhabitant can propose laws.", - parliamentRulesProposals: "If you are the ruling inhabitant or a member of the ruling tribe, you can publish law proposals. Non-dictatorship methods create a public vote.", - parliamentRulesLimit: "Each inhabitant may publish at most 3 law proposals per cycle.", - parliamentRulesLaws: "When a proposal meets its threshold, it becomes a Law and appears in the Laws tab with its enactment date.", - parliamentRulesHistorical: "In the Historical tab you can see every government cycle that has occurred and data about its management.", - parliamentRulesLeaders: "In the Leaders tab you can see a ranking of inhabitants/tribes that have governed (or stood as candidates), ordered by efficiency.", - parliamentProposalVoteStatusLabel: "Vote status", - parliamentProposalOnTrackYes: "Threshold reached", - parliamentProposalOnTrackNo: "Below threshold", - //courts + parliamentCandidaturesListTitle: "Lista de candidaturas", + parliamentElectionsEnd: "Fim das eleições", + parliamentTimeRemaining: "Tempo restante", + parliamentCurrentLeader: "Candidatura vencedora", + parliamentNoLeader: "Ainda sem candidatura vencedora.", + parliamentElectionsStatusTitle: "Próximo governo", + parliamentElectionsStart: "Início das eleições", + parliamentProposalDeadlineLabel: "Prazo", + parliamentProposalTimeLeft: "Tempo restante", + parliamentProposalOnTrack: "A caminho da aprovação", + parliamentProposalOffTrack: "Apoio insuficiente", + parliamentRulesTitle: "Como funciona o Parlamento", + parliamentRulesIntro: "As eleições resolvem-se a cada 2 meses; as candidaturas são contínuas e reiniciam quando um governo é escolhido.", + parliamentRulesCandidates: "Qualquer habitante pode propor-se a si, a outro habitante ou a qualquer tribo. Cada habitante pode propor até 3 candidaturas por ciclo; duplicados no mesmo ciclo são rejeitados.", + parliamentRulesElection: "O vencedor é a candidatura com mais votos no momento da resolução.", + parliamentRulesTies: "Desempate: maior karma do habitante; se empatado, perfil mais antigo; se ainda empatado, proposta mais antiga; depois ordem lexicográfica por ID.", + parliamentRulesFallback: "Se ninguém votar, a última candidatura proposta vence. Se não houver candidaturas, uma tribo aleatória é selecionada.", + parliamentRulesTerm: "O separador Governo mostra o governo atual e estatísticas.", + parliamentRulesMethods: "Formas: Anarquia (maioria simples), Democracia (50%+1), Maioria (80%), Minoria (20%), Karmatocracia (propostas com maior karma), Ditadura (aprovação instantânea).", + parliamentRulesAnarchy: "A Anarquia é o modo predefinido: se nenhuma candidatura for eleita na resolução, a Anarquia é proclamada. Sob Anarquia, qualquer habitante pode propor leis.", + parliamentRulesProposals: "Se és o habitante governante ou membro da tribo governante, podes publicar propostas de lei. Métodos não-ditatoriais criam uma votação pública.", + parliamentRulesLimit: "Cada habitante pode publicar no máximo 3 propostas de lei por ciclo.", + parliamentRulesLaws: "Quando uma proposta atinge o limiar, torna-se Lei e aparece no separador Leis com a data de promulgação.", + parliamentRulesHistorical: "No separador Histórico podes ver cada ciclo de governo que ocorreu e dados sobre a sua gestão.", + parliamentRulesLeaders: "No separador Líderes podes ver um ranking de habitantes/tribos que governaram (ou se candidataram), ordenados por eficiência.", + parliamentProposalVoteStatusLabel: "Estado da votação", + parliamentProposalOnTrackYes: "Limiar atingido", + parliamentProposalOnTrackNo: "Abaixo do limiar", courtsTitle: "Tribunais", - courtsDescription: "Explore forms of conflict resolution and collective justice management.", - courtsFilterCases: "CASES", - courtsFilterMyCases: "MINE", - courtsFilterJudges: "JUDGES", - courtsFilterHistory: "HISTORY", - courtsFilterRules: "RULES", - courtsFilterOpenCase: "OPEN CASE", - courtsCaseFormTitle: "Open Case", + courtsDescription: "Explora formas de resolução de conflitos e gestão coletiva de justiça.", + courtsFilterCases: "CASOS", + courtsFilterMyCases: "MEUS", + courtsFilterJudges: "JUÍZES", + courtsFilterHistory: "HISTÓRICO", + courtsFilterRules: "REGRAS", + courtsFilterOpenCase: "ABRIR CASO", + courtsCaseFormTitle: "Abrir caso", courtsCaseTitle: "Título", - courtsCaseRespondent: "Accused / Respondent", - courtsCaseRespondentPh: "Oasis ID (@...) or Tribe name", - courtsCaseMediatorsAccuser: "Mediators (accuser)", - courtsCaseMediatorsPh: "Oasis IDs, separated by comma", - courtsCaseMethod: "Resolution method", - courtsCaseDescription: "Description (max 1000 chars.)", - courtsCaseEvidenceTitle: "Case evidence", - courtsCaseEvidenceHelp: "Attach images, audios, documents (PDF) or videos that support your case.", - courtsCaseSubmit: "File Case", - courtsNominateJudge: "Nominate Judge", - courtsJudgeId: "Judge", - courtsJudgeIdPh: "Oasis ID (@...) or Inhabitant name", - courtsNominateBtn: "Nominate", - courtsAddEvidence: "Add evidence", - courtsEvidenceText: "Text", + courtsCaseRespondent: "Acusado / Demandado", + courtsCaseRespondentPh: "Oasis ID (@...) ou nome da tribo", + courtsCaseMediatorsAccuser: "Mediadores (acusação)", + courtsCaseMediatorsPh: "Oasis IDs dos mediadores, separados por vírgula", + courtsCaseMethod: "Método de resolução", + courtsCaseDescription: "Descrição (máx 1000 caracteres)", + courtsCaseEvidenceTitle: "Provas do caso", + courtsCaseEvidenceHelp: "Anexa imagens, áudios, documentos (PDF) ou vídeos que sustentem o teu caso.", + courtsCaseSubmit: "Apresentar caso", + courtsNominateJudge: "Nomear juiz", + courtsJudgeId: "Juiz", + courtsJudgeIdPh: "Oasis ID (@...) ou nome do habitante", + courtsNominateBtn: "Nomear", + courtsAddEvidence: "Adicionar prova", + courtsEvidenceText: "Texto", courtsEvidenceLink: "Link", courtsEvidenceLinkPh: "https://…", - courtsEvidenceSubmit: "Attach", - courtsAnswerTitle: "Answer the claim", - courtsAnswerText: "Response brief", - courtsAnswerSubmit: "Send response", - courtsStanceDENY: "Deny", - courtsStanceADMIT: "Admit", - courtsStancePARTIAL: "Partial", - courtsVerdictTitle: "Issue verdict", - courtsVerdictResult: "Result", - courtsVerdictOrders: "Orders", - courtsVerdictOrdersPh: "Actions, deadlines, restorative steps ...", - courtsIssueVerdict: "Issue verdict", - courtsMediationPropose: "Propose settlement", - courtsSettlementText: "Terms", - courtsSettlementProposeBtn: "Propose", - courtsNominationsTitle: "Judiciary nominations", - courtsThJudge: "Judge", - courtsThSupports: "Supports", + courtsEvidenceSubmit: "Anexar", + courtsAnswerTitle: "Responder à alegação", + courtsAnswerText: "Resposta resumida", + courtsAnswerSubmit: "Enviar resposta", + courtsStanceDENY: "Negar", + courtsStanceADMIT: "Admitir", + courtsStancePARTIAL: "Parcial", + courtsVerdictTitle: "Emitir veredicto", + courtsVerdictResult: "Resultado", + courtsVerdictOrders: "Ordens", + courtsVerdictOrdersPh: "Ações, prazos, medidas restaurativas ...", + courtsIssueVerdict: "Emitir veredicto", + courtsMediationPropose: "Propor acordo", + courtsSettlementText: "Termos", + courtsSettlementProposeBtn: "Propor", + courtsNominationsTitle: "Nomeações judiciais", + courtsThJudge: "Juiz", + courtsThSupports: "Apoios", courtsThDate: "Data", - courtsThVote: "Vote", - courtsNoNominations: "No nominations yet.", - courtsAccuser: "Accuser", - courtsRespondent: "Respondent", + courtsThVote: "Voto", + courtsNoNominations: "Ainda sem nomeações.", + courtsAccuser: "Acusador", + courtsRespondent: "Demandado", courtsThStatus: "Estado", - courtsThAnswerBy: "Answer by", - courtsThEvidenceBy: "Evidence by", - courtsThDecisionBy: "Decision by", - courtsThCase: "Case", - courtsThCreatedAt: "Start date", - courtsThActions: "Actions", - courtsCaseMediatorsRespondentTitle: "Add defence mediators", - courtsCaseMediatorsRespondent: "Mediators (defence)", - courtsMediatorsAccuserLabel: "Mediators (accuser)", - courtsMediatorsRespondentLabel: "Mediators (defence)", - courtsMediatorsSubmit: "Save mediators", - courtsVotesNeeded: "Votes needed", - courtsVotesSlashTotal: "YES / TOTAL", - courtsOpenVote: "Open vote", - courtsPublicPrefLabel: "Visibility after resolution", - courtsPublicPrefYes: "I agree this case can be fully public", - courtsPublicPrefNo: "I prefer to keep the details private", - courtsPublicPrefSubmit: "Save visibility preference", - courtsNoCases: "No cases.", - courtsNoMyCases: "You have no conflicts yet.", - courtsNoHistory: "No recorded trials yet.", - courtsMethodJUDGE: "Judge", - courtsMethodDICTATOR: "Dictator", + courtsThAnswerBy: "Resposta por", + courtsThEvidenceBy: "Provas por", + courtsThDecisionBy: "Decisão por", + courtsThCase: "Caso", + courtsThCreatedAt: "Data de início", + courtsThActions: "Ações", + courtsCaseMediatorsRespondentTitle: "Adicionar mediadores de defesa", + courtsCaseMediatorsRespondent: "Mediadores (defesa)", + courtsMediatorsAccuserLabel: "Mediadores (acusação)", + courtsMediatorsRespondentLabel: "Mediadores (defesa)", + courtsMediatorsSubmit: "Guardar mediadores", + courtsVotesNeeded: "Votos necessários", + courtsVotesSlashTotal: "SIM / TOTAL", + courtsOpenVote: "Abrir votação", + courtsPublicPrefLabel: "Visibilidade após resolução", + courtsPublicPrefYes: "Concordo que este caso seja totalmente público", + courtsPublicPrefNo: "Prefiro manter os detalhes privados", + courtsPublicPrefSubmit: "Guardar preferência de visibilidade", + courtsNoCases: "Sem casos.", + courtsNoMyCases: "Ainda sem conflitos.", + courtsNoHistory: "Ainda sem julgamentos registados.", + courtsMethodJUDGE: "Juiz", + courtsMethodDICTATOR: "Ditador", courtsMethodPOPULAR: "Popular", - courtsMethodMEDIATION: "Mediation", - courtsMethodKARMATOCRACY: "Karmatocracy", - courtsMethod: "Method", - courtsRulesTitle: "How Courts work", - courtsRulesIntro: "Courts are a community-run process to resolve conflicts and promote restorative justice. Dialogue, clear evidence, and proportional remedies are prioritized.", - courtsRulesLifecycle: "Process: 1) Open case 2) Select method 3) Submit evidence 4) Hearing and deliberation 5) Verdict and remedy 6) Compliance and closure 7) Appeal (if applicable).", - courtsRulesRoles: "Accuser: opens the case. Defence: accused person or tribe. Method: mechanism chosen by the community to facilitate, assess evidence, and issue a verdict. Witness: provides testimony or evidence. Mediators: neutral people invited by the accuser and/or the defence, with access to all details, who help de-escalate the conflict and co-create agreements.", - courtsRulesEvidence: "Description up to 1000 characters. Attach relevant and lawful images, audio, video, and PDF documents. Do not share sensitive private data without consent.", - courtsRulesDeliberation: "Hearings may be public or private. Judges ensure respect, request clarifications, and may discard irrelevant or unlawful material.", - courtsRulesVerdict: "Restoration is prioritized: apologies, mediation agreements, content moderation, temporary restrictions, or other proportional measures. The reasoning must be recorded.", - courtsRulesAppeals: "Appeal: allowed when there is new evidence or a clear procedural error. Must be filed within 7 days unless otherwise stated.", - courtsRulesPrivacy: "Respect privacy and safety. Doxing, hate, or threats are removed. Judges may edit or seal parts of the record to protect people at risk.", - courtsRulesMisconduct: "Harassment, manipulation, or fabricated evidence may lead to immediate negative resolution.", - courtsRulesGlossary: "Case: record of a conflict. Evidence: materials that support claims. Verdict: decision with remedy. Appeal: request to review the verdict.", - courtsFilterActions: "ACTIONS", - courtsNoActions: "No pending actions for your role.", - courtsCaseTitlePlaceholder: "Short description of the conflict", - courtsCaseSeverity: "Severity", - courtsCaseSeverityNone: "No severity tag", + courtsMethodMEDIATION: "Mediação", + courtsMethodKARMATOCRACY: "Karmatocracia", + courtsMethod: "Método", + courtsRulesTitle: "Como funcionam os Tribunais", + courtsRulesIntro: "Os Tribunais são um processo comunitário para resolver conflitos e promover justiça restaurativa. Diálogo, provas claras e medidas proporcionais são priorizados.", + courtsRulesLifecycle: "Processo: 1) Abrir caso 2) Selecionar método 3) Apresentar provas 4) Audiência e deliberação 5) Veredicto e medida 6) Cumprimento e encerramento 7) Recurso (se aplicável).", + courtsRulesRoles: "Acusador: abre o caso. Defesa: pessoa ou tribo acusada. Método: mecanismo escolhido pela comunidade para facilitar, avaliar provas e emitir veredicto. Testemunha: fornece depoimento ou provas. Mediadores: pessoas neutras convidadas pelo acusador e/ou defesa, com acesso a todos os detalhes, que ajudam a desescalar o conflito e co-criar acordos.", + courtsRulesEvidence: "Descrição até 1000 caracteres. Anexa imagens, áudio, vídeo e documentos PDF relevantes e legais. Não partilhes dados privados sensíveis sem consentimento.", + courtsRulesDeliberation: "As audiências podem ser públicas ou privadas. Os juízes garantem respeito, pedem esclarecimentos e podem descartar material irrelevante ou ilegal.", + courtsRulesVerdict: "A restauração é priorizada: pedidos de desculpa, acordos de mediação, moderação de conteúdo, restrições temporárias ou outras medidas proporcionais. A fundamentação deve ser registada.", + courtsRulesAppeals: "Recurso: permitido quando há novas provas ou erro processual claro. Deve ser apresentado em 7 dias, salvo indicação contrária.", + courtsRulesPrivacy: "Respeita a privacidade e segurança. Doxing, ódio ou ameaças são removidos. Os juízes podem editar ou selar partes do registo para proteger pessoas em risco.", + courtsRulesMisconduct: "Assédio, manipulação ou provas fabricadas podem levar a resolução negativa imediata.", + courtsRulesGlossary: "Caso: registo de um conflito. Provas: materiais que sustentam alegações. Veredicto: decisão com medida. Recurso: pedido de revisão do veredicto.", + courtsFilterActions: "AÇÕES", + courtsNoActions: "Sem ações pendentes para o teu papel.", + courtsCaseTitlePlaceholder: "Breve descrição do conflito", + courtsCaseSeverity: "Gravidade", + courtsCaseSeverityNone: "Sem etiqueta de gravidade", courtsCaseSeverityLOW: "Baixa", courtsCaseSeverityMEDIUM: "Média", courtsCaseSeverityHIGH: "Alta", - courtsCaseSeverityCRITICAL: "Critical", - courtsCaseSubject: "Topic", - courtsCaseSubjectNone: "No topic tag", - courtsCaseSubjectBEHAVIOUR: "Behaviour", + courtsCaseSeverityCRITICAL: "Crítica", + courtsCaseSubject: "Tópico", + courtsCaseSubjectNone: "Sem etiqueta de tópico", + courtsCaseSubjectBEHAVIOUR: "Comportamento", courtsCaseSubjectCONTENT: "Conteúdo", - courtsCaseSubjectGOVERNANCE: "Governance / rules", - courtsCaseSubjectFINANCIAL: "Financial / resources", - courtsCaseSubjectOTHER: "Other", - courtsHiddenRespondent: "Hidden (only visible to involved roles).", - courtsThRole: "Role", - courtsRoleAccuser: "Accuser", - courtsRoleDefence: "Defence", - courtsRoleMediator: "Mediator", - courtsRoleJudge: "Judge", - courtsRoleDictator: "Dictator", - courtsAssignJudgeTitle: "Choose judge", - courtsAssignJudgeBtn: "Choose judge", - //trending + courtsCaseSubjectGOVERNANCE: "Governação / regras", + courtsCaseSubjectFINANCIAL: "Financeiro / recursos", + courtsCaseSubjectOTHER: "Outro", + courtsHiddenRespondent: "Oculto (visível apenas para os envolvidos).", + courtsThRole: "Papel", + courtsRoleAccuser: "Acusador", + courtsRoleDefence: "Defesa", + courtsRoleMediator: "Mediador", + courtsRoleJudge: "Juiz", + courtsRoleDictator: "Ditador", + courtsAssignJudgeTitle: "Escolher juiz", + courtsAssignJudgeBtn: "Escolher juiz", trendingTitle: "Tendências", - exploreTrending: "Explore the most popular content in your network.", - ALLButton: "ALL", - MINEButton: "MINE", - RECENTButton: "RECENT", + exploreTrending: "Explora o conteúdo mais popular na tua rede.", + ALLButton: "TODOS", + MINEButton: "MEUS", + RECENTButton: "RECENTES", TOPButton: "TOP", - bookmarkButton: "BOOKMARKS", - transferButton: "TRANSFERS", - eventButton: "EVENTS", - taskButton: "TASKS", - votesButton: "VOTATIONS", - reportButton: "REPORTS", + bookmarkButton: "MARCADORES", + transferButton: "TRANSFERÊNCIAS", + eventButton: "EVENTOS", + taskButton: "TAREFAS", + votesButton: "VOTAÇÕES", + reportButton: "RELATÓRIOS", feedButton: "FEED", - marketButton: "MARKET", - imageButton: "IMAGES", - audioButton: "AUDIOS", - videoButton: "VIDEOS", - documentButton: "DOCUMENTS", + marketButton: "MERCADO", + imageButton: "IMAGENS", + audioButton: "ÁUDIOS", + videoButton: "VÍDEOS", + documentButton: "DOCUMENTOS", + torrentButton: "TORRENTS", author: "Por", createdAtLabel: "Criado em", - totalVotes: "Total Votes", - noTrendingFound: "No trending content found.", - noContentMessage: "No trending content available, yet.", + totalVotes: "Total de votos", + noTrendingFound: "Nenhum conteúdo em tendência encontrado.", + noContentMessage: "Ainda sem conteúdo em tendência disponível.", trendingDescription: "Descrição", trendingDate: "Data", trendingLocation: "Localização", @@ -981,490 +974,481 @@ module.exports = { trendingStatus: "Estado", trendingFrom: "De", trendingTo: "Para", - trendingConcept: "Concept", + trendingConcept: "Conceito", trendingAmount: "Montante", - trendingDeadline: "Deadline", - trendingItemStatus: "Item Status", - trendingTotalVotes: "Total Votes", - trendingTotalOpinions: "Total Opinions", - trendingNoContentMessage: "No trending content available, yet.", - trendingAuthor: "By", - trendingCreatedAtLabel: "Created At", - trendingTotalCount: "Total Count", - //tasks + trendingDeadline: "Prazo", + trendingItemStatus: "Estado do item", + trendingTotalVotes: "Total de votos", + trendingTotalOpinions: "Total de opiniões", + trendingNoContentMessage: "Ainda sem conteúdo em tendência disponível.", + trendingAuthor: "Por", + trendingCreatedAtLabel: "Criado em", + trendingTotalCount: "Contagem total", tasksTitle: "Tarefas", - tasksDescription: "Discover and manage tasks in your network.", + tasksDescription: "Descobre e gere tarefas na tua rede.", taskTitleLabel: "Título", taskDescriptionLabel: "Descrição", - taskStartTimeLabel: "Start Time", - taskEndTimeLabel: "End Time", + taskStartTimeLabel: "Hora de início", + taskEndTimeLabel: "Hora de fim", taskPriorityLabel: "Prioridade", - taskPrioritySelect: "Select priority", - taskPriorityUrgent: "Urgent", + taskPrioritySelect: "Selecionar prioridade", + taskPriorityUrgent: "Urgente", taskPriorityHigh: "Alta", taskPriorityMedium: "Média", taskPriorityLow: "Baixa", taskLocationLabel: "Localização", taskTagsLabel: "Tags", - taskVisibilityLabel: "Visibility", - taskPublic: "public", - taskPrivate: "private", - taskCreatedAt: "Created At", - taskBy: "By", + taskVisibilityLabel: "Visibilidade", + taskPublic: "público", + taskPrivate: "privado", + taskCreatedAt: "Criado em", + taskBy: "Por", taskStatus: "Estado", taskStatusOpen: "Abrir", - taskStatusInProgress: "In Progress", - taskStatusClosed: "Closed", - taskAssignedTo: "Assigned to", - taskAssignees: "Assignees", - taskAssignButton: "Assign to Me", - taskUnassignButton: "Unassign", - taskCreateButton: "Create Task", + taskStatusInProgress: "Em progresso", + taskStatusClosed: "Fechado", + taskAssignedTo: "Atribuído a", + taskAssignees: "Atribuídos", + taskAssignButton: "Atribuir a mim", + taskUnassignButton: "Remover", + taskCreateButton: "Criar tarefa", taskUpdateButton: "Atualizar", taskDeleteButton: "Eliminar", - taskFilterAll: "ALL", - taskFilterMine: "MINE", - taskFilterOpen: "OPEN", - taskFilterInProgress: "IN-PROGRESS", - taskFilterClosed: "CLOSED", - taskFilterAssigned: "ASSIGNED", - taskFilterArchived: "ARCHIVED", - taskFilterUrgent: "URGENT", - taskFilterHigh: "HIGH", - taskFilterMedium: "MEDIUM", - taskFilterLow: "LOW", + taskFilterAll: "TODOS", + taskFilterMine: "MEUS", + taskFilterOpen: "ABERTO", + taskFilterInProgress: "EM PROGRESSO", + taskFilterClosed: "FECHADO", + taskFilterAssigned: "ATRIBUÍDO", + taskFilterArchived: "ARQUIVADO", + taskFilterUrgent: "URGENTE", + taskFilterHigh: "ALTA", + taskFilterMedium: "MÉDIA", + taskFilterLow: "BAIXA", taskAllSectionTitle: "Tarefas", - taskMineSectionTitle: "Your Tasks", - taskCreateSectionTitle: "Create Task", + taskMineSectionTitle: "As tuas tarefas", + taskCreateSectionTitle: "Criar tarefa", taskUpdateSectionTitle: "Atualizar", - taskOpenTitle: "Open Tasks", - taskInProgressTitle: "In Progress Tasks", - taskClosedTitle: "Closed Tasks", - taskAssignedTitle: "Assigned Tasks", - taskArchivedTitle: "Archived Tasks", - taskPublicTitle: "Public Tasks", - taskPrivateTitle: "Private Tasks", - notasks: "No tasks available.", - noLocation: "No location specified", - taskSetStatus: "Set Status", - //events + taskOpenTitle: "Tarefas abertas", + taskInProgressTitle: "Tarefas em progresso", + taskClosedTitle: "Tarefas fechadas", + taskAssignedTitle: "Tarefas atribuídas", + taskArchivedTitle: "Tarefas arquivadas", + taskPublicTitle: "Tarefas públicas", + taskPrivateTitle: "Tarefas privadas", + notasks: "Sem tarefas disponíveis.", + noLocation: "Sem localização especificada", + taskSetStatus: "Definir estado", eventTitle: "Eventos", eventDateLabel: "Data", eventsTitle: "Eventos", - eventsDescription: "Discover and manage events in your network.", + eventsDescription: "Descobre e gere eventos na tua rede.", eventDescription: "Descrição", eventPrice: "Preço", eventStatus: "Estado", - eventOrganizer: "Organizer", + eventOrganizer: "Organizador", eventAllSectionTitle: "Eventos", - eventMineSectionTitle: "Your Events", - eventArchivedTitle: "Archived Events", - eventCreateSectionTitle: "Create Event", - eventUpdateSectionTitle: "Update Event", + eventMineSectionTitle: "Os teus eventos", + eventArchivedTitle: "Eventos arquivados", + eventCreateSectionTitle: "Criar evento", + eventUpdateSectionTitle: "Atualizar evento", eventDeleteButton: "Eliminar", - eventCreateButton: "Create Event", + eventCreateButton: "Criar evento", eventTitleLabel: "Título", eventDescriptionLabel: "Descrição", - eventDescriptionPlaceholder: "Enter event description...", + eventDescriptionPlaceholder: "Introduz a descrição do evento...", eventUpdateButton: "Atualizar", - eventAttendeesLabel: "Attendees", - eventAttendeesPlaceholder: "Enter attendees, separated by commas...", + eventAttendeesLabel: "Participantes", + eventAttendeesPlaceholder: "Introduz participantes, separados por vírgulas...", eventTagsLabel: "Tags", - eventTagsPlaceholder: "Enter event tags, separated by commas...", + eventTagsPlaceholder: "Introduz tags do evento, separadas por vírgulas...", eventTags: "Tags", eventPriceLabel: "Preço", eventUrlLabel: "URL", - eventAttendees: "Attendees", - noAttendees: "No attendees yet", - eventCreatedAt: "Created At", + eventAttendees: "Participantes", + noAttendees: "Ainda sem participantes", + eventCreatedAt: "Criado em", eventLocation: "Localização", eventLocationLabel: "Localização", - eventNoLocation: "No location specified", - eventNoURL: "No URL specified", - eventBy: "By", - noevents: "No events available.", + eventNoLocation: "Sem localização especificada", + eventNoURL: "Sem URL especificado", + eventBy: "Por", + noevents: "Sem eventos disponíveis.", eventDate: "Data", - eventDateFormat: "DD:MM:YYYY HH:mm", - eventAttendButton: "Attend Event", - eventUnattendButton: "Unattend Event", - eventCreatedBy: "Created By", - eventAttendeesCount: "Attendees Count", - eventCreatedByYou: "You created this event", - eventAttendConfirmation: "You are now attending this event", - eventUnattendConfirmation: "You are no longer attending this event", - eventFilterAll: "ALL", - eventFilterMine: "MINE", - eventFilterToday: "TODAY", - eventFilterWeek: "THIS WEEK", - eventFilterMonth: "THIS MONTH", - eventFilterYear: "THIS YEAR", - eventFilterArchived: "ARCHIVED", - eventTodayTitle: "Today's Events", - eventThisWeekTitle: "This Week's Events", - eventThisMonthTitle: "This Month's Events", - eventThisYearTitle: "This Year's Events", - eventPrivacyLabel: "Visibility", + eventDateFormat: "DD:MM:AAAA HH:mm", + eventAttendButton: "Participar no evento", + eventUnattendButton: "Sair do evento", + eventCreatedBy: "Criado por", + eventAttendeesCount: "Número de participantes", + eventCreatedByYou: "Criaste este evento", + eventAttendConfirmation: "Estás agora a participar neste evento", + eventUnattendConfirmation: "Já não participas neste evento", + eventFilterAll: "TODOS", + eventFilterMine: "MEUS", + eventFilterToday: "HOJE", + eventFilterWeek: "ESTA SEMANA", + eventFilterMonth: "ESTE MÊS", + eventFilterYear: "ESTE ANO", + eventFilterArchived: "ARQUIVADO", + eventTodayTitle: "Eventos de hoje", + eventThisWeekTitle: "Eventos desta semana", + eventThisMonthTitle: "Eventos deste mês", + eventThisYearTitle: "Eventos deste ano", + eventPrivacyLabel: "Visibilidade", eventPublic: "Público", eventPrivate: "Privado", - eventPublicTitle: "Public Events", - eventNoPrice: "Free Event", - eventNoImage: "No image uploaded", + eventPublicTitle: "Eventos públicos", + eventNoPrice: "Evento gratuito", + eventNoImage: "Sem imagem carregada", eventAttendConfirmation: "You are now attending this event", eventUnattendConfirmation: "You are no longer attending this event", - eventAttended: "Attended", - eventUnattended: "Unattended", + eventAttended: "Presente", + eventUnattended: "Ausente", eventStatusOpen: "Abrir", - eventStatusClosed: "Closed", - //tags + eventStatusClosed: "Fechado", tagsTitle: "Tags", - tagsDescription: "Discover and explore taxonomy patterns in your network.", + tagsDescription: "Descobre e explora padrões taxonómicos na tua rede.", tagsAllSectionTitle: "Tags", - tagsTopSectionTitle: "Top Tags", - tagsCloudSectionTitle: "Tags Cloud", - tagsFilterAll: "ALL", + tagsTopSectionTitle: "Tags populares", + tagsCloudSectionTitle: "Nuvem de tags", + tagsFilterAll: "TODOS", tagsFilterTop: "TOP", - tagsFilterCloud: "CLOUD", - tagsNoItems: "No tags available.", + tagsFilterCloud: "NUVEM", + tagsNoItems: "Sem tags disponíveis.", tagsTableHeaderTag: "TAG/LINK:", - tagsTableHeaderCount: "COUNTER:", - //transfers + tagsTableHeaderCount: "CONTADOR:", transfersTitle: "Transferências", - transfersDescription: "Discover and manage transfers in your network.", + transfersDescription: "Descobre e gere transferências na tua rede.", transfersFrom: "De", transfersTo: "Para", - transfersFilterAll: "ALL", - transfersFilterMine: "MINE", - transfersFilterMarket: "MARKET", + transfersFilterAll: "TODOS", + transfersFilterMine: "MEUS", + transfersFilterUBI: "RBU", + transfersFilterMarket: "MERCADO", transfersFilterTop: "TOP", - transfersFilterPending: "PENDING", - transfersFilterUnconfirmed: "UNCONFIRMED", - transfersFilterClosed: "CLOSED", - transfersFilterDiscarded: "DISCARDED", - transfersCreateButton: "Create Transfer", + transfersFilterPending: "PENDENTE", + transfersFilterUnconfirmed: "NÃO CONFIRMADO", + transfersFilterClosed: "FECHADO", + transfersFilterDiscarded: "DESCARTADO", + transfersCreateButton: "Criar transferência", transfersUpdateButton: "Atualizar", transfersDeleteButton: "Eliminar", transfersToUser: "Oasis ID", - transfersToUserValidation: "Valid Oasis ID, e.g. @…=.ed25519", - transfersConcept: "Concept", + transfersToUserValidation: "Oasis ID válido, ex: @…=.ed25519", + transfersConcept: "Conceito", transfersAmount: "Montante", - transfersDeadline: "Deadline", + transfersDeadline: "Prazo", transfersTags: "Tags", transfersStatus: "Estado", - transfersStatusUnconfirmed: "UNCONFIRMED", - transfersStatusClosed: "CLOSED", - transfersStatusDiscarded: "DISCARDED", - transfersCreatedAt: "Created At", - transfersConfirmations: "CONFIRMATIONS", - transfersConfirmButton: "Confirm Transfer", - transfersNoItems: "No transfers found.", - transfersMineSectionTitle: "Your Transfers", - transfersMarketSectionTitle: "Market Transfers", - transfersTopSectionTitle: "Top Transfers", - transfersPendingSectionTitle: "Pending Transfers", - transfersUnconfirmedSectionTitle: "Unconfirmed Transfers", - transfersClosedSectionTitle: "Closed Transfers", - transfersDiscardedSectionTitle: "Discarded Transfers", + transfersStatusUnconfirmed: "NÃO CONFIRMADO", + transfersStatusClosed: "FECHADO", + transfersStatusDiscarded: "DESCARTADO", + transfersCreatedAt: "Criado em", + transfersConfirmations: "CONFIRMAÇÕES", + transfersConfirmButton: "Confirmar transferência", + transfersNoItems: "Sem transferências encontradas.", + transfersMineSectionTitle: "As tuas transferências", + transfersUBISectionTitle: "Transferências RBU", + transfersMarketSectionTitle: "Transferências de mercado", + transfersTopSectionTitle: "Transferências mais votadas", + transfersPendingSectionTitle: "Transferências pendentes", + transfersUnconfirmedSectionTitle: "Transferências não confirmadas", + transfersClosedSectionTitle: "Transferências fechadas", + transfersDiscardedSectionTitle: "Transferências descartadas", + transfersCreateSectionTitle: "Criar transferência", transfersAllSectionTitle: "Transferências", transfersFilterFavs: "Favoritos", - transfersFavsSectionTitle: "Favorite transfers", + transfersFavsSectionTitle: "Transferências favoritas", transfersSearchLabel: "Pesquisa", - transfersSearchPlaceholder: "Search concept, tags, users...", - transfersMinAmountLabel: "Min amount", - transfersMaxAmountLabel: "Max amount", - transfersSortLabel: "Sort by", - transfersSortRecent: "Most recent", - transfersSortAmount: "Highest amount", - transfersSortDeadline: "Closest deadline", + transfersSearchPlaceholder: "Pesquisar conceito, tags, utilizadores...", + transfersMinAmountLabel: "Montante mínimo", + transfersMaxAmountLabel: "Montante máximo", + transfersSortLabel: "Ordenar por", + transfersSortRecent: "Mais recentes", + transfersSortAmount: "Maior montante", + transfersSortDeadline: "Prazo mais próximo", transfersSearchButton: "Pesquisa", - transfersFavoriteButton: "Favorite", - transfersUnfavoriteButton: "Unfavorite", - transfersMessageUserButton: "Message", - transfersExpiringSoonBadge: "EXPIRING", - transfersExpiredBadge: "EXPIRED", - transfersUpdatedAt: "Updated", - transfersNoMatch: "No transfers match your search.", - //votations (voting/polls) - votationsTitle: "Votations", - votationsDescription: "Discover and manage votations in your network.", - voteMineSectionTitle: "Your Votations", - voteCreateSectionTitle: "Create Votation", + transfersFavoriteButton: "Favorito", + transfersUnfavoriteButton: "Remover favorito", + transfersMessageUserButton: "Mensagem", + transfersExpiringSoonBadge: "A EXPIRAR", + transfersExpiredBadge: "EXPIRADO", + transfersUpdatedAt: "Atualizado", + transfersNoMatch: "Nenhuma transferência corresponde à tua pesquisa.", + votationsTitle: "Votações", + votationsDescription: "Descobre e gere votações na tua rede.", + voteMineSectionTitle: "As tuas votações", + voteCreateSectionTitle: "Criar votação", voteUpdateSectionTitle: "Atualizar", - voteOpenTitle: "Open Votations", - voteClosedTitle: "Closed Votations", - voteAllSectionTitle: "Votations", - voteCreateButton: "Create Votation", + voteOpenTitle: "Votações abertas", + voteClosedTitle: "Votações fechadas", + voteAllSectionTitle: "Votações", + voteCreateButton: "Criar votação", voteUpdateButton: "Atualizar", voteDeleteButton: "Eliminar", voteOptionYes: "YES", voteOptionNo: "NO", voteOptionAbstention: "ABSTENTION", - voteConfused: "CONFUSED", - voteFollowMajority: "FOLLOW MAJORITY", - voteNotInterested: "NOT INTERESTED", - voteFilterAll: "ALL", - voteFilterMine: "MINE", - voteFilterOpen: "OPEN", - voteFilterClosed: "CLOSED", - voteQuestionLabel: "Question", - voteDeadlineLabel: "Deadline", - voteOptionsLabel: "Your vote", - voteBreakdown: "Breakdown", - voteFinalResult: "RESULT", + voteConfused: "CONFUSO", + voteFollowMajority: "SEGUIR MAIORIA", + voteNotInterested: "SEM INTERESSE", + voteFilterAll: "TODOS", + voteFilterMine: "MEUS", + voteFilterOpen: "ABERTO", + voteFilterClosed: "FECHADO", + voteQuestionLabel: "Pergunta", + voteDeadlineLabel: "Prazo", + voteOptionsLabel: "O teu voto", + voteBreakdown: "Discriminação", + voteFinalResult: "RESULTADO", voteTagsLabel: "Tags", - voteDeadline: "Deadline", + voteDeadline: "Prazo", voteStatus: "Estado", - voteTotalVotes: "Total Votes", + voteTotalVotes: "Total de votos", voteTags: "Tags", voteOpinions: "Opiniões", - novotes: "No voting proposals available.", - voteBy: "By", - voteCreatedAt: "Created At", - voteNoQuestion: "No question provided", - voteUnknownCreator: "Unknown Creator", - voteUnknownDate: "Unknown Date", - errorVoteNotFound: "Vote not found", - errorAlreadyVoted: "You have already opined.", - errorVoteClosedCannotEdit: "You cannot edit a closed votation", - errorVoteDeadlinePassed: "The deadline for this votation has passed", - errorRetrievingVote: "Error retrieving vote", - errorCreatingVote: "Error creating vote", - errorVoteAlreadyVoted: "Cannot edit after opinion has been cast", - errorDeletingOldVote: "Error deleting old opinion", - errorCreatingUpdatedVote: "Error creating updated opinion", - errorCreatingTombstone: "Error creating tombstone", - voteDetailSectionTitle: 'Vote details', - voteCommentsLabel: 'Comments', - voteCommentsForumButton: 'Open discussion', - voteCommentsSectionTitle: 'Open discussion', - voteNoCommentsYet: 'There are no comments yet. Be the first to reply.', - voteNewCommentPlaceholder: 'Write your comment here…', - voteNewCommentButton: 'Post comment', - voteNewCommentLabel: 'Add a comment', - //CV + novotes: "Sem propostas de votação disponíveis.", + voteBy: "Por", + voteCreatedAt: "Criado em", + voteNoQuestion: "Sem questão fornecida", + voteUnknownCreator: "Criador desconhecido", + voteUnknownDate: "Data desconhecida", + errorVoteNotFound: "Votação não encontrada", + errorAlreadyVoted: "Já deste a tua opinião.", + errorVoteClosedCannotEdit: "Não podes editar uma votação fechada", + errorVoteDeadlinePassed: "O prazo desta votação já passou", + errorRetrievingVote: "Erro ao obter votação", + errorCreatingVote: "Erro ao criar votação", + errorVoteAlreadyVoted: "Não é possível editar após a opinião ter sido emitida", + errorDeletingOldVote: "Erro ao eliminar opinião anterior", + errorCreatingUpdatedVote: "Erro ao criar opinião atualizada", + errorCreatingTombstone: "Erro ao criar tombstone", + voteDetailSectionTitle: 'Detalhes da votação', + voteCommentsLabel: 'Comentários', + voteCommentsForumButton: 'Abrir discussão', + voteCommentsSectionTitle: 'Abrir discussão', + voteNoCommentsYet: 'Ainda sem comentários. Sê o primeiro a responder.', + voteNewCommentPlaceholder: 'Escreve o teu comentário aqui…', + voteNewCommentButton: 'Publicar comentário', + voteNewCommentLabel: 'Adicionar comentário', cvTitle: "Currículo", cvLabel: "Curriculum Vitae (CV)", - cvEditSectionTitle: "Edit CV", - cvCreateSectionTitle: "Create CV", - cvDescription: "Manage and share your professional skills and information.", - cvNameLabel: "Full Name", - cvDescriptionLabel: "Summary", - cvPhotoLabel: "Photo", - cvPersonalExperiencesLabel: "Personal Experiences", - cvPersonalSkillsLabel: "Personal Skills (comma-separated)", - cvOasisExperiencesLabel: "Oasis Contribution Experiences", - cvOasisSkillsLabel: "Oasis Contribution Skills (comma-separated)", - cvEducationExperiencesLabel: "Educational Experiences", - cvEducationalSkillsLabel: "Educational Skills (comma-separated)", - cvProfessionalExperiencesLabel: "Professional Experiences", - cvProfessionalSkillsLabel: "Professional Skills (comma-separated)", - cvLanguagesLabel: "Languages", + cvEditSectionTitle: "Editar CV", + cvCreateSectionTitle: "Criar CV", + cvDescription: "Gere e partilha as tuas competências e informações profissionais.", + cvNameLabel: "Nome completo", + cvDescriptionLabel: "Resumo", + cvPhotoLabel: "Foto", + cvPersonalExperiencesLabel: "Experiências pessoais", + cvPersonalSkillsLabel: "Competências pessoais (separadas por vírgulas)", + cvOasisExperiencesLabel: "Experiências de contribuição Oasis", + cvOasisSkillsLabel: "Competências de contribuição Oasis (separadas por vírgulas)", + cvEducationExperiencesLabel: "Experiências educativas", + cvEducationalSkillsLabel: "Competências educativas (separadas por vírgulas)", + cvProfessionalExperiencesLabel: "Experiências profissionais", + cvProfessionalSkillsLabel: "Competências profissionais (separadas por vírgulas)", + cvLanguagesLabel: "Idiomas", cvLocationLabel: "Localização", cvStatusLabel: "Estado", - cvPreferencesLabel: "Preferences", - cvOasisContributorLabel: "Oasis Contributor", - cvPersonal: "Personal", - cvOasis: "Oasis Contributor (optional)", - cvOasisContributorView: "Oasis Contribution", - cvEducational: "Educational (optional)", - cvEducationalView: "Educational", - cvProfessional: "Professional (optional)", - cvProfessionalView: "Professional", - cvAvailability: "Availability (optional)", - cvAvailabilityView: "Availability", + cvPreferencesLabel: "Preferências", + cvOasisContributorLabel: "Contribuidor Oasis", + cvPersonal: "Pessoal", + cvOasis: "Contribuidor Oasis (opcional)", + cvOasisContributorView: "Contribuição Oasis", + cvEducational: "Educativo (opcional)", + cvEducationalView: "Educativo", + cvProfessional: "Profissional (opcional)", + cvProfessionalView: "Profissional", + cvAvailability: "Disponibilidade (opcional)", + cvAvailabilityView: "Disponibilidade", cvUpdateButton: "Atualizar", - cvCreateButton: "Create CV", - cvContactLabel: "Contact", - cvCreatedAt: "Created At", - cvUpdatedAt: "Updated At", + cvCreateButton: "Criar CV", + cvContactLabel: "Contacto", + cvCreatedAt: "Criado em", + cvUpdatedAt: "Atualizado em", cvEditButton: "Atualizar", cvDeleteButton: "Eliminar", - cvNoCV: "No CV found.", - // blog/post, - blogSubject: "Subject", - blogMessage: "Message", + cvNoCV: "Sem CV encontrado.", + blogSubject: "Assunto", + blogMessage: "Mensagem", blogImage: "Carregar mídia (máx: 50MB)", blogPublish: "Pré-visualizar", - noPopularMessages: "No popular messages published, yet", - //forum - forumTitle: "Forums", + noPopularMessages: "Ainda sem mensagens populares publicadas", + forumTitle: "Fóruns", forumCategoryLabel: "Categoria", forumTitleLabel: "Título", - forumTitlePlaceholder: "Forum title...", - forumCreateButton: "Create forum", - forumCreateSectionTitle: "Create forum", - forumDescription: "Talk openly with other inhabitants in your network.", - forumFilterAll: "ALL", - forumFilterMine: "MINE", - forumFilterRecent: "RECENT", + forumTitlePlaceholder: "Título do fórum...", + forumCreateButton: "Criar fórum", + forumCreateSectionTitle: "Criar fórum", + forumDescription: "Conversa abertamente com outros habitantes na tua rede.", + forumFilterAll: "TODOS", + forumFilterMine: "MEUS", + forumFilterRecent: "RECENTES", forumFilterTop: "TOP", - forumMineSectionTitle: "Your Forums", - forumRecentSectionTitle: "Recent Forums", - forumAllSectionTitle: "Forums", + forumMineSectionTitle: "Os teus fóruns", + forumRecentSectionTitle: "Fóruns recentes", + forumAllSectionTitle: "Fóruns", forumDeleteButton: "Eliminar", - forumParticipants: "participants", - forumMessages: "messages", - forumLastMessage: "Last message", - forumMessageLabel: "Message", - forumMessagePlaceholder: "Write your message...", + forumParticipants: "participantes", + forumMessages: "mensagens", + forumLastMessage: "Última mensagem", + forumMessageLabel: "Mensagem", + forumMessagePlaceholder: "Escreve a tua mensagem...", forumSendButton: "Enviar", - forumVisitForum: "Visit Forum", - noForums: "No forums found.", - forumVisitButton: "Visit forum", - forumCatGENERAL: "General", + forumVisitForum: "Visitar fórum", + noForums: "Sem fóruns encontrados.", + forumVisitButton: "Visitar fórum", + forumCatGENERAL: "Geral", forumCatOASIS: "Oasis", forumCatLARP: "L.A.R.P.", - forumCatPOLITICS: "Politics", - forumCatTECH: "Tech", - forumCatSCIENCE: "Science", - forumCatMUSIC: "Music", - forumCatART: "Art", - forumCatGAMING: "Gaming", - forumCatBOOKS: "Books", - forumCatFILMS: "Films", - forumCatPHILOSOPHY: "Philosophy", - forumCatSOCIETY: "Society", - forumCatPRIVACY: "Privacy", - forumCatCYBERWARFARE: "Cyberwarfare", - forumCatSURVIVALISM: "Survivalism", - //images + forumCatPOLITICS: "Política", + forumCatTECH: "Tecnologia", + forumCatSCIENCE: "Ciência", + forumCatMUSIC: "Música", + forumCatART: "Arte", + forumCatGAMING: "Jogos", + forumCatBOOKS: "Livros", + forumCatFILMS: "Filmes", + forumCatPHILOSOPHY: "Filosofia", + forumCatSOCIETY: "Sociedade", + forumCatPRIVACY: "Privacidade", + forumCatCYBERWARFARE: "Guerra cibernética", + forumCatSURVIVALISM: "Sobrevivencialismo", imageTitle: "Imagens", - imageDescription: "Explore and manage image content in your network.", + imageDescription: "Explora e gere conteúdo de imagens na tua rede.", imagePluginTitle: "Título", imagePluginDescription: "Descrição", - imageMineSectionTitle: "Your Images", - imageCreateSectionTitle: "Upload Image", - imageUpdateSectionTitle: "Update Image", + imageMineSectionTitle: "As tuas imagens", + imageCreateSectionTitle: "Carregar imagem", + imageUpdateSectionTitle: "Atualizar imagem", imageAllSectionTitle: "Imagens", - imageRecentSectionTitle: "Recent Images", - imageTopSectionTitle: "Top Images", + imageRecentSectionTitle: "Imagens recentes", + imageTopSectionTitle: "Imagens mais votadas", imageFavoritesSectionTitle: "Favoritos", imageGallerySectionTitle: "Galeria", imageMemeSectionTitle: "Memes", - imageFilterAll: "ALL", - imageFilterMine: "MINE", - imageFilterRecent: "RECENT", + imageFilterAll: "TODOS", + imageFilterMine: "MEUS", + imageFilterRecent: "RECENTES", imageFilterTop: "TOP", - imageFilterFavorites: "FAVORITES", - imageFilterGallery: "GALLERY", + imageFilterFavorites: "FAVORITOS", + imageFilterGallery: "GALERIA", imageFilterMeme: "MEMES", - imageCreateButton: "Upload Image", + imageCreateButton: "Carregar imagem", imageUpdateButton: "Atualizar", imageDeleteButton: "Eliminar", - imageAddFavoriteButton: "Add favorite", - imageRemoveFavoriteButton: "Remove favorite", - imageFileLabel: "Select an image file (.jpeg, .jpg, .png, .gif)", + imageAddFavoriteButton: "Adicionar favorito", + imageRemoveFavoriteButton: "Remover favorito", + imageFileLabel: "Seleciona um ficheiro de imagem (.jpeg, .jpg, .png, .gif)", imageTagsLabel: "Tags", - imageTagsPlaceholder: "Enter tags separated by commas", + imageTagsPlaceholder: "Introduz tags separadas por vírgulas", imageTitleLabel: "Título", - imageTitlePlaceholder: "Optional", + imageTitlePlaceholder: "Opcional", imageDescriptionLabel: "Descrição", - imageDescriptionPlaceholder: "Optional", - imageMemeLabel: "Mark as MEME", - imageNoFile: "No image file provided", - noImages: "No images available.", - imageSearchPlaceholder: "Search title, tags, description, author...", - imageSortRecent: "Most recent", - imageSortOldest: "Oldest", - imageSortTop: "Most voted", + imageDescriptionPlaceholder: "Opcional", + imageMemeLabel: "MEME?", + imageNoFile: "Nenhum ficheiro de imagem fornecido", + noImages: "Sem imagens disponíveis.", + imageSearchPlaceholder: "Pesquisar título, tags, descrição, autor...", + imageSortRecent: "Mais recentes", + imageSortOldest: "Mais antigos", + imageSortTop: "Mais votados", imageSearchButton: "Pesquisa", - imageMessageAuthorButton: "Message", - imageUpdatedAt: "Updated", - imageNoMatch: "No images match your search.", - //feed + imageMessageAuthorButton: "Mensagem", + imageUpdatedAt: "Atualizado", + imageNoMatch: "Nenhuma imagem corresponde à tua pesquisa.", feedTitle: "Feed", - createFeedTitle: "Create Feed", - createFeedButton: "Send Feed!", - feedPlaceholder: "What's happening? (max 280 characters)", + createFeedTitle: "Criar Feed", + createFeedButton: "Enviar Feed!", + feedPlaceholder: "O que se passa? (máx 280 caracteres)", ALLButton: "Feeds", MINEButton: "Your Feeds", - TODAYButton: "TODAY", + TODAYButton: "HOJE", TOPButton: "Top Feeds", - CREATEButton: "Create Feed", - totalOpinions: "Total Opinions", + CREATEButton: "Criar Feed", + totalOpinions: "Total de opiniões", moreVoted: "Mais votado", - alreadyVoted: "You have already opined.", - noFeedsFound: "No feeds found.", + alreadyVoted: "Já deste a tua opinião.", + noFeedsFound: "Sem feeds encontrados.", author: "Por", createdAtLabel: "Criado em", - FeedshareYourOpinions: "Discover and share short-texts in your network.", - //feed - refeedButton: "Refeed", - alreadyRefeeded: "You already refeeded this.", - //activity + FeedshareYourOpinions: "Descobre e partilha textos curtos na tua rede.", + refeedButton: "Republicar", + alreadyRefeeded: "Já fizeste refeed disto.", activityTitle: "Atividade", - yourActivity: "Your Activity", - globalActivity: "Global Activity", + yourActivity: "A tua atividade", + globalActivity: "Atividade global", activityList: "Atividade", - activityDesc: "See the latest activity in your network.", - allButton: "ALL", - mineButton: "MINE", - noActions: "No activity available.", + activityDesc: "Vê a atividade mais recente na tua rede.", + allButton: "TODOS", + mineButton: "MEUS", + noActions: "Sem atividade disponível.", performed: "→", from: "De", to: "Para", amount: "Montante", - concept: "Concept", + concept: "Conceito", description: "Descrição", meme: "Meme", - activityContact: "Contact", + activityContact: "Contacto", activityBy: "Nome", - activityPixelia: "New pixel added", - viewImage: "View image", - playAudio: "Play audio", - playVideo: "Play video", - typeRecent: "RECENT", - errorActivity: "Error retrieving activity", - typePost: "POST", - typeTribe: "TRIBES", - typeAbout: "INHABITANTS", + activityPixelia: "Novo pixel adicionado", + viewImage: "Ver imagem", + playAudio: "Reproduzir áudio", + playVideo: "Reproduzir vídeo", + typeRecent: "RECENTES", + errorActivity: "Erro ao obter atividade", + typePost: "PUBLICAÇÕES", + typeTribe: "TRIBOS", + typeAbout: "HABITANTES", typeCurriculum: "Currículo", - typeImage: "IMAGES", - typeBookmark: "BOOKMARKS", - typeDocument: "DOCUMENTS", - typeVotes: "VOTATIONS", - typeAudio: "AUDIOS", - typeMarket: "MARKET", - typeJob: "JOBS", - typeProject: "PROJECTS", - typeVideo: "VIDEOS", - typeVote: "SPREAD", - typeEvent: "EVENTS", - typeTransfer: "TRANSFER", - typeTask: "TASKS", + typeImage: "IMAGENS", + typeBookmark: "MARCADORES", + typeDocument: "DOCUMENTOS", + typeVotes: "VOTAÇÕES", + typeAudio: "ÁUDIOS", + typeMarket: "MERCADO", + typeJob: "EMPREGOS", + typeProject: "PROJETOS", + typeVideo: "VÍDEOS", + typeVote: "DIFUSÃO", + typeEvent: "EVENTOS", + typeTransfer: "TRANSFERÊNCIA", + typeTask: "TAREFAS", typePixelia: "PIXELIA", - typeForum: "FORUM", - typeReport: "REPORTS", + typeForum: "FÓRUM", + typeReport: "RELATÓRIOS", typeFeed: "FEED", - typeContact: "CONTACT", + typeContact: "CONTACTO", typePub: "PUB", typeTombstone: "TOMBSTONE", - typeBanking: "BANKING", - typeBankWallet: "BANKING/WALLET", - typeBankClaim: "BANKING/UBI", + typeBanking: "BANCA", + typeBankWallet: "BANCA/CARTEIRA", + typeBankClaim: "BANCA/UBI", typeKarmaScore: "KARMA", typeParliament: "PARLIAMENT", - typeSpread: "SPREADS", + typeSpread: "DIFUSÕES", typeParliamentCandidature: "Parliament · Candidature", typeParliamentTerm: "Parliament · Term", typeParliamentProposal:"Parliament · Proposal", - typeParliamentRevocation:"Parliament · Revocation", + typeParliamentRevocation:"Parlamento · Revogação", typeParliamentLaw: "Parliament · New Law", typeCourts: "COURTS", - typeCourtsCase: "Courts · Case", - typeCourtsEvidence: "Courts · Evidence", - typeCourtsAnswer: "Courts · Answer", - typeCourtsVerdict: "Courts · Verdict", - typeCourtsSettlement: "Courts · Settlement", - typeCourtsSettlementProposal: "Courts · Settlement Proposal", - typeCourtsSettlementAccepted: "Courts · Settlement Accepted", - typeCourtsNomination: "Courts · Nomination", - typeCourtsNominationVote: "Courts · Nomination Vote", - activitySupport: "New alliance forged", - activityJoin: "New PUB joined", - question: "Question", - deadline: "Deadline", + typeCourtsCase: "Tribunais · Caso", + typeCourtsEvidence: "Tribunais · Prova", + typeCourtsAnswer: "Tribunais · Resposta", + typeCourtsVerdict: "Tribunais · Veredicto", + typeCourtsSettlement: "Tribunais · Acordo", + typeCourtsSettlementProposal: "Tribunais · Proposta de acordo", + typeCourtsSettlementAccepted: "Tribunais · Acordo aceite", + typeCourtsNomination: "Tribunais · Nomeação", + typeCourtsNominationVote: "Tribunais · Voto de nomeação", + activitySupport: "Nova aliança formada", + activityJoin: "Novo PUB aderido", + question: "Pergunta", + deadline: "Prazo", status: "Estado", - votes: "Votações", + votes: "Votos", totalVotes: "Total Votes", voteTotalVotes: "Total Votes", name: "Nome", @@ -1473,39 +1457,39 @@ module.exports = { title: "Título", date: "Data", category: "Categoria", - attendees: "Attendees", + attendees: "Participantes", activitySpread: "->", - visitLink: "Visit Link", - viewDocument: "View Document", + visitLink: "Visitar link", + viewDocument: "Ver documento", location: "Localização", - contentWarning: "Subject", - personName: "Inhabitant Name", - bankWalletConnected: "ECOin Wallet", - bankUbiReceived: "UBI Received", + contentWarning: "Assunto", + personName: "Nome do habitante", + bankWalletConnected: "Carteira ECOin", + bankUbiReceived: "UBI recebido", bankTx: "Tx", - bankEpochShort: "Epoch", - bankAllocId: "Allocation ID", - bankingUserEngagementScore: "KARMA Scoring", + bankEpochShort: "Época", + bankAllocId: "ID de alocação", + bankingUserEngagementScore: "Pontuação KARMA", viewDetails: "Ver detalhes", link: "Link", - aiSnippetsLearned: "Snippets learned", - tribeFeedRefeeds: "Refeeds", - activityProjectFollow: "%OASIS% is now %ACTION% this project %PROJECT%", - activityProjectUnfollow: "%OASIS% is now %ACTION% this project %PROJECT%", - activityProjectPledged: "%OASIS% has %ACTION% %AMOUNT% to project %PROJECT%", - following: "FOLLOWING", - unfollowing: "UNFOLLOWING", - pledged: "PLEDGED", + aiSnippetsLearned: "Excertos aprendidos", + tribeFeedRefeeds: "Republicações", + activityProjectFollow: "%OASIS% está agora a %ACTION% este projeto %PROJECT%", + activityProjectUnfollow: "%OASIS% está agora a %ACTION% este projeto %PROJECT%", + activityProjectPledged: "%OASIS% %ACTION% %AMOUNT% ao projeto %PROJECT%", + following: "A SEGUIR", + unfollowing: "A DEIXAR DE SEGUIR", + pledged: "COMPROMETIDO", parliamentCandidatureId: "Candidature", parliamentGovMethod: "Method", parliamentVotesReceived: "Votes received", parliamentMethodANARCHY: "Anarchy", - parliamentMethodVOTE: "Community Vote", - parliamentMethodRANKED: "Ranked Choice", - parliamentMethodPLURALITY: "Plurality", - parliamentMethodCOUNCIL: "Council", - parliamentMethodJURY: "Jury", - parliamentAnarchy: "ANARCHY", + parliamentMethodVOTE: "Votação comunitária", + parliamentMethodRANKED: "Escolha por ranking", + parliamentMethodPLURALITY: "Pluralidade", + parliamentMethodCOUNCIL: "Conselho", + parliamentMethodJURY: "Júri", + parliamentAnarchy: "ANARQUIA", parliamentElectionsStart: "Elections start", parliamentElectionsEnd: "Elections end", parliamentCurrentLeader: "Winning candidature", @@ -1521,14 +1505,14 @@ module.exports = { courtsCaseTitle: "Case", courtsMethod: "Method", courtsMethodJUDGE: "Judge", - courtsMethodJUDGES: "Judges Panel", - courtsMethodSINGLE_JUDGE: "Single Judge", - courtsMethodJURY: "Jury", - courtsMethodCOUNCIL: "Council", - courtsMethodCOMMUNITY: "Community", + courtsMethodJUDGES: "Painel de juízes", + courtsMethodSINGLE_JUDGE: "Juiz único", + courtsMethodJURY: "Júri", + courtsMethodCOUNCIL: "Conselho", + courtsMethodCOMMUNITY: "Comunidade", courtsMethodMEDIATION: "Mediation", - courtsMethodARBITRATION: "Arbitration", - courtsMethodVOTE: "Community Vote", + courtsMethodARBITRATION: "Arbitragem", + courtsMethodVOTE: "Votação comunitária", courtsAccuser: "Accuser", courtsRespondent: "Respondent", courtsThStatus: "Estado", @@ -1542,20 +1526,20 @@ module.exports = { courtsStanceADMIT: "Admit", courtsStanceDENY: "Deny", courtsStancePARTIAL: "Partial", - courtsStanceCOUNTERCLAIM: "Counterclaim", - courtsStanceNEUTRAL: "Neutral", + courtsStanceCOUNTERCLAIM: "Reconvenção", + courtsStanceNEUTRAL: "Neutro", courtsVerdictResult: "Result", courtsVerdictOrders: "Orders", courtsSettlementText: "Settlement", - courtsSettlementAccepted: "Accepted", + courtsSettlementAccepted: "Aceite", courtsSettlementPending: "Pendente", - courtsJudge: "Judge", + courtsJudge: "Juiz", courtsThSupports: "Supports", courtsFilterOpenCase: 'Open Case', - courtsEvidenceFileLabel: 'Evidence file (image, audio, video or PDF)', - courtsCaseMediators: 'Mediators', + courtsEvidenceFileLabel: 'Ficheiro de prova (imagem, áudio, vídeo ou PDF)', + courtsCaseMediators: 'Mediadores', courtsCaseMediatorsPh: 'Mediator Oasis IDs, separated by comma', - courtsMediatorsLabel: 'Mediators', + courtsMediatorsLabel: 'Mediadores', courtsThCase: 'Case', courtsThCreatedAt: 'Start date', courtsThActions: 'Actions', @@ -1565,181 +1549,179 @@ module.exports = { courtsPublicPrefSubmit: 'Save visibility preference', courtsMethodMEDIATION: 'Mediation', courtsNoCases: 'No cases.', - //reports reportsTitle: "Relatórios", - reportsDescription: "Manage and track reports related to issues, bugs, abuses and content warnings in your network.", - reportsFilterAll: "ALL", - reportsFilterMine: "MINE", - reportsFilterFeatures: "FEATURES", + reportsDescription: "Gere e acompanha relatórios relacionados com problemas, bugs, abusos e avisos de conteúdo na tua rede.", + reportsFilterAll: "TODOS", + reportsFilterMine: "MEUS", + reportsFilterFeatures: "FUNCIONALIDADES", reportsFilterBugs: "BUGS", - reportsFilterAbuse: "ABUSE", - reportsFilterContent: "CONTENT", - reportsFilterConfirmed: "CONFIRMED", - reportsFilterResolved: "RESOLVED", - reportsFilterOpen: "OPEN", - reportsFilterUnderReview: "UNDER REVIEW", - reportsFilterInvalid: "INVALID", - reportsCreateButton: "Create Report", + reportsFilterAbuse: "ABUSO", + reportsFilterContent: "CONTEÚDO", + reportsFilterConfirmed: "CONFIRMADO", + reportsFilterResolved: "RESOLVIDO", + reportsFilterOpen: "ABERTO", + reportsFilterUnderReview: "EM ANÁLISE", + reportsFilterInvalid: "INVÁLIDO", + reportsCreateButton: "Criar relatório", reportsTitleLabel: "Título", reportsDescriptionLabel: "Descrição", - reportsDescriptionPlaceholder: "Please provide a detailed description.", + reportsDescriptionPlaceholder: "Por favor, fornece uma descrição detalhada.", reportsCategory: "Categoria", reportsCategoryLabel: "Categoria", - reportsCategoryFeatures: "Features", + reportsCategoryFeatures: "Funcionalidades", reportsCategoryBugs: "Bugs", - reportsCategoryAbuse: "Abuse", - reportsCategoryContent: "Content Issues", + reportsCategoryAbuse: "Abuso", + reportsCategoryContent: "Problemas de conteúdo", reportsUpdateButton: "Atualizar", reportsDeleteButton: "Eliminar", reportsDateLabel: "Data", reportsUploadFile: "Carregar mídia (máx: 50MB)", - reportsCreatedBy: "By", - reportsMineSectionTitle: "Your Reports", - reportsFeaturesSectionTitle: "Feature Requests", + reportsCreatedBy: "Por", + reportsMineSectionTitle: "Os teus relatórios", + reportsFeaturesSectionTitle: "Pedidos de funcionalidades", reportsBugsSectionTitle: "Bugs", - reportsAbuseSectionTitle: "Abuse Reports", - reportsContentSectionTitle: "Content Issues", + reportsAbuseSectionTitle: "Relatórios de abuso", + reportsContentSectionTitle: "Problemas de conteúdo", reportsAllSectionTitle: "Relatórios", - reportsNoItems: "No reports available.", - reportsValidationTitle: "Please enter a valid title.", - reportsValidationDescription: "Description cannot be empty.", - reportsValidationCategory: "Please select a category.", - reportsCreatedAt: "Created At", + reportsNoItems: "Sem relatórios disponíveis.", + reportsValidationTitle: "Por favor, introduz um título válido.", + reportsValidationDescription: "A descrição não pode estar vazia.", + reportsValidationCategory: "Por favor, seleciona uma categoria.", + reportsCreatedAt: "Criado em", reportsCreatedBy: "By", - reportsSeverity: "Severity", + reportsSeverity: "Gravidade", reportsSeverityLow: "Baixa", reportsSeverityMedium: "Média", reportsSeverityHigh: "Alta", - reportsSeverityCritical: "Critical", + reportsSeverityCritical: "Crítica", reportsStatus: "Estado", reportsStatusOpen: "Abrir", - reportsStatusUnderReview: "Under Review", - reportsStatusResolved: "Resolved", - reportsStatusInvalid: "Invalid", - reportsUpdateStatusButton: "Update Status", - reportsAnonymityOption: "Submit Anonymously", + reportsStatusUnderReview: "Em análise", + reportsStatusResolved: "Resolvido", + reportsStatusInvalid: "Inválido", + reportsUpdateStatusButton: "Atualizar estado", + reportsAnonymityOption: "Enviar anonimamente", reportsAnonymousAuthor: "Anónimo", - reportsConfirmButton: "CONFIRM REPORT!", - reportsConfirmations: "Confirmations", - reportsConfirmedSectionTitle: "Confirmed Reports", - reportsCreateTaskButton: "CREATE TASK", - reportsOpenSectionTitle: "Open Reports", - reportsUnderReviewSectionTitle: "Under Review Reports", - reportsResolvedSectionTitle: "Resolved Reports", - reportsInvalidSectionTitle: "Invalid Reports", - reportsTemplateSectionTitle: 'Report template', - reportsBugTemplateTitle: 'Reproduction details (Bugs)', - reportsFeatureTemplateTitle: 'Details (Features)', - reportsAbuseTemplateTitle: 'Details (Abuse)', - reportsContentTemplateTitle: 'Details (Content Issues)', - reportsStepsToReproduceLabel: 'Steps to reproduce', + reportsConfirmButton: "CONFIRMAR RELATÓRIO!", + reportsConfirmations: "Confirmações", + reportsConfirmedSectionTitle: "Relatórios confirmados", + reportsCreateTaskButton: "CRIAR TAREFA", + reportsOpenSectionTitle: "Relatórios abertos", + reportsUnderReviewSectionTitle: "Relatórios em análise", + reportsResolvedSectionTitle: "Relatórios resolvidos", + reportsInvalidSectionTitle: "Relatórios inválidos", + reportsTemplateSectionTitle: 'Modelo de relatório', + reportsBugTemplateTitle: 'Detalhes de reprodução (Bugs)', + reportsFeatureTemplateTitle: 'Detalhes (Funcionalidades)', + reportsAbuseTemplateTitle: 'Detalhes (Abuso)', + reportsContentTemplateTitle: 'Detalhes (Problemas de conteúdo)', + reportsStepsToReproduceLabel: 'Passos para reproduzir', reportsStepsToReproducePlaceholder: '1) ...\n2) ...\n3) ...', - reportsExpectedBehaviorLabel: 'Expected result', - reportsExpectedBehaviorPlaceholder: 'What should happen?', - reportsActualBehaviorLabel: 'Actual result', - reportsActualBehaviorPlaceholder: 'What actually happens?', - reportsEnvironmentLabel: 'Environment', - reportsEnvironmentPlaceholder: 'Version, device, OS, browser, settings, logs, etc.', - reportsReproduceRateLabel: 'Reproduction rate', - reportsReproduceRateAlways: 'Always', - reportsReproduceRateOften: 'Often', - reportsReproduceRateSometimes: 'Sometimes', - reportsReproduceRateRarely: 'Rarely', - reportsReproduceRateUnable: 'Unable to reproduce', - reportsReproduceRateUnknown: 'Not specified', - reportsProblemStatementLabel: 'Problem / need', - reportsProblemStatementPlaceholder: 'What problem does this feature solve?', - reportsUserStoryLabel: 'Inhabitant story', - reportsUserStoryPlaceholder: 'As a , I want , so that .', - reportsAcceptanceCriteriaLabel: 'Acceptance criteria', - reportsAcceptanceCriteriaPlaceholder: '- Given...\n- When...\n- Then...', - reportsWhatHappenedLabel: 'What happened?', - reportsWhatHappenedPlaceholder: 'Describe the incident with context and approximate dates.', - reportsReportedUserLabel: 'Reported inhabitant / entity', - reportsReportedUserPlaceholder: '@inhabitant, feed, ID, link, etc.', - reportsEvidenceLinksLabel: 'Evidence / links', - reportsEvidenceLinksPlaceholder: 'Paste links, message IDs, screenshots (if applicable), etc.', - reportsContentLocationLabel: 'Where the content is', - reportsContentLocationPlaceholder: 'Link, ID, channel, thread, author, etc.', - reportsWhyInappropriateLabel: "Why it's inappropriate", - reportsWhyInappropriatePlaceholder: 'Explain the reason and impact.', - reportsRequestedActionLabel: 'Requested action', - reportsRequestedActionPlaceholder: 'Remove, hide, tag, warn, etc.', - //tribes - tribesTitle: "Tribes", - tribeAllSectionTitle: "Tribes", - tribeMineSectionTitle: "Your Tribes", - tribeCreateSectionTitle: "Create Tribe", - tribeUpdateSectionTitle: "Update Tribe", - tribeGallerySectionTitle: "Tribes Gallery", + reportsExpectedBehaviorLabel: 'Resultado esperado', + reportsExpectedBehaviorPlaceholder: 'O que deveria acontecer?', + reportsActualBehaviorLabel: 'Resultado real', + reportsActualBehaviorPlaceholder: 'O que realmente acontece?', + reportsEnvironmentLabel: 'Ambiente', + reportsEnvironmentPlaceholder: 'Versão, dispositivo, SO, navegador, definições, registos, etc.', + reportsReproduceRateLabel: 'Taxa de reprodução', + reportsReproduceRateAlways: 'Sempre', + reportsReproduceRateOften: 'Frequentemente', + reportsReproduceRateSometimes: 'Às vezes', + reportsReproduceRateRarely: 'Raramente', + reportsReproduceRateUnable: 'Impossível reproduzir', + reportsReproduceRateUnknown: 'Não especificado', + reportsProblemStatementLabel: 'Problema / necessidade', + reportsProblemStatementPlaceholder: 'Que problema esta funcionalidade resolve?', + reportsUserStoryLabel: 'História do habitante', + reportsUserStoryPlaceholder: 'Como , quero , para que .', + reportsAcceptanceCriteriaLabel: 'Critérios de aceitação', + reportsAcceptanceCriteriaPlaceholder: '- Dado...\n- Quando...\n- Então...', + reportsWhatHappenedLabel: 'O que aconteceu?', + reportsWhatHappenedPlaceholder: 'Descreve o incidente com contexto e datas aproximadas.', + reportsReportedUserLabel: 'Habitante / entidade denunciada', + reportsReportedUserPlaceholder: '@habitante, feed, ID, link, etc.', + reportsEvidenceLinksLabel: 'Provas / links', + reportsEvidenceLinksPlaceholder: 'Cola links, IDs de mensagens, capturas de ecrã (se aplicável), etc.', + reportsContentLocationLabel: 'Onde está o conteúdo', + reportsContentLocationPlaceholder: 'Link, ID, canal, conversa, autor, etc.', + reportsWhyInappropriateLabel: "Porquê inapropriado", + reportsWhyInappropriatePlaceholder: 'Explica o motivo e o impacto.', + reportsRequestedActionLabel: 'Ação solicitada', + reportsRequestedActionPlaceholder: 'Remover, ocultar, etiquetar, avisar, etc.', + tribesTitle: "Tribos", + tribeAllSectionTitle: "Tribos", + tribeMineSectionTitle: "As tuas tribos", + tribeCreateSectionTitle: "Criar tribo", + tribeUpdateSectionTitle: "Atualizar tribo", + tribeGallerySectionTitle: "Galeria de tribos", tribeLarpSectionTitle: "L.A.R.P", - tribeRecentSectionTitle: "Recent Tribes", - tribeTopSectionTitle: "Popular Tribes", - tribeviewTribeButton: "Visit Tribe", - tribeDescription: "Explore or create tribes on your network.", - tribeFilterAll: "ALL", - tribeFilterMine: "MINE", - tribeFilterMembership: "MEMBERSHIP", - tribeFilterRecent: "RECENT", + tribeRecentSectionTitle: "Tribos recentes", + tribeTopSectionTitle: "Tribos populares", + tribeviewTribeButton: "Visitar tribo", + tribeDescription: "Explora ou cria tribos na tua rede.", + tribeFilterAll: "TODOS", + tribeFilterMine: "MEUS", + tribeFilterMembership: "MEMBROS", + tribeFilterRecent: "RECENTES", tribeFilterLarp: "L.A.R.P.", tribeFilterTop: "TOP", tribeFilterSubtribes: "SUB-TRIBOS", - tribeFilterGallery: "GALLERY", + tribeFilterGallery: "GALERIA", tribeMainTribeLabel: "TRIBO PRINCIPAL", - tribeCreateButton: "Create Tribe", + tribeCreateButton: "Criar tribo", tribeUpdateButton: "Atualizar", tribeDeleteButton: "Eliminar", tribeImageLabel: "Carregar mídia (máx: 50MB)", tribeTitleLabel: "Título", - searchTribesPlaceholder: "FILTER tribes BY NAME …", - tribeTitlePlaceholder: "Name of the tribe", + searchTribesPlaceholder: "FILTRAR tribos POR NOME …", + tribeTitlePlaceholder: "Nome da tribo", tribeDescriptionLabel: "Descrição", - tribeDescriptionPlaceholder: "Describe this tribe", + tribeDescriptionPlaceholder: "Descreve esta tribo", tribeLocationLabel: "Localização", - tribeLocationPlaceholder: "Where is this tribe located?", + tribeLocationPlaceholder: "Onde está localizada esta tribo?", tribeTagsLabel: "Tags", - tribeTagsPlaceholder: "Enter tags separated by commas", - tribeIsLARPLabel: "L.A.R.P. Tribe?", - tribeInviteMode: "Invite mode", + tribeTagsPlaceholder: "Introduz tags separadas por vírgulas", + tribeIsLARPLabel: "Tribo L.A.R.P.?", + tribeInviteMode: "Modo de convite", tribeLARPLabel: "L.A.R.P.", tribeModeLabel: "MODE", - tribeIsAnonymousLabel: "STATUS", + tribeIsAnonymousLabel: "ESTADO", tribeMembersCount: "Members", - tribeInviteCodePlaceholder: "Enter invite code", - tribeJoinByCodeButton: "Join with code", - tribeJoinButton: "JOIN", - tribeLeaveButton: "LEAVE", - tribeYes: "YES", - tribeNo: "NO", - tribePublic: "PUBLIC", - tribePrivate: "PRIVATE", - tribeGenerateInvite: "GENERATE CODE", - tribeCreatedAt: "Created at", - tribeAuthor: "By", + tribeInviteCodePlaceholder: "Introduz código de convite", + tribeJoinByCodeButton: "Aderir com código", + tribeJoinButton: "ADERIR", + tribeLeaveButton: "SAIR", + tribeYes: "SIM", + tribeNo: "NÃO", + tribePublic: "PÚBLICO", + tribePrivate: "PRIVADO", + tribeGenerateInvite: "GERAR CÓDIGO", + tribeCreatedAt: "Criado em", + tribeAuthor: "Por", tribeAuthorLabel: "AUTOR", - tribeStrict: "Strict", + tribeStrict: "Restrito", tribeOpen: "Abrir", - tribeFeedFilterRECENT: "RECENT", - tribeFeedFilterMINE: "MINE", - tribeFeedFilterALL: "ALL", + tribeFeedFilterRECENT: "RECENTES", + tribeFeedFilterMINE: "MEUS", + tribeFeedFilterALL: "TODOS", tribeFeedFilterTOP: "TOP", - tribeFeedRefeeds: "Refeeds", - tribeFeedRefeed: "Refeed", - tribeFeedMessagePlaceholder: "Write a feed…", + tribeFeedRefeeds: "Republicações", + tribeFeedRefeed: "Republicar", + tribeFeedMessagePlaceholder: "Escreve um feed…", tribeFeedSend: "Enviar", - tribeFeedEmpty: "No feed messages available, yet.", + tribeFeedEmpty: "Ainda sem mensagens de feed disponíveis.", noTribes: "Ainda nenhuma tribo encontrada.", tribeNotFound: "Tribo não encontrada!", createTribeTitle: "Criar tribo", updateTribeTitle: "Atualizar tribo", tribeSectionOverview: "Visão geral", tribeSectionInhabitants: "Habitantes", - tribeSectionVotations: "Votações", - tribeSectionEvents: "Eventos", + tribeSectionVotations: "VOTAÇÕES", + tribeSectionEvents: "EVENTOS", tribeSectionReports: "Relatórios", - tribeSectionTasks: "Tarefas", - tribeSectionFeed: "Feed", - tribeSectionForum: "Fórum", + tribeSectionTasks: "TAREFAS", + tribeSectionFeed: "FEED", + tribeSectionForum: "FÓRUM", tribeSectionMarket: "Mercado", tribeSectionJobs: "Empregos", tribeSectionProjects: "Projetos", @@ -1749,6 +1731,16 @@ module.exports = { tribeSectionVideos: "VÍDEOS", tribeSectionDocuments: "DOCUMENTOS", tribeSectionBookmarks: "MARCADORES", + tribeSectionMaps: "MAPS", + tribeSectionPads: "PADS", + tribeSectionChats: "CHATS", + tribeSectionCalendars: "CALENDARS", + tribePadCreate: "Create Pad", + tribeChatCreate: "Create Chat", + tribeCalendarCreate: "Create Calendar", + tribePadsEmpty: "No pads, yet.", + tribeChatsEmpty: "No chats, yet.", + tribeCalendarsEmpty: "No calendars, yet.", tribeInhabitantsEmpty: "Ainda sem habitantes nesta tribo.", tribeEventCreate: "Criar evento", tribeEventsEmpty: "Ainda sem eventos.", @@ -1843,8 +1835,8 @@ module.exports = { tribePriorityMedium: "MÉDIA", tribePriorityHigh: "ALTA", tribePriorityCritical: "CRÍTICA", - tribeTaskFilterAll: "ALL", - tribeMediaFilterAll: "ALL", + tribeTaskFilterAll: "TODOS", + tribeMediaFilterAll: "TODOS", tribeReportCatBug: "BUG", tribeReportCatAbuse: "ABUSO", tribeReportCatContent: "CONTEÚDO", @@ -1866,7 +1858,7 @@ module.exports = { tribeActivityJoined: "ADERIU", tribeActivityLeft: "SAIU", tribeActivityFeed: "FEED", - tribeActivityRefeed: "REFEED", + tribeActivityRefeed: "REPUBLICAÇÃO", tribeGroupAnalytics: "Análises", tribeGroupCreative: "Criativo", tribeSectionActivity: "ATIVIDADE", @@ -1901,165 +1893,156 @@ module.exports = { tribeSearchEmpty: "Nenhum resultado encontrado.", tribeSearchResults: "Resultados", tribeSearchMinChars: "Introduz pelo menos 2 caracteres para pesquisar.", - // opinionCat - opinionCatInteresting: "Interessante", - opinionCatNecessary: "Necessário", - opinionCatUseful: "Útil", - opinionCatInformative: "Informativo", - opinionCatSpam: "Spam", - opinionCatTroll: "Troll", - //agenda agendaTitle: "Agenda", - agendaDescription: "Here you can find all your assigned items.", - agendaFilterAll: "ALL", - agendaFilterOpen: "OPEN", - agendaFilterClosed: "CLOSED", - agendaFilterTasks: "TASKS", - agendaFilterMarket: "MARKET", - agendaFilterTribes: "TRIBES", - agendaFilterEvents: "EVENTS", - agendaFilterReports: "REPORTS", - agendaFilterTransfers: "TRANSFERS", - agendaFilterJobs: "JOBS", - agendaFilterProjects: "PROJECTS", - agendaNoItems: "No assignments found.", - agendaAuthor: "By", - agendaDiscardButton: "Discard", - agendaRestoreButton: "Restore", - agendaCreatedAt: "Created At", + agendaDescription: "Aqui podes encontrar todos os teus itens atribuídos.", + agendaFilterAll: "TODOS", + agendaFilterOpen: "ABERTO", + agendaFilterClosed: "FECHADO", + agendaFilterTasks: "TAREFAS", + agendaFilterMarket: "MERCADO", + agendaFilterTribes: "TRIBOS", + agendaFilterEvents: "EVENTOS", + agendaFilterReports: "RELATÓRIOS", + agendaFilterTransfers: "TRANSFERÊNCIAS", + agendaFilterJobs: "EMPREGOS", + agendaFilterProjects: "PROJETOS", + agendaFilterCalendars: "CALENDÁRIOS", + agendaNoItems: "Sem atribuições encontradas.", + agendaAuthor: "Por", + agendaDiscardButton: "Descartar", + agendaRestoreButton: "Restaurar", + agendaCreatedAt: "Criado em", agendaTitleLabel: "Título", - agendaMembersCount: "Members", + agendaMembersCount: "Membros", agendaDescriptionLabel: "Descrição", agendaStatus: "Estado", - agendaVisibility: "Visibility", - agendaEventDate: "Event Date", + agendaVisibility: "Visibilidade", + agendaEventDate: "Data do evento", agendaEventLocation: "Localização", agendaEventPrice: "Preço", agendaEventUrl: "URL", - agendaTaskStart: "Start Time", + agendaTaskStart: "Hora de início", agendaLocationLabel: "Localização", agendaLARPLabel: "L.A.R.P.", - agendaYes: "YES", - agendaNo: "NO", + agendaYes: "SIM", + agendaNo: "NÃO", agendaInviteModeLabel: "Estado", agendaAnonymousLabel: "Anónimo", - agendaMembersLabel: "Members", + agendaMembersLabel: "Membros", agendareportCategory: "Categoria", - agendareportSeverity: "Severity", + agendareportSeverity: "Gravidade", agendareportStatus: "Estado", agendareportDescription: "Descrição", - agendaTaskEnd: "End Time", + agendaTaskEnd: "Hora de fim", agendaTaskPriority: "Prioridade", agendaTransferFrom: "De", agendaTransferTo: "Para", - agendaTransferConcept: "Concept", + agendaTransferConcept: "Conceito", agendaTransferAmount: "Montante", - agendaTransferDeadline: "Deadline", + agendaTransferDeadline: "Prazo", agendaTransferFrom: "De", agendaTransferTo: "Para", agendaTransferConcept: "Concept", agendaTransferAmount: "Montante", agendaTransferDeadline: "Deadline", - //opinions opinionsTitle: "Opiniões", - shareYourOpinions: "Discover and vote for opinions in your network.", + shareYourOpinions: "Descobre e vota em opiniões na tua rede.", author: "By", - voteNow: "Vote now", + voteNow: "Votar agora", alreadyVoted: "You have already opined.", - noOpinionsFound: "No opinions found.", + noOpinionsFound: "Sem opiniões encontradas.", ALLButton: "ALL", MINEButton: "MINE", RECENTButton: "RECENT", TOPButton: "TOP", - interestingButton: "INTERESTING", - necessaryButton: "NECESSARY", - funnyButton: "FUNNY", - disgustingButton: "DISGUSTING", - sensibleButton: "SENSIBLE", + interestingButton: "INTERESSANTE", + necessaryButton: "NECESSÁRIO", + funnyButton: "ENGRAÇADO", + disgustingButton: "REPUGNANTE", + sensibleButton: "SENSÍVEL", propagandaButton: "PROPAGANDA", - adultOnlyButton: "ADULT ONLY", - boringButton: "BORING", - confusingButton: "CONFUSING", - inspiringButton: "INSPIRING", + adultOnlyButton: "PARA ADULTOS", + boringButton: "ABORRECIDO", + confusingButton: "CONFUSO", + inspiringButton: "INSPIRADOR", spamButton: "SPAM", - usefulButton: "USEFUL", - informativeButton: "INFORMATIVE", - wellResearchedButton: "WELL RESEARCHED", - accurateButton: "ACCURATE", - needsSourcesButton: "NEEDS SOURCES", - wrongButton: "WRONG", - lowQualityButton: "LOW QUALITY", - creativeButton: "CREATIVE", - insightfulButton: "INSIGHTFUL", - actionableButton: "ACTIONABLE", + usefulButton: "ÚTIL", + informativeButton: "INFORMATIVO", + wellResearchedButton: "BEM PESQUISADO", + accurateButton: "PRECISO", + needsSourcesButton: "PRECISA FONTES", + wrongButton: "ERRADO", + lowQualityButton: "BAIXA QUALIDADE", + creativeButton: "CRIATIVO", + insightfulButton: "PERSPICAZ", + actionableButton: "ACIONÁVEL", inspiringButton: "INSPIRING", - loveButton: "LOVE", - clearButton: "CLEAR", - upliftingButton: "UPLIFTING", - unnecessaryButton: "UNNECESSARY", - rejectedButton: "REJECTED", - misleadingButton: "MISLEADING", - offTopicButton: "OFF TOPIC", - duplicateButton: "DUPLICATE", + loveButton: "AMOR", + clearButton: "CLARO", + upliftingButton: "EDIFICANTE", + unnecessaryButton: "DESNECESSÁRIO", + rejectedButton: "REJEITADO", + misleadingButton: "ENGANOSO", + offTopicButton: "FORA DO TÓPICO", + duplicateButton: "DUPLICADO", clickbaitButton: "CLICKBAIT", spamButton: "SPAM", trollButton: "TROLL", nsfwButton: "NSFW", - violentButton: "VIOLENT", - toxicButton: "TOXIC", - harassmentButton: "HARASSMENT", - hateButton: "HATE", - scamButton: "SCAM", - triggeringButton: "TRIGGERING", - opinionsCreatedAt: "Created At", - opinionsTotalCount: "Total Opinions", - voteInteresting: "Interesting", - voteNecessary: "Necessary", - voteUseful: "Useful", - voteInformative: "Informative", - voteWellResearched: "Well researched", - voteNeedsSources: "Needs sources", - voteWrong: "Wrong", - voteLowQuality: "Low quality", - voteLove: "Love", + violentButton: "VIOLENTO", + toxicButton: "TÓXICO", + harassmentButton: "ASSÉDIO", + hateButton: "ÓDIO", + scamButton: "FRAUDE", + triggeringButton: "PERTURBANTE", + opinionsCreatedAt: "Criado em", + opinionsTotalCount: "Total de opiniões", + voteInteresting: "Interessante", + voteNecessary: "Necessário", + voteUseful: "Útil", + voteInformative: "Informativo", + voteWellResearched: "Bem pesquisado", + voteNeedsSources: "Precisa fontes", + voteWrong: "Errado", + voteLowQuality: "Baixa qualidade", + voteLove: "Amor", voteClear: "Limpar", - voteMisleading: "Misleading", - voteOffTopic: "Off topic", - voteDuplicate: "Duplicate", + voteMisleading: "Enganoso", + voteOffTopic: "Fora do tópico", + voteDuplicate: "Duplicado", voteClickbait: "Clickbait", votePropaganda: "Propaganda", - voteFunny: "Funny", - voteInspiring: "Inspiring", - voteUplifting: "Uplifting", - voteUnnecessary: "Unnecessary", + voteFunny: "Engraçado", + voteInspiring: "Inspirador", + voteUplifting: "Edificante", + voteUnnecessary: "Desnecessário", voteRejected: "Rejeitado", - voteConfusing: "Confusing", + voteConfusing: "Confuso", voteTroll: "Troll", voteNsfw: "NSFW", - voteViolent: "Violent", - voteToxic: "Toxic", - voteHarassment: "Harassment", - voteHate: "Hate", - voteScam: "Scam", - voteTriggering: "Triggering", - voteInsightful: "Insightful", - voteAccurate: "Accurate", - voteActionable: "Actionable", - voteCreative: "Creative", + voteViolent: "Violento", + voteToxic: "Tóxico", + voteHarassment: "Assédio", + voteHate: "Ódio", + voteScam: "Fraude", + voteTriggering: "Perturbante", + voteInsightful: "Perspicaz", + voteAccurate: "Preciso", + voteActionable: "Acionável", + voteCreative: "Criativo", voteSpam: "Spam", - voteAdultOnly: "Adult Only", - //inbox - publishBlog: "Publish Blog", - privateMessage: "PM", - pmSendTitle: "Private Messages", - pmSend: "Send!", - pmDescription: "Use this form to send an encrypted message to other inhabitants.", - pmRecipients: "Recipients", - pmRecipientsHint: "Enter Oasis IDs separated by commas", - pmSubject: "Subject", - pmSubjectHint: "Enter the message subject", - pmText: "Message", - pmFile: "Attachment", + voteAdultOnly: "Para adultos", + publishBlog: "Publicar blog", + privateMessage: "MP", + pmSendTitle: "Mensagens privadas", + pmSend: "Enviar!", + pmDescription: "Usa este formulário para enviar uma mensagem encriptada a outros habitantes.", + pmRecipients: "Destinatários", + pmRecipientsHint: "Introduz Oasis IDs separados por vírgulas", + pmSubject: "Assunto", + pmSubjectHint: "Introduz o assunto da mensagem", + pmText: "Mensagem", + pmFile: "Anexo", private: "Privado", privateDescription: "Your encrypted messages.", privateInbox: "Caixa de entrada", @@ -2067,28 +2050,27 @@ module.exports = { privateDelete: "Eliminar", pmCreateButton: "Escrever MP", noPrivateMessages: "No private messages.", - pmFromLabel: "From:", - pmToLabel: "To:", - pmInvalidMessage: "Invalid message", - pmNoSubject: "(no subject)", + pmFromLabel: "De:", + pmToLabel: "Para:", + pmInvalidMessage: "Mensagem inválida", + pmNoSubject: "(sem assunto)", pmSubjectLabel: "Assunto:", pmBodyLabel: "Corpo", - pmBotJobs: "42-JobsBOT", - pmBotProjects: "42-ProjectsBOT", - pmBotMarket: "42-MarketBOT", - inboxJobSubscribedTitle: "New subscription to your job offer", - pmInhabitantWithId: "Inhabitant with OASIS ID:", - pmHasSubscribedToYourJobOffer: "has subscribed to your job offer", - inboxProjectCreatedTitle: "New project created", - pmHasCreatedAProject: "has created a project", - inboxMarketItemSoldTitle: "Item Sold", - pmYourItem: "Your item", - pmHasBeenSoldTo: "has been sold to", - pmFor: "for", - inboxProjectPledgedTitle: "New pledge to your project", - pmHasPledged: "has pledged", - pmToYourProject: "to your project", - //blockexplorer + pmBotJobs: "42-EmpregoBOT", + pmBotProjects: "42-ProjetosBOT", + pmBotMarket: "42-MercadoBOT", + inboxJobSubscribedTitle: "Nova subscrição à tua oferta de emprego", + pmInhabitantWithId: "Habitante com Oasis ID:", + pmHasSubscribedToYourJobOffer: "subscreveu a tua oferta de emprego", + inboxProjectCreatedTitle: "Novo projeto criado", + pmHasCreatedAProject: "criou um projeto", + inboxMarketItemSoldTitle: "Item vendido", + pmYourItem: "O teu item", + pmHasBeenSoldTo: "foi vendido a", + pmFor: "por", + inboxProjectPledgedTitle: "Novo compromisso com o teu projeto", + pmHasPledged: "comprometeu", + pmToYourProject: "ao teu projeto", blockchain: 'BlockExplorer', blockchainTitle: 'BlockExplorer', blockchainDescription: 'Explore and visualize the blocks in the blockchain.', @@ -2107,9 +2089,8 @@ module.exports = { blockchainBlockInfo: 'Block Information', blockchainBlockDetails: 'Details of the selected block', blockchainBack: 'Back to Blockexplorer', - blockchainContentDeleted: "This content has been tombstoned", + blockchainContentDeleted: "Este conteúdo foi eliminado (tombstone)", visitContent: "Visitar conteúdo", - //banking banking: 'Banking', bankingTitle: 'Banking', bankingDescription: 'Explore the current value of ECOin and the corresponding UBI allocation, distributed per epoch based on participation and trust.', @@ -2121,7 +2102,14 @@ module.exports = { bankBack: 'Back to Banking', bankViewTx: 'View Tx', bankClaimNow: 'Claim now', - bankPubBalance: 'PUB Balance', + bankClaimUBI: 'Reivindicar RBU!', + bankClaimAndPay: 'Claim & Pay', + bankClaimedPending: 'Claim pending...', + bankStatusUnclaimed: 'Unclaimed', + bankStatusClaimed: 'Claimed', + bankStatusExpired: 'Expired', + bankPubOnly: 'PUB-only operation', + bankNoPendingUBI: 'Nenhuma alocação RBU pendente para esta época.', bankEpoch: 'Epoch', bankPool: 'Pool (this epoch)', bankWeightsSum: 'Sum of weights', @@ -2169,516 +2157,602 @@ module.exports = { bankMyAddress: 'Your address', bankRemoveMyAddress: 'Remove my address', bankNotRemovableOasis: 'Addresses cannot be removed locally', - bankingFutureUBI: "Estimated UBI Allocation", + bankingFutureUBI: "UBI", + pubIdTitle: "PUB Wallet", + pubIdDescription: "Set the PUB OASIS ID. This will be used for PUB transactions (including the UBI).", + pubIdLabel: "PUB ID", + pubIdSave: "Save configuration", + pubIdPlaceholder: "@PUB_ID.ed25519", + bankUbiAvailableNo: "SEM FUNDOS!", + bankUbiAvailableOk: "DISPONÍVEL!", + bankUbiAvailability: "Disponibilidade UBI", + bankAlreadyClaimedThisMonth: "Já reclamado este mês", + bankUbiThisMonth: "RBU (este mês)", + bankUbiLastClaimed: "RBU (última reclamada)", + bankUbiNeverClaimed: "Nunca reclamado", + bankUbiTotalClaimed: "RBU (total reclamado)", + bankUbiPub: "PUB", + bankUbiInhabitant: "HABITANTE", + bankUbiClaimedAmount: "RECLAMADO (ECO)", + typeBankUbiResult: "BANCÁRIO - RBU", + bankNoPubConfigured: "Nenhum PUB configurado. Define o teu ID PUB nas Definições.", + shopsTitle: "Lojas", + shopDescription: "Descubra e gerencie lojas na rede.", + shopTitle: "Loja", + shopFilterAll: "TODAS", + shopFilterMine: "MINHAS", + shopFilterRecent: "RECENTES", + shopFilterTop: "TOP", + shopFilterProducts: "PRODUTOS", + shopFilterPrices: "PREÇOS", + shopFilterFavorites: "FAVORITAS", + shopUpload: "Criar Loja", + shopAllSectionTitle: "Todas as Lojas", + shopMineSectionTitle: "Minhas Lojas", + shopRecentSectionTitle: "Lojas Recentes", + shopTopSectionTitle: "Top Lojas", + shopProductsSectionTitle: "Top Produtos", + shopPricesSectionTitle: "Produtos por Preço", + shopFavoritesSectionTitle: "Favoritas", + shopCreateSectionTitle: "Criar Loja", + shopUpdateSectionTitle: "Atualizar Loja", + shopCreate: "Criar", + shopUpdate: "Atualizar", + shopDelete: "Excluir", + shopAddFavorite: "Adicionar Favorito", + shopRemoveFavorite: "Remover Favorito", + shopOpen: "ABERTA", + shopClosed: "FECHADA", + shopOpenShop: "Abrir Loja", + shopCloseShop: "Fechar Loja", + shopProducts: "Produtos", + shopProductAdd: "Adicionar Produto", + shopProductTitle: "Produto", + shopProductUpdate: "Atualizar Produto", + shopProductPrice: "Preço (ECO)", + shopProductStock: "Estoque", + shopProductUntitled: "Produto sem título", + shopUntitled: "Loja sem título", + shopNoItems: "Nenhuma loja encontrada.", + shopNoProducts: "Nenhum produto ainda.", + shopOutOfStock: "Esgotado", + shopBuy: "Comprar", + shopBackToShop: "Voltar à Loja", + shopShareUrl: "URL de partilha", + shopVisitShop: "VISITAR LOJA", + shopStatus: "ESTADO", + shopCreatedAt: "CRIADO", + shopSearchPlaceholder: "Pesquisar lojas...", + shopUrl: "URL", + shopLocation: "Localização", + shopTags: "Tags", + shopVisibility: "Visibilidade", + shopImage: "Imagem", + shopShortDescription: "Descricao Curta", + shopShortDescriptionPlaceholder: "Descricao breve para os cartoes (max 160 caracteres)", + shopTitlePlaceholder: "Nome da sua loja", + shopDescriptionPlaceholder: "Descricao detalhada da sua loja", + shopUrlPlaceholder: "https://url-da-sua-loja.com", + shopLocationPlaceholder: "Cidade, Pais", + shopTagsPlaceholder: "tag1, tag2, tag3", + mapTitlePlaceholder: "Titulo do mapa", + shopProductFeatured: "Produto em Destaque", + shopSendToMarket: "Send to Market", + typeShop: "LOJA", + typeShopProduct: "PRODUTO DE LOJA", bankExchange: 'Exchange', bankExchangeCurrentValue: 'ECOin Value (1h)', bankTotalSupply: 'ECOin Total Supply', - bankEcoinHours: "ECOin Equivalence in Time", + bankEcoinHours: "Equivalência ECOin em tempo", bankHoursOfWork: 'hours', + bankUnitMs: "ms", + bankUnitSeconds: "segundos", + bankUnitMinutes: "minutos", + bankUnitDays: "dias", bankExchangeNoData: 'No data available', bankExchangeIndex: 'ECOin Value (1h)', - bankInflation: 'ECOin Inflation', + bankInflation: 'ECOin Inflation (anual)', + bankInflationMonthly: 'ECOin Inflation (mensual)', bankCurrentSupply: 'ECOin Current Supply', bankingSyncStatus: 'ECOin Status', bankingSyncStatusSynced: 'Synced', bankingSyncStatusOutdated: 'Outdated', - //stats statsTitle: 'Statistics', statistics: "Estatísticas", - statsInhabitant: "Inhabitant Stats", - statsDescription: "Discover statistics about your network.", + statsInhabitant: "Estatísticas do habitante", + statsDescription: "Descobre estatísticas sobre a tua rede.", ALLButton: "ALL", MINEButton: "MINE", TOMBSTONEButton: "TOMBSTONES", - statsYou: "You", + statsYou: "Tu", statsUserId: "Oasis ID", - statsCreatedAt: "Created At", + statsCreatedAt: "Criado em", statsYourContent: "Conteúdo", statsYourOpinions: "Opiniões", statsYourTombstone: "Tombstones", - statsNetwork: "Network", + statsNetwork: "Rede", statsTotalInhabitants: "Habitantes", - statsDiscoveredTribes: "Tribes (Public)", - statsPrivateDiscoveredTribes: "Tribes (Private)", + statsDiscoveredTribes: "Tribos (públicas)", + statsPrivateDiscoveredTribes: "Tribos (privadas)", statsNetworkContent: "Conteúdo", statsYourMarket: "Mercado", statsYourJob: "Empregos", statsYourProject: "Projetos", statsYourTransfer: "Transferências", - statsYourForum: "Forums", + statsYourForum: "Fóruns", statsNetworkOpinions: "Opiniões", statsDiscoveredMarket: "Mercado", statsDiscoveredJob: "Empregos", statsDiscoveredProject: "Projetos", statsBankingTitle: "Banca", - statsEcoWalletLabel: "ECOIN Wallet", - statsEcoWalletNotConfigured: "Not configured!", - statsTotalEcoAddresses: "Total addresses", + statsEcoWalletLabel: "Carteira ECOIN", + statsEcoWalletNotConfigured: "Não configurada!", + statsTotalEcoAddresses: "Total de endereços", statsDiscoveredTransfer: "Transferências", - statsDiscoveredForum: "Forums", + statsDiscoveredForum: "Fóruns", statsNetworkTombstone: "Tombstones", statsBookmark: "Marcadores", statsEvent: "Eventos", statsTask: "Tarefas", - statsVotes: "Votações", + statsVotes: "Votos", statsMarket: "Mercado", - statsForum: "Forums", + statsForum: "Fóruns", statsJob: "Empregos", statsProject: "Projetos", statsReport: "Relatórios", statsFeed: "Feeds", - statsTribe: "Tribes", + statsTribe: "Tribos", statsImage: "Imagens", statsAudio: "Áudios", statsVideo: "Vídeos", statsDocument: "Documentos", + statsMap: "Mapas", + statsShop: "Lojas", + statsShopProduct: "Produtos de loja", statsTransfer: "Transferências", - statsAiExchange: "AI", + statsAiExchange: "IA", statsPUBs: 'PUBs', statsPost: "Publicações", statsOasisID: "Oasis ID", - statsSize: "Total (size)", - statsBlockchainSize: "Blockchain (size)", - statsBlobsSize: "Blobs (size)", - statsActivity7d: "Activity (last 7 days)", - statsActivity7dTotal: "7-day total", - statsActivity30dTotal: "30-day total", - statsKarmaScore: "KARMA Score", + statsSize: "Total (tamanho)", + statsBlockchainSize: "Blockchain (tamanho)", + statsBlobsSize: "Blobs (tamanho)", + statsActivity7d: "Atividade (últimos 7 dias)", + statsActivity7dTotal: "Total 7 dias", + statsActivity30dTotal: "Total 30 dias", + statsKarmaScore: "Pontuação KARMA", statsPublic: "Público", statsPrivate: "Privado", day: "Day", - messages: "Messages", + messages: "Mensagens", statsProject: "Projetos", statsProjectsTitle: "Projetos", - statsProjectsTotal: "Total projects", + statsProjectsTotal: "Total de projetos", statsProjectsActive: "Ativo", statsProjectsCompleted: "Concluído", statsProjectsPaused: "Pausado", statsProjectsCancelled: "Cancelado", - statsProjectsGoalTotal: "Total goal", - statsProjectsPledgedTotal: "Total pledged", - statsProjectsSuccessRate: "Success rate", - statsProjectsAvgProgress: "Average progress", - statsProjectsMedianProgress: "Median progress", - statsProjectsActiveFundingAvg: "Avg. active funding", + statsProjectsGoalTotal: "Objetivo total", + statsProjectsPledgedTotal: "Total comprometido", + statsProjectsSuccessRate: "Taxa de sucesso", + statsProjectsAvgProgress: "Progresso médio", + statsProjectsMedianProgress: "Progresso mediano", + statsProjectsActiveFundingAvg: "Financiamento ativo médio", statsJobsTitle: "Empregos", - statsJobsTotal: "Total jobs", + statsJobsTotal: "Total de empregos", statsJobsOpen: "Abrir", - statsJobsClosed: "Closed", - statsJobsOpenVacants: "Open vacants", - statsJobsSubscribersTotal: "Total subscribers", - statsJobsAvgSalary: "Average salary", - statsJobsMedianSalary: "Median salary", + statsJobsClosed: "Fechado", + statsJobsOpenVacants: "Vagas abertas", + statsJobsSubscribersTotal: "Total de subscritores", + statsJobsAvgSalary: "Salário médio", + statsJobsMedianSalary: "Salário mediano", statsMarketTitle: "Mercado", - statsMarketTotal: "Total items", - statsMarketForSale: "For sale", - statsMarketReserved: "Reserved", - statsMarketClosed: "Closed", - statsMarketSold: "Sold", + statsMarketTotal: "Total de itens", + statsMarketForSale: "À venda", + statsMarketReserved: "Reservado", + statsMarketClosed: "Fechado", + statsMarketSold: "Vendido", statsMarketRevenue: "Receita", - statsMarketAvgSoldPrice: "Avg. sold price", + statsMarketAvgSoldPrice: "Preço médio de venda", statsUsersTitle: "Habitantes", - user: "Inhabitant", + user: "Habitante", statsTombstoneTitle: "Tombstones", - statsNetworkTombstones: "Network tombstones", - statsTombstoneRatio: "Tombstone ratio (%)", - statsAITraining: "AI Training", - statsAIExchanges: "Exchanges", - statsParliamentCandidature: "Parliament candidatures", - statsParliamentTerm: "Parliament terms", - statsParliamentProposal: "Parliament proposals", - statsParliamentRevocation: "Parliament revocations", - statsParliamentLaw: "Parliament laws", - statsCourtsCase: "Court cases", - statsCourtsEvidence: "Court evidence", - statsCourtsAnswer: "Court answers", - statsCourtsVerdict: "Court verdicts", - statsCourtsSettlement: "Court settlements", - statsCourtsSettlementProposal: "Settlement proposals", - statsCourtsSettlementAccepted: "Settlements accepted", - statsCourtsNomination: "Judge nominations", - statsCourtsNominationVote: "Nomination votes", - //AI - ai: "AI", - aiTitle: "AI", - aiDescription: "A Collective Artificial Intelligence (CAI) called '42' that learns from your network.", - aiInputPlaceholder: "What's up?", - aiUserQuestion: "Question", + statsNetworkTombstones: "Tombstones da rede", + statsTombstoneRatio: "Rácio de tombstones (%)", + statsAITraining: "Treino de IA", + statsAIExchanges: "Intercâmbios", + statsParliamentCandidature: "Candidaturas parlamentares", + statsParliamentTerm: "Mandatos parlamentares", + statsParliamentProposal: "Propostas parlamentares", + statsParliamentRevocation: "Revogações parlamentares", + statsParliamentLaw: "Leis parlamentares", + statsCourtsCase: "Casos judiciais", + statsCourtsEvidence: "Provas judiciais", + statsCourtsAnswer: "Respostas judiciais", + statsCourtsVerdict: "Veredictos judiciais", + statsCourtsSettlement: "Acordos judiciais", + statsCourtsSettlementProposal: "Propostas de acordo", + statsCourtsSettlementAccepted: "Acordos aceites", + statsCourtsNomination: "Nomeações de juízes", + statsCourtsNominationVote: "Votos de nomeação", + ai: "IA", + aiTitle: "IA", + aiDescription: "Uma Inteligência Artificial Coletiva (IAC) chamada '42' que aprende com a tua rede.", + aiInputPlaceholder: "O que se passa?", + aiUserQuestion: "Pergunta", aiResponseTitle: "Responder", - aiSubmitButton: "Send!", - aiSettingsDescription: "Set your prompt (max 128 characters) for the AI model.", - aiPrompt: "Provide an informative and precise response.", - aiConfiguration: "Set prompt", + aiSubmitButton: "Enviar!", + aiSettingsDescription: "Define o teu prompt (máx 128 caracteres) para o modelo de IA.", + aiPrompt: "Fornece uma resposta informativa e precisa.", + aiConfiguration: "Definir prompt", aiPromptUsed: "Prompt", - aiClearHistory: "Clear chat history", - aiSharePrompt: "Add this answer to collective training?", + aiClearHistory: "Limpar histórico de conversa", + aiSharePrompt: "Adicionar esta resposta ao treino coletivo?", aiShareYes: "Sim", aiShareNo: "Não", - aiSharedLabel: "Added to training", - aiRejectedLabel: "Not added to training", - aiServerError: "The AI could not answer. Please try again.", + aiSharedLabel: "Adicionado ao treino", + aiRejectedLabel: "Não adicionado ao treino", + aiServerError: "A IA não conseguiu responder. Por favor, tenta novamente.", aiInputPlaceholder: "What is Oasis?", - typeAiExchange: "AI", - aiApproveTrain: "Add to collective training", - aiRejectTrain: "Do not train", - aiTrainPending: "Pending approval", - aiTrainApproved: "Approved for training", - aiTrainRejected: "Rejected for training", - aiSnippetsUsed: "Snippets used", + typeAiExchange: "IA", + aiApproveTrain: "Adicionar ao treino coletivo", + aiRejectTrain: "Não treinar", + aiTrainPending: "Aprovação pendente", + aiTrainApproved: "Aprovado para treino", + aiTrainRejected: "Rejeitado para treino", + aiSnippetsUsed: "Excertos usados", aiSnippetsLearned: "Snippets learned", statsAITraining: "AI training", - aiApproveCustomTrain: "Train using this custom answer", - aiCustomAnswerPlaceholder: "Write your custom answer…", + aiApproveCustomTrain: "Treinar com esta resposta personalizada", + aiCustomAnswerPlaceholder: "Escreve a tua resposta personalizada…", statsAIExchanges: "Model Exchanges", - //market - marketMineSectionTitle: "Your Items", - marketCreateSectionTitle: "Create Item", + marketMineSectionTitle: "Os teus itens", + marketCreateSectionTitle: "Criar item", marketUpdateSectionTitle: "Atualizar", marketAllSectionTitle: "Mercado", - marketRecentSectionTitle: "Recent Market", + marketRecentSectionTitle: "Mercado recente", marketTitle: "Mercado", - marketDescription: "A marketplace for exchanging goods or services in your network.", - marketFilterAll: "ALL", - marketFilterMine: "MINE", - marketFilterAuctions: "AUCTIONS", - marketFilterItems: "EXCHANGE", - marketFilterNew: "NEW", - marketFilterUsed: "USED", - marketFilterBroken: "BROKEN", - marketFilterForSale: "FOR SALE", - marketFilterSold: "SOLD", - marketFilterDiscarded: "DISCARDED", - marketFilterRecent: "RECENT", - marketFilterMyBids: "BIDS", - marketCreateButton: "Create Item", + marketDescription: "Um mercado para trocar bens ou serviços na tua rede.", + marketFilterAll: "TODOS", + marketFilterMine: "MEUS", + marketFilterAuctions: "LEILÕES", + marketFilterItems: "TROCA", + marketFilterNew: "NOVO", + marketFilterUsed: "USADO", + marketFilterBroken: "AVARIADO", + marketFilterForSale: "À VENDA", + marketFilterSold: "VENDIDO", + marketFilterDiscarded: "DESCARTADO", + marketFilterRecent: "RECENTES", + marketFilterMyBids: "LICITAÇÕES", + marketCreateButton: "Criar item", marketItemType: "Tipo", marketItemTitle: "Título", - marketItemAvailable: "Deadline", + marketItemAvailable: "Prazo", marketItemDescription: "Descrição", - marketItemDescriptionPlaceholder: "Describe the item you're selling", + marketItemDescriptionPlaceholder: "Descreve o item que estás a vender", marketItemStatus: "Estado", - marketItemCondition: "Condition", + marketShopLabel: "Loja", + marketItemCondition: "Condição", marketItemPrice: "Preço", marketItemTags: "Tags", - marketItemTagsPlaceholder: "Enter tags separated by commas", - marketItemDeadline: "Deadline", - marketItemIncludesShipping: "Includes Shipping?", - marketItemHighestBid: "Highest Bid", - marketItemHighestBidder: "Highest Bidder", - marketItemStock: "Stock", - marketOutOfStock: "Out of stock", - marketItemBidTime: "Bid Time", + marketItemTagsPlaceholder: "Introduz tags separadas por vírgulas", + marketItemDeadline: "Prazo", + marketItemIncludesShipping: "Inclui envio?", + marketItemHighestBid: "Maior licitação", + marketItemHighestBidder: "Maior licitante", + marketItemStock: "Disponibilidade", + marketOutOfStock: "Esgotado", + marketItemBidTime: "Hora da licitação", marketActionsUpdate: "Atualizar", - marketUpdateButton: "Update Item!", + marketUpdateButton: "Atualizar item!", marketActionsDelete: "Eliminar", - marketActionsSold: "Mark as Sold", - marketActionsChangeStatus: "CHANGE STATUS", - marketActionsBuy: "BUY!", - marketAuctionBids: "Current Bids", - marketPlaceBidButton: "Place Bid", - marketItemSeller: "Seller", - marketNoItems: "No items available, yet.", - marketYourBid: "Your Bid", + marketActionsSold: "Marcar como vendido", + marketActionsChangeStatus: "ALTERAR ESTADO", + marketActionsBuy: "COMPRAR!", + marketAuctionBids: "Licitações atuais", + marketPlaceBidButton: "Fazer licitação", + marketItemSeller: "Vendedor", + marketNoItems: "Ainda sem itens disponíveis.", + marketYourBid: "A tua licitação", marketCreateFormImageLabel: "Carregar mídia (máx: 50MB)", marketSearchLabel: "Pesquisa", - marketSearchPlaceholder: "Search title or tags", - marketMinPriceLabel: "Min price", - marketMaxPriceLabel: "Max price", - marketSortLabel: "Sort by", - marketSortRecent: "Most recent", + marketSearchPlaceholder: "Pesquisar título ou tags", + marketMinPriceLabel: "Preço mínimo", + marketMaxPriceLabel: "Preço máximo", + marketSortLabel: "Ordenar por", + marketSortRecent: "Mais recentes", marketSortPrice: "Preço", - marketSortDeadline: "Deadline", + marketSortDeadline: "Prazo", marketSearchButton: "Pesquisa", - marketAuctionEndsIn: "Ends", - marketAuctionEnded: "Ended", - marketMyBidBadge: "You bid", - marketNoItemsMatch: "No items match your search.", - //jobs + marketAuctionEndsIn: "Termina", + marketAuctionEnded: "Terminado", + marketMyBidBadge: "Licitaste", + marketNoItemsMatch: "Nenhum item corresponde à tua pesquisa.", jobsTitle: "Empregos", - jobsDescription: "Discover and manage jobs in your network.", - jobsFilterRecent: "RECENT", - jobsFilterMine: "MINE", - jobsFilterAll: "ALL", - jobsFilterRemote: "REMOTE", - jobsFilterOpen: "OPEN", - jobsFilterClosed: "CLOSED", + jobsDescription: "Descobre e gere empregos na tua rede.", + jobsFilterRecent: "RECENTES", + jobsFilterMine: "MEUS", + jobsFilterAll: "TODOS", + jobsFilterRemote: "REMOTO", + jobsFilterOpen: "ABERTO", + jobsFilterClosed: "FECHADO", jobsCV: "CVs", - jobsCreateJob: "Create Job", - jobsRecentTitle: "Recent Jobs", - jobsMineTitle: "Your Jobs", + jobsCreateJob: "Criar emprego", + jobsRecentTitle: "Empregos recentes", + jobsMineTitle: "Os teus empregos", jobsAllTitle: "Empregos", - jobsRemoteTitle: "Remote Jobs", - jobsOpenTitle: "Open Jobs", - jobsClosedTitle: "Closed Jobs", + jobsRemoteTitle: "Empregos remotos", + jobsOpenTitle: "Empregos abertos", + jobsClosedTitle: "Empregos fechados", jobsCVTitle: "CVs", jobsFilterPresencial: "PRESENCIAL", jobsFilterFreelancer: "FREELANCER", - jobsFilterEmployee: "EMPLOYEE", - jobsPresencialTitle: "Presential Jobs", - jobsFreelancerTitle: "Freelance Jobs", - jobsEmployeeTitle: "Employee Jobs", + jobsFilterEmployee: "EMPREGADO", + jobsPresencialTitle: "Empregos presenciais", + jobsFreelancerTitle: "Empregos freelance", + jobsEmployeeTitle: "Empregos por conta de outrem", jobTitle: "Título", jobLocation: "Localização", - jobSalary: "Salary (ECO/1h)", - jobVacants: "Vacants", + jobSalary: "Salário (ECO/1h)", + jobVacants: "Vagas", jobDescription: "Descrição", - jobRequirements: "Requirements", - jobLanguages: "Languages", + jobRequirements: "Requisitos", + jobLanguages: "Idiomas", jobStatus: "Estado", - jobStatusOPEN: "OPEN", - jobStatusCLOSED: "CLOSED", - jobSetOpen: "Set as OPEN", - jobSetClosed: "Set as CLOSED", - jobSubscribeButton: "Join this offer!", - jobUnsubscribeButton: "Leave this offer!", - jobTitlePlaceholder: "Enter job title", - jobDescriptionPlaceholder: "Describe the job", - jobRequirementsPlaceholder: "Enter requirements", - jobLanguagesPlaceholder: "English, Spanish, French, Basque...", - jobTasksPlaceholder: "List tasks", - jobLocationPresencial: "On-place", - jobLocationRemote: "Remote", - jobVacantsPlaceholder: "Number of positions", - jobSalaryPlaceholder: "Salary in ECO for 1 dedicated hour", + jobStatusOPEN: "ABERTO", + jobStatusCLOSED: "FECHADO", + jobSetOpen: "Definir como ABERTO", + jobSetClosed: "Definir como FECHADO", + jobSubscribeButton: "Aderir a esta oferta!", + jobUnsubscribeButton: "Sair desta oferta!", + jobTitlePlaceholder: "Introduz o título do emprego", + jobDescriptionPlaceholder: "Descreve o emprego", + jobRequirementsPlaceholder: "Introduz os requisitos", + jobLanguagesPlaceholder: "Inglês, Espanhol, Francês, Basco...", + jobTasksPlaceholder: "Lista de tarefas", + jobLocationPresencial: "Presencial", + jobLocationRemote: "Remoto", + jobVacantsPlaceholder: "Número de posições", + jobSalaryPlaceholder: "Salário em ECO por 1 hora dedicada", jobImage: "Carregar mídia (máx: 50MB)", jobTasks: "Tarefas", - jobType: "Job Type", - jobTime: "Job Time", - jobSubscribers: "Subscribers", - noSubscribers: "No subscribers", + jobType: "Tipo de emprego", + jobTime: "Horário", + jobSubscribers: "Subscritores", + noSubscribers: "Sem subscritores", jobsFilterTop: "TOP", - jobsTopTitle: "Top Salary Jobs", - createJobButton: "Publish Job", - viewDetailsButton: "View Details", - noJobsFound: "No job offers found.", - jobAuthor: "By", + jobsTopTitle: "Empregos com melhor salário", + createJobButton: "Publicar emprego", + viewDetailsButton: "Ver detalhes", + noJobsFound: "Sem ofertas de emprego encontradas.", + jobAuthor: "Por", jobTypeFreelance: "Freelancer", - jobTypeSalary: "Employee", + jobTypeSalary: "Empregado", jobTimePartial: "Part-time", jobTimeComplete: "Full-time", - jobsDeleteButton: "DELETE", - jobsUpdateButton: "UPDATE", - jobsFilterApplied: "APPLIED", - jobsAppliedTitle: "My applications", - jobsAppliedBadge: "Applied", + jobsDeleteButton: "ELIMINAR", + jobsUpdateButton: "ATUALIZAR", + jobsFilterApplied: "CANDIDATADO", + jobsAppliedTitle: "As minhas candidaturas", + jobsAppliedBadge: "Candidatado", jobsFilterFavs: "Favoritos", jobsFavsTitle: "Favoritos", - jobsFilterNeeds: "Needs help", - jobsNeedsTitle: "Needs help", + jobsFilterNeeds: "Precisa ajuda", + jobsNeedsTitle: "Precisa ajuda", jobsSearchLabel: "Pesquisa", - jobsSearchPlaceholder: "Search title, tags, description...", - jobsMinSalaryLabel: "Min salary", - jobsMaxSalaryLabel: "Max salary", - jobsSortLabel: "Sort by", - jobsSortRecent: "Most recent", - jobsSortSalary: "Highest salary", - jobsSortSubscribers: "Most applicants", + jobsSearchPlaceholder: "Pesquisar título, tags, descrição...", + jobsMinSalaryLabel: "Salário mínimo", + jobsMaxSalaryLabel: "Salário máximo", + jobsSortLabel: "Ordenar por", + jobsSortRecent: "Mais recentes", + jobsSortSalary: "Maior salário", + jobsSortSubscribers: "Mais candidatos", jobsSearchButton: "Pesquisa", - jobsFavoriteButton: "Favorite", - jobsUnfavoriteButton: "Unfavorite", - jobsMessageAuthorButton: "PM", - jobsApplicants: "Applicants", - jobsUpdatedAt: "Updated", + jobsFavoriteButton: "Favorito", + jobsUnfavoriteButton: "Remover favorito", + jobsMessageAuthorButton: "MP", + jobsApplicants: "Candidatos", + jobsUpdatedAt: "Atualizado", jobSetOpen: "Set open", - jobNewBadge: "NEW", + jobNewBadge: "NOVO", jobsTagsLabel: "Tags", jobsTagsPlaceholder: "tag1, tag2, tag3", - noJobsMatch: "No jobs match your search.", - //projects + noJobsMatch: "Nenhum emprego corresponde à tua pesquisa.", projectsTitle: "Projetos", - projectsDescription: "Create, fund, and follow community-driven projects in your network.", - projectCreateProject: "Create Project", - projectCreateButton: "Create Project", - projectUpdateButton: "UPDATE", - projectDeleteButton: "DELETE", - projectNoProjectsFound: "No projects found.", - projectFilterAll: "ALL", - projectFilterMine: "MINE", - projectFilterActive: "ACTIVE", - projectFilterPaused: "PAUSED", - projectFilterCompleted: "COMPLETED", - projectFilterFollowing: "FOLLOWING", - projectFilterRecent: "RECENT", + projectsDescription: "Cria, financia e acompanha projetos comunitários na tua rede.", + projectCreateProject: "Criar projeto", + projectCreateButton: "Criar projeto", + projectUpdateButton: "ATUALIZAR", + projectDeleteButton: "ELIMINAR", + projectNoProjectsFound: "Sem projetos encontrados.", + projectFilterAll: "TODOS", + projectFilterMine: "MEUS", + projectFilterActive: "ATIVO", + projectFilterPaused: "PAUSADO", + projectFilterCompleted: "CONCLUÍDO", + projectFilterFollowing: "A SEGUIR", + projectFilterRecent: "RECENTES", projectFilterTop: "TOP", projectAllTitle: "Projetos", - projectMineTitle: "Your Projects", - projectActiveTitle: "Active Projects", - projectPausedTitle: "Paused Projects", - projectCompletedTitle: "Completed Projects", - projectFollowingTitle: "Following Projects", - projectRecentTitle: "Recent Projects", - projectTopTitle: "Top Funded", - projectTitlePlaceholder: "Project name", + projectMineTitle: "Os teus projetos", + projectActiveTitle: "Projetos ativos", + projectPausedTitle: "Projetos pausados", + projectCompletedTitle: "Projetos concluídos", + projectFollowingTitle: "Projetos seguidos", + projectRecentTitle: "Projetos recentes", + projectTopTitle: "Mais financiados", + projectTitlePlaceholder: "Nome do projeto", projectImage: "Carregar mídia (máx: 50MB)", projectDescription: "Descrição", - projectDescriptionPlaceholder: "Tell the story and goals…", - projectGoal: "Goal (ECO)", + projectDescriptionPlaceholder: "Conta a história e os objetivos…", + projectGoal: "Objetivo (ECO)", projectGoalPlaceholder: "50000", - projectDeadline: "Deadline", - projectProgress: "Starting Progress (%)", + projectDeadline: "Prazo", + projectProgress: "Progresso inicial (%)", projectStatus: "Estado", - projectFunding: "Funding", - projectPledged: "Pledged", - projectSetStatus: "Set Status", - projectSetProgress: "Update Progress", - projectFollowButton: "FOLLOW", - projectUnfollowButton: "UNFOLLOW", - projectStatusACTIVE: "ACTIVE", - projectStatusPAUSED: "PAUSED", - projectStatusCOMPLETED: "COMPLETED", - projectStatusCANCELLED: "CANCELLED", - projectPledgeTitle: "Back this project", - projectPledgePlaceholder: "Amount in ECO", - projectBounties: "Bounties", - projectBountiesInputLabel: "Bounties (one per line: Title|Amount [ECO]|Description)", - projectBountiesPlaceholder: "Fix UI bug|100|Link to issue\nWrite docs|250|Outline usage examples", - projectNoBounties: "No bounties found.", + projectFunding: "Financiamento", + projectPledged: "Comprometido", + projectSetStatus: "Definir estado", + projectSetProgress: "Atualizar progresso", + projectFollowButton: "SEGUIR", + projectUnfollowButton: "DEIXAR DE SEGUIR", + projectStatusACTIVE: "ATIVO", + projectStatusPAUSED: "PAUSADO", + projectStatusCOMPLETED: "CONCLUÍDO", + projectStatusCANCELLED: "CANCELADO", + projectPledgeTitle: "Apoiar este projeto", + projectPledgePlaceholder: "Montante em ECO", + projectBounties: "Recompensas", + projectBountiesInputLabel: "Recompensas (uma por linha: Título|Montante [ECO]|Descrição)", + projectBountiesPlaceholder: "Corrigir bug UI|100|Link para o problema\nEscrever docs|250|Exemplos de utilização", + projectNoBounties: "Sem recompensas encontradas.", projectTitle: "Título", - projectAddBountyTitle: "New Bounty", - projectBountyTitle: "Bounty Title", - projectBountyAmount: "Amount (ECO)", + projectAddBountyTitle: "Nova recompensa", + projectBountyTitle: "Título da recompensa", + projectBountyAmount: "Montante (ECO)", projectBountyDescription: "Descrição", - projectMilestoneSelect: "Select Milestone", - projectBountyCreateButton: "Create Bounty", - projectBountyStatus: "Bounty Status", - projectBountyOpen: "open", - projectBountyClaimed: "claimed", - projectBountyDone: "completed", - projectBountyClaimedBy: "claimed by", - projectBountyClaimButton: "claim", - projectBountyCompleteButton: "Mark Completed", - projectMilestones: "Milestones", - projectAddMilestoneTitle: "New milestone", - projectMilestoneTitle: "Milestone Title", - projectMilestoneTargetPercent: "Percent (%)", + projectMilestoneSelect: "Selecionar marco", + projectBountyCreateButton: "Criar recompensa", + projectBountyStatus: "Estado da recompensa", + projectBountyOpen: "aberto", + projectBountyClaimed: "reclamado", + projectBountyDone: "concluído", + projectBountyClaimedBy: "reclamado por", + projectBountyClaimButton: "reclamar", + projectBountyCompleteButton: "Marcar como concluído", + projectMilestones: "Marcos", + projectAddMilestoneTitle: "Novo marco", + projectMilestoneTitle: "Título do marco", + projectMilestoneTargetPercent: "Percentagem (%)", projectMilestoneDueDate: "Data", - projectMilestoneCreateButton: "Create Milestone", - projectMilestoneStatus: "Milestone Status", - projectMilestoneOpen: "open", - projectMilestoneDone: "completed", - projectMilestoneMarkDone: "Mark as Completed", - projectMilestoneDue: "due", - projectNoMilestones: "No milestones found.", + projectMilestoneCreateButton: "Criar marco", + projectMilestoneStatus: "Estado do marco", + projectMilestoneOpen: "aberto", + projectMilestoneDone: "concluído", + projectMilestoneMarkDone: "Marcar como concluído", + projectMilestoneDue: "prazo", + projectNoMilestones: "Sem marcos encontrados.", projectMilestoneMarkDone: "Mark as Done", - projectMilestoneTitlePlaceholder: "Enter milestone title", - projectMilestoneDescriptionPlaceholder: "Enter description for this milestone", - projectMilestoneDescription: "Milestone Description", - projectBudgetGoal: "Budget (Goal)", - projectBudgetAssigned: "Assigned to bounties", - projectBudgetRemaining: "Remaining", - projectBudgetOver: "⚠ Over budget: assigned exceeds goal", - projectFollowers: "Followers", - projectFollowersTitle: "Followers", - projectFollowersNone: "No followers yet.", - projectMore: "more", - projectYouFollowHint: "You follow this project", - projectBackers: "Backers", - projectBackersTitle: "Backers", - projectBackersTotal: "Total backers", - projectBackersTotalPledged: "Total pledged", - projectBackersYourPledge: "Your pledge", - projectBackersNone: "No pledges yet.", - projectNoRemainingBudget: "No remaining budget.", - projectFilterBackers: "BACKERS", - projectFilterApplied: "APPLIED", - projectAppliedTitle: "APPLIED", - projectBackersLeaderboardTitle: "Top Backers", - projectNoBackersFound: "No backers found.", - projectBackerAmount: "Total contributed", - projectBackerPledges: "Pledges", + projectMilestoneTitlePlaceholder: "Introduz o título do marco", + projectMilestoneDescriptionPlaceholder: "Introduz a descrição para este marco", + projectMilestoneDescription: "Descrição do marco", + projectBudgetGoal: "Orçamento (objetivo)", + projectBudgetAssigned: "Atribuído a recompensas", + projectBudgetRemaining: "Restante", + projectBudgetOver: "Acima do orçamento: atribuído excede o objetivo", + projectFollowers: "Seguidores", + projectFollowersTitle: "Seguidores", + projectFollowersNone: "Ainda sem seguidores.", + projectMore: "mais", + projectYouFollowHint: "Segues este projeto", + projectBackers: "Apoiantes", + projectBackersTitle: "Apoiantes", + projectBackersTotal: "Total de apoiantes", + projectBackersTotalPledged: "Total comprometido", + projectBackersYourPledge: "O teu compromisso", + projectBackersNone: "Ainda sem compromissos.", + projectNoRemainingBudget: "Sem orçamento restante.", + projectFilterBackers: "APOIANTES", + projectFilterApplied: "CANDIDATADO", + projectAppliedTitle: "CANDIDATADO", + projectBackersLeaderboardTitle: "Top apoiantes", + projectNoBackersFound: "Sem apoiantes encontrados.", + projectBackerAmount: "Total contribuído", + projectBackerPledges: "Compromissos", projectBackerProjects: "Projetos", projectPledgeAmount: "Montante", - projectSelectMilestoneOrBounty: "Select Milestone or Bounty", - projectPledgeButton: "Pledge", - //footer + projectSelectMilestoneOrBounty: "Selecionar marco ou recompensa", + projectPledgeButton: "Comprometer", footerLicense: "GPLv3", - footerPackage: "Package", - footerVersion: "Version", - //modules + footerPackage: "Pacote", + footerVersion: "Versão", modulesModuleName: "Nome", modulesModuleDescription: "Descrição", modulesModuleStatus: "Estado", - modulesTotalModulesLabel: "Loaded Modules", + modulesTotalModulesLabel: "Módulos carregados", modulesEnabledModulesLabel: "Ativado", modulesDisabledModulesLabel: "Desativado", - modulesPopularLabel: "Popular", - modulesPopularDescription: "Module to receive posts that are trending, most viewed, or most commented on.", + modulesPopularLabel: "Destaques", + modulesPopularDescription: "Módulo para receber publicações em tendência, mais vistas ou mais comentadas.", modulesTopicsLabel: "Tópicos", - modulesTopicsDescription: "Module to receive discussion categories based on shared interests.", + modulesTopicsDescription: "Módulo para receber categorias de discussão baseadas em interesses comuns.", modulesSummariesLabel: "Resumos", - modulesSummariesDescription: "Module to receive summaries of long discussions or posts.", + modulesSummariesDescription: "Módulo para receber resumos de discussões ou publicações longas.", modulesLatestLabel: "Mais recentes", - modulesLatestDescription: "Module to receive the most recent posts and discussions.", + modulesLatestDescription: "Módulo para receber as publicações e discussões mais recentes.", modulesThreadsLabel: "Conversas", - modulesThreadsDescription: "Module to receive conversations grouped by topic or question.", + modulesThreadsDescription: "Módulo para receber conversas agrupadas por tópico ou questão.", modulesMultiverseLabel: "Multiverso", - modulesMultiverseDescription: "Module to receive content from other federated peers.", + modulesMultiverseDescription: "Módulo para receber conteúdo de outros pares federados.", modulesInvitesLabel: "Convites", - modulesInvitesDescription: "Module to manage and apply invite codes.", + modulesInvitesDescription: "Módulo para gerir e aplicar códigos de convite.", modulesWalletLabel: "Carteira", - modulesWalletDescription: "Module to manage your digital assets (ECOin).", - modulesLegacyLabel: "Legacy", - modulesLegacyDescription: "Module to manage your secret (private key) quickly and securely.", - modulesCipherLabel: "Cipher", - modulesCipherDescription: "Module to encrypt and decrypt your text symmetrically (using a shared password).", + modulesWalletDescription: "Módulo para gerir os teus ativos digitais (ECOin).", + modulesLegacyLabel: "Chaves", + modulesLegacyDescription: "Módulo para gerir o teu segredo (chave privada) de forma rápida e segura.", + modulesCipherLabel: "Encriptação", + modulesCipherDescription: "Módulo para encriptar e decifrar o teu texto simetricamente (com senha partilhada).", modulesBookmarksLabel: "Marcadores", - modulesBookmarksDescription: "Module to discover and manage bookmarks.", + modulesBookmarksDescription: "Módulo para descobrir e gerir marcadores.", modulesVideosLabel: "Vídeos", - modulesVideosDescription: "Module to discover and manage videos.", + modulesVideosDescription: "Módulo para descobrir e gerir vídeos.", modulesDocsLabel: "Documentos", - modulesDocsDescription: "Module to discover and manage documents.", + modulesDocsDescription: "Módulo para descobrir e gerir documentos.", modulesAudiosLabel: "Áudios", - modulesAudiosDescription: "Module to discover and manage audios.", + modulesAudiosDescription: "Módulo para descobrir e gerir áudios.", modulesTagsLabel: "Tags", - modulesTagsDescription: "Module to discover and explore taxonomy patterns (tags).", + modulesTagsDescription: "Módulo para descobrir e explorar padrões taxonómicos (tags).", modulesImagesLabel: "Imagens", - modulesImagesDescription: "Module to discover and manage images.", + modulesImagesDescription: "Módulo para descobrir e gerir imagens.", modulesTrendingLabel: "Tendências", - modulesTrendingDescription: "Module to explore the most popular content.", + modulesTrendingDescription: "Módulo para explorar o conteúdo mais popular.", modulesEventsLabel: "Eventos", - modulesEventsDescription: "Module to discover and manage events.", + modulesEventsDescription: "Módulo para descobrir e gerir eventos.", modulesTasksLabel: "Tarefas", - modulesTasksDescription: "Module to discover and manage tasks.", + modulesTasksDescription: "Módulo para descobrir e gerir tarefas.", modulesMarketLabel: "Mercado", - modulesMarketDescription: "Module to exchange goods or services.", - modulesTribesLabel: "Tribes", - modulesTribesDescription: "Module to explore or create tribes (groups).", - modulesVotationsLabel: "Votations", - modulesVotationsDescription: "Module to discover and manage votations.", + modulesMarketDescription: "Módulo para trocar bens ou serviços.", + modulesShopsLabel: "Lojas", + modulesShopsDescription: "Módulo para gerir e descobrir lojas.", + modulesTribesLabel: "Tribos", + modulesTribesDescription: "Módulo para explorar ou criar tribos (grupos).", + modulesVotationsLabel: "Votações", + modulesVotationsDescription: "Módulo para descobrir e gerir votações.", modulesReportsLabel: "Relatórios", - modulesReportsDescription: "Module to manage and track reports related to issues, bugs, abuses, and content warnings.", + modulesReportsDescription: "Módulo para gerir e acompanhar relatórios de problemas, bugs, abusos e avisos de conteúdo.", modulesOpinionsLabel: "Opiniões", - modulesOpinionsDescription: "Module to discover and vote on opinions.", + modulesOpinionsDescription: "Módulo para descobrir e votar em opiniões.", modulesTransfersLabel: "Transferências", - modulesTransfersDescription: "Module to discover and manage smart-contracts (transfers).", + modulesTransfersDescription: "Módulo para descobrir e gerir contratos inteligentes (transferências).", modulesFeedLabel: "Feed", - modulesFeedDescription: "Module to discover and share short-texts (feeds).", + modulesFeedDescription: "Módulo para descobrir e partilhar textos curtos (feeds).", modulesParliamentLabel: "Parlamento", - modulesParliamentDescription: "Module to elect governments and vote on laws.", + modulesParliamentDescription: "Módulo para eleger governos e votar em leis.", modulesCourtsLabel: "Tribunais", - modulesCourtsDescription: "Module to resolve conflicts and emit veredicts.", + modulesCourtsDescription: "Módulo para resolver conflitos e emitir veredictos.", modulesPixeliaLabel: "Pixelia", - modulesPixeliaDescription: "Module to draw on a collaborative grid.", + modulesPixeliaDescription: "Módulo para desenhar numa grelha colaborativa.", modulesAgendaLabel: "Agenda", - modulesAgendaDescription: "Module to manage all your assigned items.", + modulesAgendaDescription: "Módulo para gerir todos os teus itens atribuídos.", modulesAILabel: "AI", - modulesAIDescription: "Module to talk with a LLM called '42'.", - modulesForumLabel: "Forums", - modulesForumDescription: "Module to discover and manage forums.", + modulesAIDescription: "Módulo para conversar com um LLM chamado '42'.", + modulesForumLabel: "Fóruns", + modulesForumDescription: "Módulo para descobrir e gerir fóruns.", modulesJobsLabel: "Empregos", - modulesJobsDescription: "Module to discover and manage jobs.", + modulesJobsDescription: "Módulo para descobrir e gerir empregos.", modulesProjectsLabel: "Projetos", - modulesProjectsDescription: "Module to explore, crowd-funding and manage projects.", + modulesProjectsDescription: "Módulo para explorar, financiar coletivamente e gerir projetos.", modulesBankingLabel: "Banca", - modulesBankingDescription: "Module to determine the real value of ECOIN and distribute a UBI using the common treasury.", + modulesBankingDescription: "Módulo para determinar o valor real do ECOIN e distribuir um UBI usando o tesouro comum.", modulesFavoritesLabel: "Favoritos", - modulesFavoritesDescription: "Module to manage your favorite content.", - fileTooLargeTitle: "File too large", - fileTooLargeMessage: "The file exceeds the maximum allowed size (50 MB). Please select a smaller file.", - goBack: "Go back", + modulesFavoritesDescription: "Módulo para gerir o teu conteúdo favorito.", + fileTooLargeTitle: "Ficheiro demasiado grande", + fileTooLargeMessage: "O ficheiro excede o tamanho máximo permitido (50 MB). Por favor, seleciona um ficheiro mais pequeno.", + goBack: "Voltar", directConnect: "Ligação direta", directConnectDescription: "Conecta-te diretamente a um par inserindo o endereço IP, porta e chave pública.", - peerHost: "IP / Hostname", + peerHost: "IP / Nome do anfitrião", peerPort: "Porta (predefinida: 8008)", peerPublicKey: "Chave pública (@...ed25519)", connectAndFollow: "Conectar", @@ -2697,6 +2771,425 @@ module.exports = { dominantOpinionLabel: "Opinião dominante", uploadMedia: "Carregar mídia (máx: 50MB)", - //END + courtsRespondentInvalid: "Demandado inválido", + feedDetailTitle: "Detalhe do feed", + feedOpenDiscussion: "Abrir discussão", + feedPostComment: "Publicar comentário", + noComments: "Ainda sem comentários.", + mapsLabel: "Mapas", + mapTitle: "Mapas", + mapDescription: "Explore e gerencie mapas offline na sua rede.", + mapMineSectionTitle: "Seus Mapas", + mapCreateSectionTitle: "Criar Mapa", + mapUpdateSectionTitle: "Atualizar Mapa", + mapAllSectionTitle: "Mapas", + mapRecentSectionTitle: "Mapas Recentes", + mapFavoritesSectionTitle: "Favoritos", + mapFilterAll: "TODOS", + mapFilterMine: "MEUS", + mapFilterRecent: "RECENTES", + mapFilterFavorites: "FAVORITOS", + mapUploadButton: "Criar Mapa", + mapCreateButton: "Criar Mapa", + mapUpdateButton: "Atualizar", + mapDeleteButton: "Excluir", + mapAddFavoriteButton: "Adicionar favorito", + mapRemoveFavoriteButton: "Remover favorito", + mapLatLabel: "Latitude", + mapLatPlaceholder: "ex. 38.7223", + mapLngLabel: "Longitude", + mapLngPlaceholder: "ex. -9.1393", + mapDescriptionLabel: "Descrição", + mapDescriptionPlaceholder: "Descreva o mapa ou localização...", + mapTypeLabel: "Tipo de mapa", + mapTypeSingle: "ÚNICO (apenas localização inicial)", + mapTypeOpen: "ABERTO (qualquer um pode adicionar marcadores)", + mapTypeClosed: "FECHADO (apenas o criador adiciona marcadores)", + mapTagsLabel: "Tags", + mapTagsPlaceholder: "Insira tags separadas por vírgulas", + mapUrlLabel: "URL do mapa", + mapPickCoordLabel: "Ou selecione uma localização na grade:", + mapMarkersLabel: "marcadores", + mapMarkersTitle: "Marcadores", + mapMarkerDefault: "Marcador", + mapMarkerLatLabel: "Latitude do marcador", + mapMarkerLngLabel: "Longitude do marcador", + mapMarkerLabelField: "Rótulo do marcador", + mapMarkerLabelPlaceholder: "Descreva este marcador...", + markerImageLabel: "Imagem do Marcador", + mapAddMarkerTitle: "Adicionar Marcador", + mapAddMarkerButton: "Adicionar Marcador", + mapCleanMarkerButton: "Clean Marker", + mapApplyZoom: "Aplicar Zoom", + mapSearchPlaceholder: "Buscar descrição, tags, autor...", + mapSearchButton: "Buscar", + mapUpdatedAt: "Atualizado", + mapNoMatch: "Nenhum mapa corresponde à sua busca.", + noMaps: "Nenhum mapa disponível.", + mapLocationTitle: "Localização", + mapVisitLabel: "Visitar mapa", + typeMap: "MAPAS", + typeMapMarker: "MARCADOR DE MAPA", + modulesMapLabel: "Mapas", + modulesMapDescription: "Módulo para gerenciar e compartilhar mapas offline.", + padsTitle: "Pads", + padTitle: "Pad", + modulesPadsLabel: "Pads", + modulesPadsDescription: "Módulo para gerir editores de texto colaborativos.", + padFilterAll: "TODOS", + padFilterMine: "MEU", + padFilterRecent: "RECENTE", + padFilterOpen: "ABERTO", + padFilterClosed: "FECHADO", + padCreate: "Criar Pad", + padUpdate: "Atualizar Pad", + padDelete: "Eliminar Pad", + padTitleLabel: "Título", + padTitlePlaceholder: "Escreva o título do pad...", + padStatusLabel: "Estado", + padStatusOpen: "ABERTO", + padStatusInviteOnly: "APENAS POR CONVITE", + padStatusClosed: "FECHADO", + padDeadlineLabel: "Prazo", + padTagsLabel: "Tags", + padTagsPlaceholder: "tag1, tag2, ...", + padMembersLabel: "Membros", + padVisitPad: "Visitar Pad", + padShareUrl: "Partilhar URL", + padCreated: "Criado", + padAuthor: "Autor", + padGenerateCode: "Gerar Código", + padInviteCodeLabel: "Código de Convite", + padInviteCodePlaceholder: "Introduza o código de convite...", + padValidateInvite: "Validar", + padStartEditing: "COMEÇAR A EDITAR!", + padEditorPlaceholder: "Comece a escrever...", + padSubmitEntry: "Enviar", + padNoEntries: "Sem entradas ainda.", + padAllSectionTitle: "Todos os Pads", + padMineSectionTitle: "Os Meus Pads", + padRecentSectionTitle: "Pads Recentes", + padOpenSectionTitle: "Pads Abertos", + padClosedSectionTitle: "Pads Fechados", + padCreateSectionTitle: "Criar Novo Pad", + padUpdateSectionTitle: "Atualizar Pad", + padInviteGenerated: "Código de Convite Gerado", + typePad: "PAD", + padNew: "NOVO", + padAddFavorite: "Adicionar aos Favoritos", + padRemoveFavorite: "Remover dos Favoritos", + padClose: "Fechar Pad", + padBackToEditor: "Voltar ao editor", + padSearchPlaceholder: "Pesquisar pads...", + + modulesChatsLabel: "Chats", + modulesChatsDescription: "Módulo para descobrir e gerir chats cifrados.", + typeChat: "CHAT", + typeChatMessage: "MENSAGEM CHAT", + chatLabel: "CHATS", + chatMessageLabel: "MENSAGENS CHAT", + chatsTitle: "Chats", + chatMineSectionTitle: "Your Chats", + chatRecentTitle: "Recent Chats", + chatFavoritesTitle: "Favoritos", + chatOpenTitle: "Open Chats", + chatClosedTitle: "Closed Chats", + chatDescription: "Descrição", + chatCategory: "Categoria", + chatStatus: "ESTADO", + chatFilterAll: "TODOS", + chatFilterMine: "MEU", + chatFilterRecent: "RECENTE", + chatFilterFavorites: "FAVORITOS", + chatFilterOpen: "ABERTO", + chatFilterClosed: "FECHADO", + chatCreate: "Criar Chat", + chatUpdate: "Atualizar Chat", + chatDelete: "Eliminar Chat", + chatClose: "Fechar Chat", + chatVisitChat: "VER CHAT", + chatUntitled: "Chat sem título", + chatNoItems: "Nenhum chat encontrado.", + chatParticipants: "Participantes", + chatStartChatting: "COMEÇAR A CONVERSAR!", + chatGenerateCode: "Gerar Código", + chatShareUrl: "Partilhar URL", + chatCreatedAt: "CRIADO", + chatSearchPlaceholder: "Pesquisar chats...", + chatStatusOpen: "ABERTO", + chatStatusInviteOnly: "SÓ POR CONVITE", + chatStatusClosed: "FECHADO", + chatSendMessage: "Enviar", + chatMessagePlaceholder: "Escreva a sua mensagem...", + chatNoMessages: "Sem mensagens ainda.", + chatLeave: "Sair do Chat", + chatInviteCodeLabel: "Introduza o código de convite", + chatJoinByInvite: "Aderir", + chatTitlePlaceholder: "Título do chat", + chatDescriptionPlaceholder: "Descrição do chat", + chatTagsPlaceholder: "tag1, tag2, tag3", + chatImageLabel: "Seleciona um ficheiro de imagem (.jpeg, .jpg, .png, .gif)", + chatInviteCode: "Código de Convite", + chatAuthor: "Autor", + chatCreated: "Criado", + chatAddFavorite: "Adicionar aos Favoritos", + chatRemoveFavorite: "Remover dos Favoritos", + chatPM: "MP", + chatStatusLabel: "Estado", + chatCategoryLabel: "Categoria", + chatParticipantsLabel: "Participantes", + gamesTitle: "Jogos", + gamesDescription: "Descubra e jogue alguns jogos.", + gamesFilterAll: "TODOS", + gamesPlayButton: "JOGAR!", + gamesBackToGames: "Voltar aos Jogos", + modulesGamesLabel: "Jogos", + modulesGamesDescription: "Módulo para descobrir e jogar alguns jogos.", + gamesCocolandTitle: "Cocoland", + gamesCocolandDesc: "Um coco com olhos a saltar palmeiras e a colecionar ECOins.", + gamesTheFlowTitle: "ECOinflow", + gamesTheFlowDesc: "Liga PUBs a habitantes através de validadores, lojas e acumuladores. Sobrevive à ameaça CBDC!", + gamesNeonInfiltratorTitle: "Neon Infiltrator", + gamesNeonInfiltratorDesc: "Infiltre a grade, colete dados confidenciais, evite os drones de segurança e escape. Quantos níveis consegue passar?", + gamesSpaceInvadersTitle: "Space Invaders", + gamesSpaceInvadersDesc: "Pare a invasão alienígena! Destrua ondas de invasores.", + gamesArkanoidTitle: "Arkanoid", + gamesArkanoidDesc: "Quebre todos os tijolos com sua raquete e bola. Um clássico desafio arcade.", + gamesPingPongTitle: "PingPong", + gamesPingPongDesc: "Ping-pong clássico contra uma IA. O primeiro a 5 pontos ganha.", + gamesOutrunTitle: "Outrun", + gamesOutrunDesc: "Corrida contra o tempo! Desvie do tráfego e chegue à meta antes do tempo acabar.", + gamesAsteroidsTitle: "Asteroids", + gamesAsteroidsDesc: "Pilote sua nave por um campo de asteroides mortais. Destrua-os antes que te atinjam.", + gamesRockPaperScissorsTitle: "Pedra Papel Tesoura", + gamesRockPaperScissorsDesc: "Pedra, papel ou tesoura contra uma IA. Melhor de três rodadas vence.", + gamesTikTakToeTitle: "TikTakToe", + gamesTikTakToeDesc: "Jogo da Velha clássico contra a IA. Alinhe três para ganhar.", + gamesFlipFlopTitle: "FlipFlop", + gamesFlipFlopDesc: "Lance uma moeda e aposte em cara ou coroa. Qual é a sua sorte?", + games8BallTitle: "8Ball Pool", + games8BallDesc: "Top-down pool. Click to aim, hold to charge power. Pot all balls in the fewest shots.", + gamesArtilleryTitle: "Artillery", + gamesArtilleryDesc: "Aim your cannon, factor in the wind, and hit the target. 5 rounds, fewest shots wins.", + gamesLabyrinthTitle: "Labyrinth", + gamesLabyrinthDesc: "Escape the maze before your moves run out. Each level gets bigger and harder.", + gamesCocomanTitle: "Cocoman", + gamesCocomanDesc: "Eat all the dots, avoid the ghosts. Turn-based Pac-Man — every key press counts.", + gamesTetrisTitle: "Tetris", + gamesAudioPendulumTitle: "Audio Pendulum", + gamesAudioPendulumDesc: "Chaotic physics simulator with real-time audio synthesis. Angular velocities become frequencies, peaks become drum hits. No two simulations sound alike.", + gamesTetrisDesc: "Classic falling blocks. Clear lines to score. How long can you last?", + gamesQuakeTitle: "Quake Arena", + gamesQuakeDesc: "First-person raycasting arena. Move and shoot your way through waves of enemies.", + gamesFilterScoring: "SCORING", + gamesHallOfFame: "Hall of Fame", + gamesHallPlayer: "Player", + gamesHallScore: "Score", + gamesNoScores: "No scores yet.", + calendarsTitle: "Calendários", + calendarTitle: "Calendário", + modulesCalendarsLabel: "Calendários", + modulesCalendarsDescription: "Módulo para descobrir e gerir calendários.", + typeCalendar: "CALENDÁRIO", + calendarFilterAll: "TODOS", + calendarFilterMine: "OS MEUS", + calendarFilterOpen: "ABERTO", + calendarFilterClosed: "FECHADO", + calendarFilterRecent: "RECENTES", + calendarFilterFavorites: "FAVORITOS", + calendarCreate: "Criar calendário", + calendarUpdate: "Atualizar", + calendarDelete: "Eliminar", + calendarTitleLabel: "Título", + calendarTitlePlaceholder: "Título do calendário...", + calendarStatusLabel: "Estado", + calendarStatusOpen: "ABERTO", + calendarStatusClosed: "FECHADO", + calendarDeadlineLabel: "Deadline", + calendarTagsLabel: "Etiquetas", + calendarTagsPlaceholder: "etiqueta1, etiqueta2...", + calendarParticipantsLabel: "Participantes", + calendarParticipantsCount: "Participantes", + calendarVisitCalendar: "Visitar calendário", + calendarCreated: "Criado", + calendarAuthor: "Autor", + calendarJoin: "Participar", + calendarJoined: "Inscrito", + calendarAddDate: "Adicionar data", + calendarAddNote: "Adicionar nota", + calendarDateLabel: "Data", + calendarDatePlaceholder: "Descrever esta data...", + calendarNoteLabel: "Nota", + calendarNotePlaceholder: "Adicionar uma nota...", + calendarFirstDateLabel: "Data", + calendarFirstNoteLabel: "Notas", + calendarIntervalLabel: "Interval", + calendarIntervalWeekly: "Weekly", + calendarIntervalMonthly: "Monthly", + calendarIntervalYearly: "Yearly", + calendarFormDescription: "Descrição", + calendarNoDates: "Nenhuma data adicionada.", + calendarNoNotes: "Nenhuma nota.", + calendarsNoItems: "Nenhum calendário encontrado.", + calendarsDescription: "Descubra e gerencie calendários na sua rede.", + calendarMonthPrev: "← Anterior", + calendarMonthNext: "Seguinte →", + calendarMonthLabel: "Datas", + calendarsShareUrl: "URL de partilha", + calendarAllSectionTitle: "Calendários", + calendarRecentSectionTitle: "Calendários Recentes", + calendarFavoritesSectionTitle: "Favoritos", + calendarMineSectionTitle: "Seus Calendários", + calendarOpenSectionTitle: "Calendários abertos", + calendarClosedSectionTitle: "Calendários fechados", + calendarCreateSectionTitle: "Criar novo calendário", + calendarUpdateSectionTitle: "Atualizar calendário", + calendarAddFavorite: "Adicionar aos favoritos", + calendarDeleteNote: "Delete", + calendarRemoveFavorite: "Remover dos favoritos", + calendarSearchPlaceholder: "Pesquisar calendários...", + calendarAddEntry: "Adicionar Entrada", + calendarLeave: "Sair do Calendário", + statsCalendar: "Calendários", + statsCalendarDate: "Datas de calendário", + statsCalendarNote: "Notas de calendário", + chatAccessDenied: "Você não tem acesso a este chat. Solicite um convite para acessar o conteúdo.", + padAccessDenied: "Você não tem acesso a este pad. Solicite um convite para acessar o conteúdo.", + contentAccessDenied: "Você não tem acesso a este conteúdo.", + blockAccessRestricted: "Acesso restrito", + tribeContentAccessDenied: "Acesso Negado", + tribeContentAccessDeniedMsg: "Este conteúdo pertence a uma tribo. Você deve ser membro para acessá-lo.", + tribeViewTribes: "Ver Tribos", + torrentsTitle: "Torrents", + torrentsDescription: "Explore e gerencie torrents na sua rede.", + torrentAllSectionTitle: "Torrents", + torrentMineSectionTitle: "Seus Torrents", + torrentRecentSectionTitle: "Torrents Recentes", + torrentTopSectionTitle: "Melhores Torrents", + torrentFavoritesSectionTitle: "Favoritos", + torrentFilterAll: "TODOS", + torrentFilterMine: "MEUS", + torrentFilterRecent: "RECENTES", + torrentFilterTop: "MELHORES", + torrentFilterFavorites: "FAVORITOS", + torrentCreateSectionTitle: "Enviar Torrent", + torrentUpdateSectionTitle: "Atualizar Torrent", + torrentCreateButton: "Enviar Torrent", + torrentUpdateButton: "Atualizar", + torrentDeleteButton: "Excluir", + torrentAddFavoriteButton: "Adicionar aos Favoritos", + torrentRemoveFavoriteButton: "Remover dos Favoritos", + torrentFileLabel: "Selecionar arquivo torrent (.torrent)", + torrentTitleLabel: "Título", + torrentTitlePlaceholder: "Título", + torrentDescriptionLabel: "Descrição", + torrentDescriptionPlaceholder: "Descrição", + torrentTagsLabel: "Tags", + torrentTagsPlaceholder: "Insira tags separadas por vírgulas", + torrentSizeLabel: "Tamanho", + torrentDownloadButton: "DOWNLOAD IT!", + torrentNoFile: "Nenhum arquivo torrent", + noTorrents: "Nenhum torrent encontrado.", + torrentSearchPlaceholder: "Pesquisar título, tags, autor...", + torrentSearchButton: "Pesquisar", + torrentSortRecent: "Mais recentes", + torrentSortOldest: "Mais antigos", + torrentSortTop: "Mais votados", + torrentNoMatch: "Nenhum torrent correspondente.", + torrentMessageAuthorButton: "Enviar Mensagem ao Autor", + torrentUpdatedAt: "Atualizado", + statsTorrent: "Torrents", + typeTorrent: "TORRENTS", + modulesTorrentsLabel: "Torrents", + modulesTorrentsDescription: "Módulo para descobrir e gerenciar torrents.", + favoritesFilterTorrents: "TORRENTS", + tribeSectionTorrents: "TORRENTS", + tribeCreateTorrent: "Enviar Torrent", + tribeMediaTypeTorrent: "Torrent", + settingsWishTitle: "Desejo", + settingsWishDesc: "Configure o desejo do seu Avatar.", + settingsWishWhole: "Multiverse", + settingsWishMutuals: "Only mutual-support", + settingsPmVisibilityTitle: "Mensagens Privadas", + settingsPmVisibilityDesc: "Configure seu nível de exposição a mensagens privadas.", + settingsPmVisibilityWhole: "Multiverse", + settingsPmVisibilityMutuals: "Only mutual-support", + pmMutualNotice: "O envio é uma barreira de UX. O recebimento é um filtro de atenção.", + pmBlockedNonMutual: "Só pode enviar MPs a habitantes em apoio mútuo.", + inhabitantsPendingFollowsTitle: "Pedidos de apoio pendentes", + inhabitantsPendingAccept: "Aceitar", + inhabitantsPendingReject: "Rejeitar", + bxEncrypted: "CRIPTOGRAFADO", + bxEncryptedHexLabel: "Texto cifrado (pré-visualização)", + tribeSectionGovernance: "GOVERNANÇA", + tribeSubStatusPublic: "PÚBLICA", + tribeSubStatusPrivate: "PRIVADA", + tribeSubInheritedPrivate: "PRIVADA (herdada da tribo principal)", + tribePadInviteRequired: "Sem acesso ao pad. Peça um convite.", + tribeChatInviteRequired: "Sem acesso ao chat. Peça um convite.", + tribeGovernanceDesc: "Governança interna desta tribo.", + tribeGovernanceNoGov: "Sem governo ativo", + tribeGovernanceNoGovDesc: "Esta tribo ainda não elegeu governo.", + tribeGovernanceAlreadyPublished: "Esta tribo já tem candidatura aberta.", + tribeGovernanceProposeInternal: "Propor candidatura interna", + tribeGovernanceInternalCandidatures: "Candidaturas internas", + tribeGovernanceNoCandidatures: "Sem candidaturas abertas.", + tribeGovernanceAddRule: "Adicionar regra", + tribeGovernanceNoRules: "Sem regras.", + tribeGovernanceNoLeaders: "Sem líderes eleitos.", + tribeGovernanceComingSoon: "Em breve no módulo de governança.", + logsTitle: "Diário", + logsDescription: "Regista a sua experiência na rede.", + logsReadMore: "Ler mais", + logsViewTitle: "Diário", + logsColumnType: "Tipo", + logsView: "Ver", + logsManualPrompt: "Escreva o seu diário", + logsUpdateButton: "Atualizar", + logsEditTitle: "Editar entrada", + logsCreateDescription: "Regista a sua experiência...", + logsCreateTitle: "Criar entrada", + logsWriteButton: "Escrever", + logsTextPlaceholder: "Descreva as suas experiências...", + logsTextField: "Texto", + logsLabelPlaceholder: "Rótulo...", + logsLabelField: "Escreva o seu diário (rótulo)", + logsAiDisabledWarn: "Ative o módulo de IA em /modules para usar entradas escritas pela IA.", + logsAiContextValue: "Dia de blockchain", + logsAiContext: "Contexto", + logsAiModStatus: "AImod", + logsModeApply: "Aplicar!", + logsModeAIWritten: "AI-Assistant", + logsModeManual: "Manual", + logsModeAI: "IA", + logsColumnDelete: "Eliminar", + logsColumnEdit: "Editar", + logsColumnLog: "Diário", + logsColumnDate: "Data", + logsDelete: "Eliminar", + logsEdit: "Editar", + logsFilterAlways: "SEMPRE", + logsFilterYear: "ÚLTIMO ANO", + logsFilterMonth: "ÚLTIMO MÊS", + logsFilterWeek: "ÚLTIMA SEMANA", + logsFilterToday: "HOJE", + logsFilterRecent: "RECENTES", + logsFilterAll: "TODOS", + logsCreate: "Criar entrada", + logsExport: "Exportar diário", + logsExportOne: "Exportar", + logsViewDetails: "Ver detalhes", + logsGenerateButton: "Gerar texto", + logsSearchText: "Procurar nos diários...", + logsSearchAnyType: "Qualquer tipo", + logsSearchButton: "Procurar", + logsEmpty: "Sem entradas.", + modulesLogsLabel: "Diário", + modulesLogsDescription: "Módulo para registar (via assistente de IA) as suas experiências.", + statsLogsTitle: "Diário", + statsLogsEntries: "Entradas", + typeLog: "DIÁRIO", + blockchainCycle: "Ciclo", + } }; diff --git a/nodejs-project/nodejs-project/src/configs/config-manager.js b/nodejs-project/nodejs-project/src/configs/config-manager.js index 6d8c54e8..3e44606d 100644 --- a/nodejs-project/nodejs-project/src/configs/config-manager.js +++ b/nodejs-project/nodejs-project/src/configs/config-manager.js @@ -44,7 +44,15 @@ if (!fs.existsSync(configFilePath)) { "bankingMod": "on", "parliamentMod": "off", "courtsMod": "off", - "favoritesMod": "off" + "favoritesMod": "off", + "padsMod": "on", + "calendarsMod": "on", + "gamesMod": "on", + "shopsMod": "on", + "logsMod": "on", + "mapsMod": "on", + "chatsMod": "on", + "torrentsMod": "on" }, "wallet": { "url": "http://localhost:7474", @@ -53,9 +61,7 @@ if (!fs.existsSync(configFilePath)) { "fee": "5" }, "walletPub": { - "url": "", - "user": "", - "pass": "" + "pubId": "" }, "ai": { "prompt": "Provide an informative and precise response." @@ -64,14 +70,19 @@ if (!fs.existsSync(configFilePath)) { "limit": 2000 }, "homePage": "activity", - "language": "en" + "language": "en", + "wish": "whole", + "pmVisibility": "whole" }; fs.writeFileSync(configFilePath, JSON.stringify(defaultConfig, null, 2)); } const getConfig = () => { const configData = fs.readFileSync(configFilePath); - return JSON.parse(configData); + const cfg = JSON.parse(configData); + if (cfg.wish !== 'whole' && cfg.wish !== 'mutuals') cfg.wish = 'whole'; + if (cfg.pmVisibility !== 'whole' && cfg.pmVisibility !== 'mutuals') cfg.pmVisibility = 'whole'; + return cfg; }; const saveConfig = (newConfig) => { diff --git a/nodejs-project/nodejs-project/src/configs/oasis-config.json b/nodejs-project/nodejs-project/src/configs/oasis-config.json index cf2d3aae..21105fe5 100644 --- a/nodejs-project/nodejs-project/src/configs/oasis-config.json +++ b/nodejs-project/nodejs-project/src/configs/oasis-config.json @@ -38,7 +38,15 @@ "bankingMod": "on", "parliamentMod": "off", "courtsMod": "off", - "favoritesMod": "off" + "favoritesMod": "off", + "padsMod": "on", + "calendarsMod": "on", + "gamesMod": "on", + "shopsMod": "on", + "logsMod": "on", + "mapsMod": "on", + "chatsMod": "on", + "torrentsMod": "on" }, "wallet": { "url": "http://localhost:7474", @@ -58,5 +66,7 @@ "limit": 2000 }, "homePage": "activity", - "language": "en" + "language": "en", + "wish": "whole", + "pmVisibility": "whole" } \ No newline at end of file diff --git a/nodejs-project/nodejs-project/src/games/8ball/index.html b/nodejs-project/nodejs-project/src/games/8ball/index.html new file mode 100644 index 00000000..120b7906 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/8ball/index.html @@ -0,0 +1,285 @@ + + + + + +8Ball Pool + + + +
+ ← Back to Games + 8BALL POOL +
+
+ SCORE: 0 + SHOTS: 0 + BEST: - +
+ +
Click to aim & shoot. Hold = more power.
+
Click on table to aim cue ball  |  Hold longer = more power  |  SPACE — new game
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/8ball/thumbnail.svg b/nodejs-project/nodejs-project/src/games/8ball/thumbnail.svg new file mode 100644 index 00000000..6e551fa4 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/8ball/thumbnail.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + 8 + + + + + + + diff --git a/nodejs-project/nodejs-project/src/games/arkanoid/index.html b/nodejs-project/nodejs-project/src/games/arkanoid/index.html new file mode 100644 index 00000000..40f312d8 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/arkanoid/index.html @@ -0,0 +1,209 @@ + + + + + +Arkanoid + + + +
+ ← Back to Games + ARKANOID +
+
+ SCORE: 0 + LIVES: 3 + LEVEL: 1 +
+ +
Press SPACE or CLICK to start
+
←→ or MOUSE — Move paddle  |  SPACE / CLICK — Launch ball
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/arkanoid/thumbnail.svg b/nodejs-project/nodejs-project/src/games/arkanoid/thumbnail.svg new file mode 100644 index 00000000..62e45694 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/arkanoid/thumbnail.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SCORE: 0 + diff --git a/nodejs-project/nodejs-project/src/games/artillery/index.html b/nodejs-project/nodejs-project/src/games/artillery/index.html new file mode 100644 index 00000000..0e514272 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/artillery/index.html @@ -0,0 +1,272 @@ + + + + + +Artillery + + + +
+ ← Back to Games + ARTILLERY +
+
+ ROUND: 1/5 + SHOTS: 0 + SCORE: 0 + WIND: 0 + BEST: - +
+ +
+ + + +
+
Adjust angle and power, then fire!
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/artillery/thumbnail.svg b/nodejs-project/nodejs-project/src/games/artillery/thumbnail.svg new file mode 100644 index 00000000..800d9bc4 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/artillery/thumbnail.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + ~ + diff --git a/nodejs-project/nodejs-project/src/games/asteroids/index.html b/nodejs-project/nodejs-project/src/games/asteroids/index.html new file mode 100644 index 00000000..613f1c2c --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/asteroids/index.html @@ -0,0 +1,250 @@ + + + + + +Asteroids + + + +
+ ← Back to Games + ASTEROIDS +
+
+ SCORE: 0 + LIVES: 3 + LEVEL: 1 +
+ +
Press SPACE to start
+
←→ Rotate  |  ↑ Thrust  |  SPACE Shoot
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/asteroids/thumbnail.svg b/nodejs-project/nodejs-project/src/games/asteroids/thumbnail.svg new file mode 100644 index 00000000..0d3c5e4b --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/asteroids/thumbnail.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + SCORE: 0 + diff --git a/nodejs-project/nodejs-project/src/games/audiopendulum/index.html b/nodejs-project/nodejs-project/src/games/audiopendulum/index.html new file mode 100644 index 00000000..c7413797 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/audiopendulum/index.html @@ -0,0 +1,693 @@ + + + + + + Musical Double Pendulum + + + +
+ ← Back to Games + AUDIO PENDULUM +
+
+
+
Status: Stopped | Energy: 0.00 J | Time: 0.00 s
+
Tonal: Disabled | Percussion: Disabled | ♪: -- Hz | 🥁: 0 hits
+
+ + + + + +
+ +
+ Physical State:
+ Initial position: vertical up (12 o'clock)
+ State: Unstable equilibrium
+ ✓ NEAR EQUILIBRIUM + In motion +
✓ AT REST
+
🎵 TONAL AUDIO ACTIVE
+
🥁 PERCUSSION ACTIVE
+
+
+ Energy Conservation:
+ Initial: -- J | Current: -- J
+ Energy drift: 0.000% | Status: CORRECT +
Singularities: 0
+
+
+ +
+
+ + + + +
+
+ + + + +
+
+ + + + +
+
+ + + + +
+ +
+
+ + + + + + + + +
+
+ + + + + + +
+
+ +
+ + +
+
+
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/audiopendulum/thumbnail.svg b/nodejs-project/nodejs-project/src/games/audiopendulum/thumbnail.svg new file mode 100644 index 00000000..7c60c4e2 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/audiopendulum/thumbnail.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AUDIOPENDULUM + diff --git a/nodejs-project/nodejs-project/src/games/cocoland/index.html b/nodejs-project/nodejs-project/src/games/cocoland/index.html new file mode 100644 index 00000000..31e357a0 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/cocoland/index.html @@ -0,0 +1,236 @@ + + + + + +Cocoland + + + +
+ ← Back to Games + COCOLAND +
+
+ SCORE: 0 + BEST: 0 +
+ +
Press SPACE or TAP to start
+
SPACE / TAP — Jump  |  Double jump allowed
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/cocoland/thumbnail.svg b/nodejs-project/nodejs-project/src/games/cocoland/thumbnail.svg new file mode 100644 index 00000000..38a5bc01 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/cocoland/thumbnail.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + SCORE: 0 + diff --git a/nodejs-project/nodejs-project/src/games/cocoman/index.html b/nodejs-project/nodejs-project/src/games/cocoman/index.html new file mode 100644 index 00000000..475c4f5d --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/cocoman/index.html @@ -0,0 +1,323 @@ + + + + + +Cocoman + + + +
+ ← Back to Games + COCOMAN +
+
+ SCORE: 0 + LIVES: 3 + BEST: - +
+ +
Press SPACE or tap arrow to start
+
+
+
+
+
Arrow keys / WASD  |  SPACE — new game
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/cocoman/thumbnail.svg b/nodejs-project/nodejs-project/src/games/cocoman/thumbnail.svg new file mode 100644 index 00000000..6c238366 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/cocoman/thumbnail.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/nodejs-project/nodejs-project/src/games/ecoinflow/index.html b/nodejs-project/nodejs-project/src/games/ecoinflow/index.html new file mode 100644 index 00000000..c1276cee --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/ecoinflow/index.html @@ -0,0 +1,793 @@ + + + + + +ECOINFLOW + + + +
+ ← Back to Games + ECOINFLOW +
+
+ LEVEL: 1/8 + TURN: 0 + PAR: 2 + SCORE: 0 + BEST: - +
+
+
+ +
+
+
+
+
+ + ENTER — advance  |  Backspace — undo  |  I — info +
+
+
+

LEVEL 1 — Your first PUB

+

+

+ ECOin ↗ + Oasis ↗ + SolarNET.HuB ↗ +

+

Click a node to start a pipe, then click adjacent cells to extend it, and finish on another node. Click an existing pipe to remove it. Press ENTER (or ADVANCE TURN button) to process one flow cycle.

+
+
+
+ + + + + + diff --git a/nodejs-project/nodejs-project/src/games/ecoinflow/thumbnail.svg b/nodejs-project/nodejs-project/src/games/ecoinflow/thumbnail.svg new file mode 100644 index 00000000..424a5f7d --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/ecoinflow/thumbnail.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PUB + + + + HAB + + + + VAL + + + + SHP + + + + ACU + + + + CBD + + + + + PUB + + + + HAB + + + + HAB + + + + SHP + + + + CHK + + + + HAB + + + + CBD + + + + SHP + + + + + + + + + + + + + ECOINFLOW + diff --git a/nodejs-project/nodejs-project/src/games/flipflop/index.html b/nodejs-project/nodejs-project/src/games/flipflop/index.html new file mode 100644 index 00000000..c7dff8ff --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/flipflop/index.html @@ -0,0 +1,238 @@ + + + + + +FlipFlop + + + +
+ ← Back to Games + FLIPFLOP +
+

FLIPFLOP

+
Flip the ECOin — Heads or Tails?
+
+ WINS: 0 + LOSSES: 0 + STREAK: 0 + BEST: 0 +
+
+ +
+ + +
+ +
 
+
+ +
+ + + diff --git a/nodejs-project/nodejs-project/src/games/flipflop/thumbnail.svg b/nodejs-project/nodejs-project/src/games/flipflop/thumbnail.svg new file mode 100644 index 00000000..2869ad62 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/flipflop/thumbnail.svg @@ -0,0 +1,44 @@ + + + + + + + + + HEADS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + TAILS + + Flip the ECOin! + \ No newline at end of file diff --git a/nodejs-project/nodejs-project/src/games/games/8ball/index.html b/nodejs-project/nodejs-project/src/games/games/8ball/index.html new file mode 100644 index 00000000..120b7906 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/8ball/index.html @@ -0,0 +1,285 @@ + + + + + +8Ball Pool + + + +
+ ← Back to Games + 8BALL POOL +
+
+ SCORE: 0 + SHOTS: 0 + BEST: - +
+ +
Click to aim & shoot. Hold = more power.
+
Click on table to aim cue ball  |  Hold longer = more power  |  SPACE — new game
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/games/8ball/thumbnail.svg b/nodejs-project/nodejs-project/src/games/games/8ball/thumbnail.svg new file mode 100644 index 00000000..6e551fa4 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/8ball/thumbnail.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + 8 + + + + + + + diff --git a/nodejs-project/nodejs-project/src/games/games/arkanoid/index.html b/nodejs-project/nodejs-project/src/games/games/arkanoid/index.html new file mode 100644 index 00000000..40f312d8 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/arkanoid/index.html @@ -0,0 +1,209 @@ + + + + + +Arkanoid + + + +
+ ← Back to Games + ARKANOID +
+
+ SCORE: 0 + LIVES: 3 + LEVEL: 1 +
+ +
Press SPACE or CLICK to start
+
←→ or MOUSE — Move paddle  |  SPACE / CLICK — Launch ball
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/games/arkanoid/thumbnail.svg b/nodejs-project/nodejs-project/src/games/games/arkanoid/thumbnail.svg new file mode 100644 index 00000000..62e45694 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/arkanoid/thumbnail.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SCORE: 0 + diff --git a/nodejs-project/nodejs-project/src/games/games/artillery/index.html b/nodejs-project/nodejs-project/src/games/games/artillery/index.html new file mode 100644 index 00000000..0e514272 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/artillery/index.html @@ -0,0 +1,272 @@ + + + + + +Artillery + + + +
+ ← Back to Games + ARTILLERY +
+
+ ROUND: 1/5 + SHOTS: 0 + SCORE: 0 + WIND: 0 + BEST: - +
+ +
+ + + +
+
Adjust angle and power, then fire!
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/games/artillery/thumbnail.svg b/nodejs-project/nodejs-project/src/games/games/artillery/thumbnail.svg new file mode 100644 index 00000000..800d9bc4 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/artillery/thumbnail.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + ~ + diff --git a/nodejs-project/nodejs-project/src/games/games/asteroids/index.html b/nodejs-project/nodejs-project/src/games/games/asteroids/index.html new file mode 100644 index 00000000..613f1c2c --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/asteroids/index.html @@ -0,0 +1,250 @@ + + + + + +Asteroids + + + +
+ ← Back to Games + ASTEROIDS +
+
+ SCORE: 0 + LIVES: 3 + LEVEL: 1 +
+ +
Press SPACE to start
+
←→ Rotate  |  ↑ Thrust  |  SPACE Shoot
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/games/asteroids/thumbnail.svg b/nodejs-project/nodejs-project/src/games/games/asteroids/thumbnail.svg new file mode 100644 index 00000000..0d3c5e4b --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/asteroids/thumbnail.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + SCORE: 0 + diff --git a/nodejs-project/nodejs-project/src/games/games/audiopendulum/index.html b/nodejs-project/nodejs-project/src/games/games/audiopendulum/index.html new file mode 100644 index 00000000..c7413797 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/audiopendulum/index.html @@ -0,0 +1,693 @@ + + + + + + Musical Double Pendulum + + + +
+ ← Back to Games + AUDIO PENDULUM +
+
+
+
Status: Stopped | Energy: 0.00 J | Time: 0.00 s
+
Tonal: Disabled | Percussion: Disabled | ♪: -- Hz | 🥁: 0 hits
+
+ + + + + +
+ +
+ Physical State:
+ Initial position: vertical up (12 o'clock)
+ State: Unstable equilibrium
+ ✓ NEAR EQUILIBRIUM + In motion +
✓ AT REST
+
🎵 TONAL AUDIO ACTIVE
+
🥁 PERCUSSION ACTIVE
+
+
+ Energy Conservation:
+ Initial: -- J | Current: -- J
+ Energy drift: 0.000% | Status: CORRECT +
Singularities: 0
+
+
+ +
+
+ + + + +
+
+ + + + +
+
+ + + + +
+
+ + + + +
+ +
+
+ + + + + + + + +
+
+ + + + + + +
+
+ +
+ + +
+
+
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/games/audiopendulum/thumbnail.svg b/nodejs-project/nodejs-project/src/games/games/audiopendulum/thumbnail.svg new file mode 100644 index 00000000..7c60c4e2 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/audiopendulum/thumbnail.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AUDIOPENDULUM + diff --git a/nodejs-project/nodejs-project/src/games/games/cocoland/index.html b/nodejs-project/nodejs-project/src/games/games/cocoland/index.html new file mode 100644 index 00000000..31e357a0 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/cocoland/index.html @@ -0,0 +1,236 @@ + + + + + +Cocoland + + + +
+ ← Back to Games + COCOLAND +
+
+ SCORE: 0 + BEST: 0 +
+ +
Press SPACE or TAP to start
+
SPACE / TAP — Jump  |  Double jump allowed
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/games/cocoland/thumbnail.svg b/nodejs-project/nodejs-project/src/games/games/cocoland/thumbnail.svg new file mode 100644 index 00000000..38a5bc01 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/cocoland/thumbnail.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + SCORE: 0 + diff --git a/nodejs-project/nodejs-project/src/games/games/cocoman/index.html b/nodejs-project/nodejs-project/src/games/games/cocoman/index.html new file mode 100644 index 00000000..475c4f5d --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/cocoman/index.html @@ -0,0 +1,323 @@ + + + + + +Cocoman + + + +
+ ← Back to Games + COCOMAN +
+
+ SCORE: 0 + LIVES: 3 + BEST: - +
+ +
Press SPACE or tap arrow to start
+
+
+
+
+
Arrow keys / WASD  |  SPACE — new game
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/games/cocoman/thumbnail.svg b/nodejs-project/nodejs-project/src/games/games/cocoman/thumbnail.svg new file mode 100644 index 00000000..6c238366 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/cocoman/thumbnail.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/nodejs-project/nodejs-project/src/games/games/ecoinflow/index.html b/nodejs-project/nodejs-project/src/games/games/ecoinflow/index.html new file mode 100644 index 00000000..c1276cee --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/ecoinflow/index.html @@ -0,0 +1,793 @@ + + + + + +ECOINFLOW + + + +
+ ← Back to Games + ECOINFLOW +
+
+ LEVEL: 1/8 + TURN: 0 + PAR: 2 + SCORE: 0 + BEST: - +
+
+
+ +
+
+
+
+
+ + ENTER — advance  |  Backspace — undo  |  I — info +
+
+
+

LEVEL 1 — Your first PUB

+

+

+ ECOin ↗ + Oasis ↗ + SolarNET.HuB ↗ +

+

Click a node to start a pipe, then click adjacent cells to extend it, and finish on another node. Click an existing pipe to remove it. Press ENTER (or ADVANCE TURN button) to process one flow cycle.

+
+
+
+ + + + + + diff --git a/nodejs-project/nodejs-project/src/games/games/ecoinflow/thumbnail.svg b/nodejs-project/nodejs-project/src/games/games/ecoinflow/thumbnail.svg new file mode 100644 index 00000000..424a5f7d --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/ecoinflow/thumbnail.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PUB + + + + HAB + + + + VAL + + + + SHP + + + + ACU + + + + CBD + + + + + PUB + + + + HAB + + + + HAB + + + + SHP + + + + CHK + + + + HAB + + + + CBD + + + + SHP + + + + + + + + + + + + + ECOINFLOW + diff --git a/nodejs-project/nodejs-project/src/games/games/flipflop/index.html b/nodejs-project/nodejs-project/src/games/games/flipflop/index.html new file mode 100644 index 00000000..c7dff8ff --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/flipflop/index.html @@ -0,0 +1,238 @@ + + + + + +FlipFlop + + + +
+ ← Back to Games + FLIPFLOP +
+

FLIPFLOP

+
Flip the ECOin — Heads or Tails?
+
+ WINS: 0 + LOSSES: 0 + STREAK: 0 + BEST: 0 +
+
+ +
+ + +
+ +
 
+
+ +
+ + + diff --git a/nodejs-project/nodejs-project/src/games/games/flipflop/thumbnail.svg b/nodejs-project/nodejs-project/src/games/games/flipflop/thumbnail.svg new file mode 100644 index 00000000..2869ad62 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/flipflop/thumbnail.svg @@ -0,0 +1,44 @@ + + + + + + + + + HEADS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + TAILS + + Flip the ECOin! + \ No newline at end of file diff --git a/nodejs-project/nodejs-project/src/games/games/labyrinth/index.html b/nodejs-project/nodejs-project/src/games/games/labyrinth/index.html new file mode 100644 index 00000000..ab3d7222 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/labyrinth/index.html @@ -0,0 +1,229 @@ + + + + + +Labyrinth + + + +
+ ← Back to Games + LABYRINTH + +
+
+ LEVEL: 1 + MOVES: 150 + SCORE: 0 + BEST: - +
+ +
Press SPACE or tap to start
+
+
+
+
+
Arrow keys / WASD  |  SPACE — new game
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/games/labyrinth/thumbnail.svg b/nodejs-project/nodejs-project/src/games/games/labyrinth/thumbnail.svg new file mode 100644 index 00000000..61032554 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/labyrinth/thumbnail.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/nodejs-project/nodejs-project/src/games/games/neoninfiltrator/index.html b/nodejs-project/nodejs-project/src/games/games/neoninfiltrator/index.html new file mode 100644 index 00000000..fdf7c811 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/neoninfiltrator/index.html @@ -0,0 +1,351 @@ + + + + + +Neon Infiltrator + + + +
+ ← Back to Games + NEON INFILTRATOR +
+
+ DATA: 0/0 + LEVEL: 1 + SCORE: 0 + BEST: - + ENEMIES: 0 +
+ +
Press any arrow key or tap to start
+
+
+
+ + + +
+
+
Arrow keys / WASD  |  SPACE — new game
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/games/neoninfiltrator/thumbnail.svg b/nodejs-project/nodejs-project/src/games/games/neoninfiltrator/thumbnail.svg new file mode 100644 index 00000000..6bfa891e --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/neoninfiltrator/thumbnail.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NEON INFILTRATOR + diff --git a/nodejs-project/nodejs-project/src/games/games/pingpong/index.html b/nodejs-project/nodejs-project/src/games/games/pingpong/index.html new file mode 100644 index 00000000..7e67fc12 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/pingpong/index.html @@ -0,0 +1,192 @@ + + + + + +PingPong + + + +
+ ← Back to Games + PINGPONG +
+ +
Press SPACE to start
+
↑↓ or W/S — Move paddle  |  First to 5 wins
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/games/pingpong/thumbnail.svg b/nodejs-project/nodejs-project/src/games/games/pingpong/thumbnail.svg new file mode 100644 index 00000000..f52189f6 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/pingpong/thumbnail.svg @@ -0,0 +1,11 @@ + + + + + + + 3 + 2 + YOU + AI + diff --git a/nodejs-project/nodejs-project/src/games/games/rockpaperscissors/index.html b/nodejs-project/nodejs-project/src/games/games/rockpaperscissors/index.html new file mode 100644 index 00000000..81216efa --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/rockpaperscissors/index.html @@ -0,0 +1,182 @@ + + + + + +Rock Paper Scissors + + + +
+ ← Back to Games + ROCK PAPER SCISSORS +
+

Rock · Paper · Scissors

+
+ YOU: 0 + AI: 0 + DRAWS: 0 +
+
+
+ + + +
+
+ ? + VS + ? +
+
 
+
+ +
 
+
Best of 5 rounds
+ +
+ + + diff --git a/nodejs-project/nodejs-project/src/games/games/rockpaperscissors/thumbnail.svg b/nodejs-project/nodejs-project/src/games/games/rockpaperscissors/thumbnail.svg new file mode 100644 index 00000000..a91b3a63 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/rockpaperscissors/thumbnail.svg @@ -0,0 +1,17 @@ + + + + + + + + + ROCK + + + PAPER + + ✌️ + SCISSORS + Rock · Paper · Scissors + diff --git a/nodejs-project/nodejs-project/src/games/games/spaceinvaders/index.html b/nodejs-project/nodejs-project/src/games/games/spaceinvaders/index.html new file mode 100644 index 00000000..6df7f9ac --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/spaceinvaders/index.html @@ -0,0 +1,234 @@ + + + + + +Space Invaders + + + +
+ ← Back to Games + SPACE INVADERS +
+
+ SCORE: 0 + LIVES: 3 + WAVE: 1 +
+ +
Press SPACE to start
+
←→ Move  |  SPACE — Shoot
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/games/spaceinvaders/thumbnail.svg b/nodejs-project/nodejs-project/src/games/games/spaceinvaders/thumbnail.svg new file mode 100644 index 00000000..bb4f29c1 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/spaceinvaders/thumbnail.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + SCORE: 0 + diff --git a/nodejs-project/nodejs-project/src/games/games/tetris/index.html b/nodejs-project/nodejs-project/src/games/games/tetris/index.html new file mode 100644 index 00000000..e542c2f7 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/tetris/index.html @@ -0,0 +1,242 @@ + + + + + +Tetris + + + +
+ ← Back to Games + TETRIS +
+
+ + +
+
Press SPACE to start
+
+ + + + +
+
Arrow keys  |  SPACE — hard drop / new game
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/games/tetris/thumbnail.svg b/nodejs-project/nodejs-project/src/games/games/tetris/thumbnail.svg new file mode 100644 index 00000000..b062bbb3 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/tetris/thumbnail.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/nodejs-project/nodejs-project/src/games/games/tiktaktoe/index.html b/nodejs-project/nodejs-project/src/games/games/tiktaktoe/index.html new file mode 100644 index 00000000..494d5a32 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/tiktaktoe/index.html @@ -0,0 +1,190 @@ + + + + + +TikTakToe + + + +
+ ← Back to Games + TIKTAKTOE +
+

Tic · Tac · Toe

+
+ YOU (X): 0 + AI (O): 0 + DRAWS: 0 +
+
+
 
+ +
+
+ + + +
+
+ + + diff --git a/nodejs-project/nodejs-project/src/games/games/tiktaktoe/thumbnail.svg b/nodejs-project/nodejs-project/src/games/games/tiktaktoe/thumbnail.svg new file mode 100644 index 00000000..48a7e716 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/games/tiktaktoe/thumbnail.svg @@ -0,0 +1,18 @@ + + + + + + + X + O + X + O + X + O + O + X + X + + Tic · Tac · Toe + diff --git a/nodejs-project/nodejs-project/src/games/labyrinth/index.html b/nodejs-project/nodejs-project/src/games/labyrinth/index.html new file mode 100644 index 00000000..ab3d7222 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/labyrinth/index.html @@ -0,0 +1,229 @@ + + + + + +Labyrinth + + + +
+ ← Back to Games + LABYRINTH + +
+
+ LEVEL: 1 + MOVES: 150 + SCORE: 0 + BEST: - +
+ +
Press SPACE or tap to start
+
+
+
+
+
Arrow keys / WASD  |  SPACE — new game
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/labyrinth/thumbnail.svg b/nodejs-project/nodejs-project/src/games/labyrinth/thumbnail.svg new file mode 100644 index 00000000..61032554 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/labyrinth/thumbnail.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/nodejs-project/nodejs-project/src/games/neoninfiltrator/index.html b/nodejs-project/nodejs-project/src/games/neoninfiltrator/index.html new file mode 100644 index 00000000..fdf7c811 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/neoninfiltrator/index.html @@ -0,0 +1,351 @@ + + + + + +Neon Infiltrator + + + +
+ ← Back to Games + NEON INFILTRATOR +
+
+ DATA: 0/0 + LEVEL: 1 + SCORE: 0 + BEST: - + ENEMIES: 0 +
+ +
Press any arrow key or tap to start
+
+
+
+ + + +
+
+
Arrow keys / WASD  |  SPACE — new game
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/neoninfiltrator/thumbnail.svg b/nodejs-project/nodejs-project/src/games/neoninfiltrator/thumbnail.svg new file mode 100644 index 00000000..6bfa891e --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/neoninfiltrator/thumbnail.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NEON INFILTRATOR + diff --git a/nodejs-project/nodejs-project/src/games/pingpong/index.html b/nodejs-project/nodejs-project/src/games/pingpong/index.html new file mode 100644 index 00000000..7e67fc12 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/pingpong/index.html @@ -0,0 +1,192 @@ + + + + + +PingPong + + + +
+ ← Back to Games + PINGPONG +
+ +
Press SPACE to start
+
↑↓ or W/S — Move paddle  |  First to 5 wins
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/pingpong/thumbnail.svg b/nodejs-project/nodejs-project/src/games/pingpong/thumbnail.svg new file mode 100644 index 00000000..f52189f6 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/pingpong/thumbnail.svg @@ -0,0 +1,11 @@ + + + + + + + 3 + 2 + YOU + AI + diff --git a/nodejs-project/nodejs-project/src/games/rockpaperscissors/index.html b/nodejs-project/nodejs-project/src/games/rockpaperscissors/index.html new file mode 100644 index 00000000..81216efa --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/rockpaperscissors/index.html @@ -0,0 +1,182 @@ + + + + + +Rock Paper Scissors + + + +
+ ← Back to Games + ROCK PAPER SCISSORS +
+

Rock · Paper · Scissors

+
+ YOU: 0 + AI: 0 + DRAWS: 0 +
+
+
+ + + +
+
+ ? + VS + ? +
+
 
+
+ +
 
+
Best of 5 rounds
+ +
+ + + diff --git a/nodejs-project/nodejs-project/src/games/rockpaperscissors/thumbnail.svg b/nodejs-project/nodejs-project/src/games/rockpaperscissors/thumbnail.svg new file mode 100644 index 00000000..a91b3a63 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/rockpaperscissors/thumbnail.svg @@ -0,0 +1,17 @@ + + + + + + + + + ROCK + + + PAPER + + ✌️ + SCISSORS + Rock · Paper · Scissors + diff --git a/nodejs-project/nodejs-project/src/games/spaceinvaders/index.html b/nodejs-project/nodejs-project/src/games/spaceinvaders/index.html new file mode 100644 index 00000000..6df7f9ac --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/spaceinvaders/index.html @@ -0,0 +1,234 @@ + + + + + +Space Invaders + + + +
+ ← Back to Games + SPACE INVADERS +
+
+ SCORE: 0 + LIVES: 3 + WAVE: 1 +
+ +
Press SPACE to start
+
←→ Move  |  SPACE — Shoot
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/spaceinvaders/thumbnail.svg b/nodejs-project/nodejs-project/src/games/spaceinvaders/thumbnail.svg new file mode 100644 index 00000000..bb4f29c1 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/spaceinvaders/thumbnail.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + SCORE: 0 + diff --git a/nodejs-project/nodejs-project/src/games/tetris/index.html b/nodejs-project/nodejs-project/src/games/tetris/index.html new file mode 100644 index 00000000..e542c2f7 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/tetris/index.html @@ -0,0 +1,242 @@ + + + + + +Tetris + + + +
+ ← Back to Games + TETRIS +
+
+ + +
+
Press SPACE to start
+
+ + + + +
+
Arrow keys  |  SPACE — hard drop / new game
+ + + + diff --git a/nodejs-project/nodejs-project/src/games/tetris/thumbnail.svg b/nodejs-project/nodejs-project/src/games/tetris/thumbnail.svg new file mode 100644 index 00000000..b062bbb3 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/tetris/thumbnail.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/nodejs-project/nodejs-project/src/games/tiktaktoe/index.html b/nodejs-project/nodejs-project/src/games/tiktaktoe/index.html new file mode 100644 index 00000000..494d5a32 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/tiktaktoe/index.html @@ -0,0 +1,190 @@ + + + + + +TikTakToe + + + +
+ ← Back to Games + TIKTAKTOE +
+

Tic · Tac · Toe

+
+ YOU (X): 0 + AI (O): 0 + DRAWS: 0 +
+
+
 
+ +
+
+ + + +
+
+ + + diff --git a/nodejs-project/nodejs-project/src/games/tiktaktoe/thumbnail.svg b/nodejs-project/nodejs-project/src/games/tiktaktoe/thumbnail.svg new file mode 100644 index 00000000..48a7e716 --- /dev/null +++ b/nodejs-project/nodejs-project/src/games/tiktaktoe/thumbnail.svg @@ -0,0 +1,18 @@ + + + + + + + X + O + X + O + X + O + O + X + X + + Tic · Tac · Toe + diff --git a/nodejs-project/nodejs-project/src/maps/map_renderer.js b/nodejs-project/nodejs-project/src/maps/map_renderer.js new file mode 100644 index 00000000..0a632996 --- /dev/null +++ b/nodejs-project/nodejs-project/src/maps/map_renderer.js @@ -0,0 +1,223 @@ +const { execFileSync } = require("child_process"); +const path = require("path"); +const fs = require("fs"); +const crypto = require("crypto"); + +const BASE_MAP = path.join(__dirname, "..", "client", "assets", "images", "worldmap-z2.png"); +const CACHE_DIR = path.join(__dirname, "cache"); +const TILES_DIR = path.join(__dirname, "tiles"); +const MAP_W = 1024; +const MAP_H = 1024; + +const latLngToPx = (lat, lng) => { + const latRad = lat * Math.PI / 180; + const x = Math.round((lng + 180) / 360 * MAP_W); + const y = Math.round((1 - Math.log(Math.tan(latRad) + 1 / Math.cos(latRad)) / Math.PI) / 2 * MAP_H); + return { x: Math.max(12, Math.min(MAP_W - 12, x)), y: Math.max(12, Math.min(MAP_H - 12, y)) }; +}; + +const pxToLatLng = (px, py) => { + const lng = px / MAP_W * 360 - 180; + const n = Math.PI - 2 * Math.PI * py / MAP_H; + const lat = 180 / Math.PI * Math.atan(0.5 * (Math.exp(n) - Math.exp(-n))); + return { lat: Math.round(lat * 100) / 100, lng: Math.round(lng * 100) / 100 }; +}; + +const getMaxTileZoom = () => { + try { + const dirs = fs.readdirSync(TILES_DIR).filter(d => /^\d+$/.test(d) && fs.existsSync(path.join(TILES_DIR, d, '0_0.png'))); + return dirs.length ? Math.max(...dirs.map(Number)) : 0; + } catch (_) { return 0; } +}; + +const getViewportBounds = (centerLat, centerLng, zoom) => { + const effectiveZ = Math.min(zoom, getMaxTileZoom()); + const n = Math.pow(2, effectiveZ); + const tileSize = 256; + const worldPx = n * tileSize; + const scale = Math.pow(2, zoom - effectiveZ); + const vw = MAP_W / scale; + const vh = MAP_H / scale; + + const latRad = centerLat * Math.PI / 180; + const cx = (centerLng + 180) / 360 * worldPx; + const cy = (1 - Math.log(Math.tan(latRad) + 1 / Math.cos(latRad)) / Math.PI) / 2 * worldPx; + + const x0 = cx - vw / 2; + const y0 = cy - vh / 2; + const x1 = cx + vw / 2; + const y1 = cy + vh / 2; + + const pxToLng = (px) => px / worldPx * 360 - 180; + const pxToLat = (py) => { const nn = Math.PI - 2 * Math.PI * py / worldPx; return 180 / Math.PI * Math.atan(0.5 * (Math.exp(nn) - Math.exp(-nn))); }; + + return { + latMin: Math.max(-85, pxToLat(Math.min(y1, worldPx - 1))), + latMax: Math.min(85, pxToLat(Math.max(y0, 0))), + lngMin: Math.max(-180, pxToLng(Math.max(x0, 0))), + lngMax: Math.min(180, pxToLng(Math.min(x1, worldPx - 1))) + }; +}; + +const renderMapWithPins = (markers, mainIdx) => { + const pins = (Array.isArray(markers) ? markers : []) + .filter((m) => m && typeof m.lat === "number" && typeof m.lng === "number") + .map((m, i) => ({ ...latLngToPx(m.lat, m.lng), main: i === (mainIdx || 0) })); + + const hash = crypto.createHash("md5") + .update(pins.map((p) => `${p.x},${p.y},${p.main}`).join(";")) + .digest("hex") + .slice(0, 12); + + const outFile = path.join(CACHE_DIR, `map_${hash}.png`); + + if (fs.existsSync(outFile)) return `map_${hash}.png`; + + const script = ` +from PIL import Image, ImageDraw +import sys, json + +pins = json.loads(sys.argv[1]) +im = Image.open(sys.argv[2]).copy() +draw = ImageDraw.Draw(im) + +for p in pins: + x, y, main = p['x'], p['y'], p.get('main', False) + sw = 3 if main else 2 + sh = 18 if main else 13 + clr = '#e74c3c' if main else '#3498db' + dark = '#c0392b' if main else '#2980b9' + draw.polygon([(x, y + 2), (x - sw, y - sh + sw * 2), (x + sw, y - sh + sw * 2)], fill=clr) + draw.ellipse([x - sw - 1, y - sh - sw, x + sw + 1, y - sh + sw], fill=dark, outline='white', width=1) + +im.save(sys.argv[3], optimize=True) +`; + + try { + fs.mkdirSync(CACHE_DIR, { recursive: true }); + execFileSync("python3", [ + "-c", script, + JSON.stringify(pins), + BASE_MAP, + outFile + ], { timeout: 10000 }); + } catch (e) { + return null; + } + + return `map_${hash}.png`; +}; + +const renderZoomedMapWithPins = (centerLat, centerLng, zoom, markers, mainIdx) => { + const maxZ = getMaxTileZoom(); + if (!maxZ || zoom <= 2) return renderMapWithPins(markers, mainIdx); + + const effectiveZ = Math.min(zoom, maxZ); + const scale = Math.pow(2, zoom - effectiveZ); + const n = Math.pow(2, effectiveZ); + const tileSize = 256; + const worldPx = n * tileSize; + + const latRad = centerLat * Math.PI / 180; + const cx = (centerLng + 180) / 360 * worldPx; + const cy = (1 - Math.log(Math.tan(latRad) + 1 / Math.cos(latRad)) / Math.PI) / 2 * worldPx; + + const vw = MAP_W / scale; + const vh = MAP_H / scale; + const x0 = cx - vw / 2; + const y0 = cy - vh / 2; + + const pinData = (Array.isArray(markers) ? markers : []) + .filter((m) => m && typeof m.lat === "number" && typeof m.lng === "number") + .map((m, i) => { + const latR = m.lat * Math.PI / 180; + const wx = (m.lng + 180) / 360 * worldPx; + const wy = (1 - Math.log(Math.tan(latR) + 1 / Math.cos(latR)) / Math.PI) / 2 * worldPx; + return { px: (wx - x0) * scale, py: (wy - y0) * scale, main: i === (mainIdx || 0) }; + }); + + const hashInput = `z${zoom}_${Math.round(centerLat * 100)}_${Math.round(centerLng * 100)}_` + pinData.map(p => `${Math.round(p.px)},${Math.round(p.py)},${p.main}`).join(";"); + const hash = crypto.createHash("md5").update(hashInput).digest("hex").slice(0, 12); + const outFile = path.join(CACHE_DIR, `map_${hash}.png`); + + if (fs.existsSync(outFile)) return `map_${hash}.png`; + + const txMin = Math.max(0, Math.floor(x0 / tileSize)); + const txMax = Math.min(n - 1, Math.floor((x0 + vw) / tileSize)); + const tyMin = Math.max(0, Math.floor(y0 / tileSize)); + const tyMax = Math.min(n - 1, Math.floor((y0 + vh) / tileSize)); + + const tiles = []; + for (let tx = txMin; tx <= txMax; tx++) { + for (let ty = tyMin; ty <= tyMax; ty++) { + const tp = path.join(TILES_DIR, String(effectiveZ), `${tx}_${ty}.png`); + tiles.push({ tx, ty, tp, exists: fs.existsSync(tp) }); + } + } + + const script = ` +from PIL import Image, ImageDraw +import sys, json, os + +args = json.loads(sys.argv[1]) +out_file = sys.argv[2] + +tile_size = 256 +tx_min = args['txMin'] +ty_min = args['tyMin'] +tx_max = args['txMax'] +ty_max = args['tyMax'] +x0 = args['x0'] +y0 = args['y0'] +vw = args['vw'] +vh = args['vh'] +scale = args['scale'] +pins = args['pins'] +tiles = args['tiles'] + +canvas_w = (tx_max - tx_min + 1) * tile_size +canvas_h = (ty_max - ty_min + 1) * tile_size +canvas = Image.new('RGB', (canvas_w, canvas_h), (170, 211, 223)) + +for t in tiles: + if t['exists']: + try: + tile = Image.open(t['tp']).convert('RGB') + canvas.paste(tile, ((t['tx'] - tx_min) * tile_size, (t['ty'] - ty_min) * tile_size)) + except: + pass + +crop_x = x0 - tx_min * tile_size +crop_y = y0 - ty_min * tile_size +cropped = canvas.crop((int(crop_x), int(crop_y), int(crop_x + vw), int(crop_y + vh))) +result = cropped.resize((1024, 1024), Image.LANCZOS) + +draw = ImageDraw.Draw(result) +for p in pins: + px, py, main = p['px'], p['py'], p.get('main', False) + if -20 <= px <= 1044 and -20 <= py <= 1044: + sw = 3 if main else 2 + sh = 18 if main else 13 + clr = '#e74c3c' if main else '#3498db' + dark = '#c0392b' if main else '#2980b9' + draw.polygon([(px, py + 2), (px - sw, py - sh + sw * 2), (px + sw, py - sh + sw * 2)], fill=clr) + draw.ellipse([px - sw - 1, py - sh - sw, px + sw + 1, py - sh + sw], fill=dark, outline='white', width=1) + +result.save(out_file, optimize=True) +`; + + try { + fs.mkdirSync(CACHE_DIR, { recursive: true }); + execFileSync("python3", [ + "-c", script, + JSON.stringify({ txMin, tyMin, txMax, tyMax, x0, y0, vw, vh, scale, pins: pinData, tiles }), + outFile + ], { timeout: 15000 }); + } catch (e) { + return renderMapWithPins(markers, mainIdx); + } + + return `map_${hash}.png`; +}; + +module.exports = { renderMapWithPins, renderZoomedMapWithPins, getViewportBounds, getMaxTileZoom, latLngToPx, pxToLatLng, MAP_W, MAP_H }; diff --git a/nodejs-project/nodejs-project/src/maps/maps/map_renderer.js b/nodejs-project/nodejs-project/src/maps/maps/map_renderer.js new file mode 100644 index 00000000..0a632996 --- /dev/null +++ b/nodejs-project/nodejs-project/src/maps/maps/map_renderer.js @@ -0,0 +1,223 @@ +const { execFileSync } = require("child_process"); +const path = require("path"); +const fs = require("fs"); +const crypto = require("crypto"); + +const BASE_MAP = path.join(__dirname, "..", "client", "assets", "images", "worldmap-z2.png"); +const CACHE_DIR = path.join(__dirname, "cache"); +const TILES_DIR = path.join(__dirname, "tiles"); +const MAP_W = 1024; +const MAP_H = 1024; + +const latLngToPx = (lat, lng) => { + const latRad = lat * Math.PI / 180; + const x = Math.round((lng + 180) / 360 * MAP_W); + const y = Math.round((1 - Math.log(Math.tan(latRad) + 1 / Math.cos(latRad)) / Math.PI) / 2 * MAP_H); + return { x: Math.max(12, Math.min(MAP_W - 12, x)), y: Math.max(12, Math.min(MAP_H - 12, y)) }; +}; + +const pxToLatLng = (px, py) => { + const lng = px / MAP_W * 360 - 180; + const n = Math.PI - 2 * Math.PI * py / MAP_H; + const lat = 180 / Math.PI * Math.atan(0.5 * (Math.exp(n) - Math.exp(-n))); + return { lat: Math.round(lat * 100) / 100, lng: Math.round(lng * 100) / 100 }; +}; + +const getMaxTileZoom = () => { + try { + const dirs = fs.readdirSync(TILES_DIR).filter(d => /^\d+$/.test(d) && fs.existsSync(path.join(TILES_DIR, d, '0_0.png'))); + return dirs.length ? Math.max(...dirs.map(Number)) : 0; + } catch (_) { return 0; } +}; + +const getViewportBounds = (centerLat, centerLng, zoom) => { + const effectiveZ = Math.min(zoom, getMaxTileZoom()); + const n = Math.pow(2, effectiveZ); + const tileSize = 256; + const worldPx = n * tileSize; + const scale = Math.pow(2, zoom - effectiveZ); + const vw = MAP_W / scale; + const vh = MAP_H / scale; + + const latRad = centerLat * Math.PI / 180; + const cx = (centerLng + 180) / 360 * worldPx; + const cy = (1 - Math.log(Math.tan(latRad) + 1 / Math.cos(latRad)) / Math.PI) / 2 * worldPx; + + const x0 = cx - vw / 2; + const y0 = cy - vh / 2; + const x1 = cx + vw / 2; + const y1 = cy + vh / 2; + + const pxToLng = (px) => px / worldPx * 360 - 180; + const pxToLat = (py) => { const nn = Math.PI - 2 * Math.PI * py / worldPx; return 180 / Math.PI * Math.atan(0.5 * (Math.exp(nn) - Math.exp(-nn))); }; + + return { + latMin: Math.max(-85, pxToLat(Math.min(y1, worldPx - 1))), + latMax: Math.min(85, pxToLat(Math.max(y0, 0))), + lngMin: Math.max(-180, pxToLng(Math.max(x0, 0))), + lngMax: Math.min(180, pxToLng(Math.min(x1, worldPx - 1))) + }; +}; + +const renderMapWithPins = (markers, mainIdx) => { + const pins = (Array.isArray(markers) ? markers : []) + .filter((m) => m && typeof m.lat === "number" && typeof m.lng === "number") + .map((m, i) => ({ ...latLngToPx(m.lat, m.lng), main: i === (mainIdx || 0) })); + + const hash = crypto.createHash("md5") + .update(pins.map((p) => `${p.x},${p.y},${p.main}`).join(";")) + .digest("hex") + .slice(0, 12); + + const outFile = path.join(CACHE_DIR, `map_${hash}.png`); + + if (fs.existsSync(outFile)) return `map_${hash}.png`; + + const script = ` +from PIL import Image, ImageDraw +import sys, json + +pins = json.loads(sys.argv[1]) +im = Image.open(sys.argv[2]).copy() +draw = ImageDraw.Draw(im) + +for p in pins: + x, y, main = p['x'], p['y'], p.get('main', False) + sw = 3 if main else 2 + sh = 18 if main else 13 + clr = '#e74c3c' if main else '#3498db' + dark = '#c0392b' if main else '#2980b9' + draw.polygon([(x, y + 2), (x - sw, y - sh + sw * 2), (x + sw, y - sh + sw * 2)], fill=clr) + draw.ellipse([x - sw - 1, y - sh - sw, x + sw + 1, y - sh + sw], fill=dark, outline='white', width=1) + +im.save(sys.argv[3], optimize=True) +`; + + try { + fs.mkdirSync(CACHE_DIR, { recursive: true }); + execFileSync("python3", [ + "-c", script, + JSON.stringify(pins), + BASE_MAP, + outFile + ], { timeout: 10000 }); + } catch (e) { + return null; + } + + return `map_${hash}.png`; +}; + +const renderZoomedMapWithPins = (centerLat, centerLng, zoom, markers, mainIdx) => { + const maxZ = getMaxTileZoom(); + if (!maxZ || zoom <= 2) return renderMapWithPins(markers, mainIdx); + + const effectiveZ = Math.min(zoom, maxZ); + const scale = Math.pow(2, zoom - effectiveZ); + const n = Math.pow(2, effectiveZ); + const tileSize = 256; + const worldPx = n * tileSize; + + const latRad = centerLat * Math.PI / 180; + const cx = (centerLng + 180) / 360 * worldPx; + const cy = (1 - Math.log(Math.tan(latRad) + 1 / Math.cos(latRad)) / Math.PI) / 2 * worldPx; + + const vw = MAP_W / scale; + const vh = MAP_H / scale; + const x0 = cx - vw / 2; + const y0 = cy - vh / 2; + + const pinData = (Array.isArray(markers) ? markers : []) + .filter((m) => m && typeof m.lat === "number" && typeof m.lng === "number") + .map((m, i) => { + const latR = m.lat * Math.PI / 180; + const wx = (m.lng + 180) / 360 * worldPx; + const wy = (1 - Math.log(Math.tan(latR) + 1 / Math.cos(latR)) / Math.PI) / 2 * worldPx; + return { px: (wx - x0) * scale, py: (wy - y0) * scale, main: i === (mainIdx || 0) }; + }); + + const hashInput = `z${zoom}_${Math.round(centerLat * 100)}_${Math.round(centerLng * 100)}_` + pinData.map(p => `${Math.round(p.px)},${Math.round(p.py)},${p.main}`).join(";"); + const hash = crypto.createHash("md5").update(hashInput).digest("hex").slice(0, 12); + const outFile = path.join(CACHE_DIR, `map_${hash}.png`); + + if (fs.existsSync(outFile)) return `map_${hash}.png`; + + const txMin = Math.max(0, Math.floor(x0 / tileSize)); + const txMax = Math.min(n - 1, Math.floor((x0 + vw) / tileSize)); + const tyMin = Math.max(0, Math.floor(y0 / tileSize)); + const tyMax = Math.min(n - 1, Math.floor((y0 + vh) / tileSize)); + + const tiles = []; + for (let tx = txMin; tx <= txMax; tx++) { + for (let ty = tyMin; ty <= tyMax; ty++) { + const tp = path.join(TILES_DIR, String(effectiveZ), `${tx}_${ty}.png`); + tiles.push({ tx, ty, tp, exists: fs.existsSync(tp) }); + } + } + + const script = ` +from PIL import Image, ImageDraw +import sys, json, os + +args = json.loads(sys.argv[1]) +out_file = sys.argv[2] + +tile_size = 256 +tx_min = args['txMin'] +ty_min = args['tyMin'] +tx_max = args['txMax'] +ty_max = args['tyMax'] +x0 = args['x0'] +y0 = args['y0'] +vw = args['vw'] +vh = args['vh'] +scale = args['scale'] +pins = args['pins'] +tiles = args['tiles'] + +canvas_w = (tx_max - tx_min + 1) * tile_size +canvas_h = (ty_max - ty_min + 1) * tile_size +canvas = Image.new('RGB', (canvas_w, canvas_h), (170, 211, 223)) + +for t in tiles: + if t['exists']: + try: + tile = Image.open(t['tp']).convert('RGB') + canvas.paste(tile, ((t['tx'] - tx_min) * tile_size, (t['ty'] - ty_min) * tile_size)) + except: + pass + +crop_x = x0 - tx_min * tile_size +crop_y = y0 - ty_min * tile_size +cropped = canvas.crop((int(crop_x), int(crop_y), int(crop_x + vw), int(crop_y + vh))) +result = cropped.resize((1024, 1024), Image.LANCZOS) + +draw = ImageDraw.Draw(result) +for p in pins: + px, py, main = p['px'], p['py'], p.get('main', False) + if -20 <= px <= 1044 and -20 <= py <= 1044: + sw = 3 if main else 2 + sh = 18 if main else 13 + clr = '#e74c3c' if main else '#3498db' + dark = '#c0392b' if main else '#2980b9' + draw.polygon([(px, py + 2), (px - sw, py - sh + sw * 2), (px + sw, py - sh + sw * 2)], fill=clr) + draw.ellipse([px - sw - 1, py - sh - sw, px + sw + 1, py - sh + sw], fill=dark, outline='white', width=1) + +result.save(out_file, optimize=True) +`; + + try { + fs.mkdirSync(CACHE_DIR, { recursive: true }); + execFileSync("python3", [ + "-c", script, + JSON.stringify({ txMin, tyMin, txMax, tyMax, x0, y0, vw, vh, scale, pins: pinData, tiles }), + outFile + ], { timeout: 15000 }); + } catch (e) { + return renderMapWithPins(markers, mainIdx); + } + + return `map_${hash}.png`; +}; + +module.exports = { renderMapWithPins, renderZoomedMapWithPins, getViewportBounds, getMaxTileZoom, latLngToPx, pxToLatLng, MAP_W, MAP_H }; diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/0/0_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/0/0_0.png new file mode 100644 index 00000000..78ff4105 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/0/0_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/1/0_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/1/0_0.png new file mode 100644 index 00000000..ffae9a6d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/1/0_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/1/0_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/1/0_1.png new file mode 100644 index 00000000..e7ecf077 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/1/0_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/1/1_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/1/1_0.png new file mode 100644 index 00000000..1007a265 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/1/1_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/1/1_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/1/1_1.png new file mode 100644 index 00000000..5409a6bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/1/1_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/2/0_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/0_0.png new file mode 100644 index 00000000..1c027fac Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/0_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/2/0_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/0_1.png new file mode 100644 index 00000000..6ad5bfb6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/0_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/2/0_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/0_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/0_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/2/0_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/0_3.png new file mode 100644 index 00000000..4a9408fd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/0_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/2/1_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/1_0.png new file mode 100644 index 00000000..2582394e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/1_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/2/1_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/1_1.png new file mode 100644 index 00000000..4b6c3702 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/1_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/2/1_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/1_2.png new file mode 100644 index 00000000..1c492db5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/1_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/2/1_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/1_3.png new file mode 100644 index 00000000..b8a26ae7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/1_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/2/2_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/2_0.png new file mode 100644 index 00000000..3329435b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/2_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/2/2_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/2_1.png new file mode 100644 index 00000000..1eeeb1dd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/2_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/2/2_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/2_2.png new file mode 100644 index 00000000..8f6e2a20 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/2_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/2/2_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/2_3.png new file mode 100644 index 00000000..34f28c4a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/2_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/2/3_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/3_0.png new file mode 100644 index 00000000..79e89b4d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/3_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/2/3_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/3_1.png new file mode 100644 index 00000000..e2c40a56 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/3_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/2/3_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/3_2.png new file mode 100644 index 00000000..5823053d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/3_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/2/3_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/3_3.png new file mode 100644 index 00000000..a054d9ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/2/3_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_1.png new file mode 100644 index 00000000..244c10ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_2.png new file mode 100644 index 00000000..f56ec992 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_3.png new file mode 100644 index 00000000..56468c45 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_6.png new file mode 100644 index 00000000..6869e81c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_7.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/0_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_0.png new file mode 100644 index 00000000..e54a6713 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_1.png new file mode 100644 index 00000000..3361820f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_2.png new file mode 100644 index 00000000..56e39d21 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_3.png new file mode 100644 index 00000000..c807542d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_4.png new file mode 100644 index 00000000..2978a5af Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_6.png new file mode 100644 index 00000000..8070b7c1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_7.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/1_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_0.png new file mode 100644 index 00000000..d0942092 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_1.png new file mode 100644 index 00000000..79e0ab25 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_2.png new file mode 100644 index 00000000..f588290e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_3.png new file mode 100644 index 00000000..c06a4f52 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_4.png new file mode 100644 index 00000000..6bdc74b2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_5.png new file mode 100644 index 00000000..9b698115 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_6.png new file mode 100644 index 00000000..7a2b6d19 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_7.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/2_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_0.png new file mode 100644 index 00000000..8fc82b7e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_1.png new file mode 100644 index 00000000..593e8ec6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_2.png new file mode 100644 index 00000000..08976ea5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_3.png new file mode 100644 index 00000000..35bd4512 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_4.png new file mode 100644 index 00000000..585ef08c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_5.png new file mode 100644 index 00000000..56bda4a7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_6.png new file mode 100644 index 00000000..7afdd9b1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_7.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/3_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_0.png new file mode 100644 index 00000000..1076dd85 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_1.png new file mode 100644 index 00000000..ce4321ac Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_2.png new file mode 100644 index 00000000..80740540 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_3.png new file mode 100644 index 00000000..a5875d04 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_4.png new file mode 100644 index 00000000..0feccf02 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_6.png new file mode 100644 index 00000000..96164ff8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_7.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/4_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_0.png new file mode 100644 index 00000000..147c7de6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_1.png new file mode 100644 index 00000000..c05169c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_2.png new file mode 100644 index 00000000..4a211077 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_3.png new file mode 100644 index 00000000..811749a8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_4.png new file mode 100644 index 00000000..a3c383e9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_5.png new file mode 100644 index 00000000..fe7d7474 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_6.png new file mode 100644 index 00000000..5e9a39f0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_7.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/5_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_0.png new file mode 100644 index 00000000..4ce65990 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_1.png new file mode 100644 index 00000000..d65d3609 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_2.png new file mode 100644 index 00000000..37d86f2a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_3.png new file mode 100644 index 00000000..4ebdb24a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_4.png new file mode 100644 index 00000000..1ededaab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_5.png new file mode 100644 index 00000000..75946f17 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_6.png new file mode 100644 index 00000000..4b84b1ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_7.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/6_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_1.png new file mode 100644 index 00000000..d9bf15c3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_2.png new file mode 100644 index 00000000..89833a63 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_3.png new file mode 100644 index 00000000..0dcc0841 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_4.png new file mode 100644 index 00000000..ff9d7269 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_5.png new file mode 100644 index 00000000..a7fa1e2b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_6.png new file mode 100644 index 00000000..9764caba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_7.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/3/7_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_10.png new file mode 100644 index 00000000..fec305eb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_13.png new file mode 100644 index 00000000..9cacd9c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_3.png new file mode 100644 index 00000000..e2f9c1fc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_4.png new file mode 100644 index 00000000..0d8941f8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_5.png new file mode 100644 index 00000000..1c5c78f4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_6.png new file mode 100644 index 00000000..13181b8e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_7.png new file mode 100644 index 00000000..80d64f9e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_8.png new file mode 100644 index 00000000..ffbfe1ac Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_9.png new file mode 100644 index 00000000..7f368d5a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/0_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_1.png new file mode 100644 index 00000000..893a10f8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_10.png new file mode 100644 index 00000000..1accb32f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_11.png new file mode 100644 index 00000000..ab861268 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_12.png new file mode 100644 index 00000000..9851a058 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_13.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_2.png new file mode 100644 index 00000000..5e9b8277 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_3.png new file mode 100644 index 00000000..3aa5462b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_4.png new file mode 100644 index 00000000..59c80398 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_5.png new file mode 100644 index 00000000..4de63dd5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_6.png new file mode 100644 index 00000000..c824c936 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_7.png new file mode 100644 index 00000000..1984c269 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_8.png new file mode 100644 index 00000000..3939e01f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_9.png new file mode 100644 index 00000000..3c6a62b2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/10_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_1.png new file mode 100644 index 00000000..e1007adf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_10.png new file mode 100644 index 00000000..69afdfb6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_11.png new file mode 100644 index 00000000..902bc9db Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_12.png new file mode 100644 index 00000000..77b69017 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_13.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_2.png new file mode 100644 index 00000000..3079cdda Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_3.png new file mode 100644 index 00000000..0626a1fb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_4.png new file mode 100644 index 00000000..79061cad Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_5.png new file mode 100644 index 00000000..8d0ae5bb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_6.png new file mode 100644 index 00000000..dc38f07c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_7.png new file mode 100644 index 00000000..85e3f108 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_8.png new file mode 100644 index 00000000..e2a982f0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_9.png new file mode 100644 index 00000000..4ed54807 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/11_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_1.png new file mode 100644 index 00000000..bf7ff3d8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_11.png new file mode 100644 index 00000000..22bdb640 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_12.png new file mode 100644 index 00000000..35b281a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_13.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_2.png new file mode 100644 index 00000000..5c590a4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_3.png new file mode 100644 index 00000000..5d9ef3ec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_4.png new file mode 100644 index 00000000..aca0eafc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_5.png new file mode 100644 index 00000000..36ee0d2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_6.png new file mode 100644 index 00000000..0c920efb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_7.png new file mode 100644 index 00000000..364c7266 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_8.png new file mode 100644 index 00000000..dfcf0e88 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/12_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_11.png new file mode 100644 index 00000000..17b52c61 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_12.png new file mode 100644 index 00000000..1a5645ae Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_13.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_2.png new file mode 100644 index 00000000..a58ed73c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_3.png new file mode 100644 index 00000000..0eeb0eb8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_4.png new file mode 100644 index 00000000..eada8e73 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_5.png new file mode 100644 index 00000000..0581a275 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_6.png new file mode 100644 index 00000000..50880c3a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_7.png new file mode 100644 index 00000000..9d748765 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_8.png new file mode 100644 index 00000000..0c9fabc9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_9.png new file mode 100644 index 00000000..f24b1ffb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/13_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_10.png new file mode 100644 index 00000000..62b185cf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_11.png new file mode 100644 index 00000000..e33c9011 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_12.png new file mode 100644 index 00000000..25acc563 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_13.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_2.png new file mode 100644 index 00000000..0d5f077a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_3.png new file mode 100644 index 00000000..45f8bc3a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_4.png new file mode 100644 index 00000000..36900463 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_5.png new file mode 100644 index 00000000..8344cd39 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_6.png new file mode 100644 index 00000000..10976bbe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_7.png new file mode 100644 index 00000000..617e93c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_8.png new file mode 100644 index 00000000..67af0ff1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_9.png new file mode 100644 index 00000000..d1d8fa21 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/14_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_10.png new file mode 100644 index 00000000..5d853710 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_12.png new file mode 100644 index 00000000..8bcd6689 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_13.png new file mode 100644 index 00000000..2f656231 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_2.png new file mode 100644 index 00000000..69fa0aa8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_3.png new file mode 100644 index 00000000..7b5736dc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_4.png new file mode 100644 index 00000000..f5f8ea12 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_5.png new file mode 100644 index 00000000..7aebcd03 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_7.png new file mode 100644 index 00000000..fbdca038 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_8.png new file mode 100644 index 00000000..1d23a201 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_9.png new file mode 100644 index 00000000..a28874fc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/15_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_13.png new file mode 100644 index 00000000..17d6623d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_3.png new file mode 100644 index 00000000..4a6545a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_4.png new file mode 100644 index 00000000..d28c8ca3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_5.png new file mode 100644 index 00000000..f156db4e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_7.png new file mode 100644 index 00000000..5920aa28 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_8.png new file mode 100644 index 00000000..13ae4317 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_9.png new file mode 100644 index 00000000..7179d5b6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/1_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_12.png new file mode 100644 index 00000000..49236a05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_13.png new file mode 100644 index 00000000..945fe9e5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_2.png new file mode 100644 index 00000000..27ef3b5a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_3.png new file mode 100644 index 00000000..9f96f4ea Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_4.png new file mode 100644 index 00000000..85f6a9c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_5.png new file mode 100644 index 00000000..b8927869 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_6.png new file mode 100644 index 00000000..c6b8a97e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_9.png new file mode 100644 index 00000000..4622bcb1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/2_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_1.png new file mode 100644 index 00000000..56d47731 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_12.png new file mode 100644 index 00000000..4b15f2d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_13.png new file mode 100644 index 00000000..f3ef554e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_2.png new file mode 100644 index 00000000..77b03b2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_3.png new file mode 100644 index 00000000..b3704ace Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_4.png new file mode 100644 index 00000000..d677c3db Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_5.png new file mode 100644 index 00000000..450ec9de Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_6.png new file mode 100644 index 00000000..6c939ca0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_7.png new file mode 100644 index 00000000..fa4e3f6f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_8.png new file mode 100644 index 00000000..c6148cce Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_9.png new file mode 100644 index 00000000..a79922b6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/3_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_0.png new file mode 100644 index 00000000..66001f7a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_1.png new file mode 100644 index 00000000..951df6f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_10.png new file mode 100644 index 00000000..3a73a1f9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_11.png new file mode 100644 index 00000000..e1c7e6db Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_12.png new file mode 100644 index 00000000..e832fd19 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_13.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_2.png new file mode 100644 index 00000000..34b7032a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_3.png new file mode 100644 index 00000000..6765234c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_4.png new file mode 100644 index 00000000..7cdf13b8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_5.png new file mode 100644 index 00000000..2ab493b4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_6.png new file mode 100644 index 00000000..536b5628 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_7.png new file mode 100644 index 00000000..060aaf98 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_8.png new file mode 100644 index 00000000..73f90df8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_9.png new file mode 100644 index 00000000..8c9ea25b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/4_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_0.png new file mode 100644 index 00000000..a5579fca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_1.png new file mode 100644 index 00000000..f56d0840 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_10.png new file mode 100644 index 00000000..02fc1d1f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_11.png new file mode 100644 index 00000000..0a4ca3a0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_12.png new file mode 100644 index 00000000..e1e9ca28 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_13.png new file mode 100644 index 00000000..e083c618 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_14.png new file mode 100644 index 00000000..c55a9323 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_2.png new file mode 100644 index 00000000..4e3c7049 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_3.png new file mode 100644 index 00000000..49a63382 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_4.png new file mode 100644 index 00000000..3501a76b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_5.png new file mode 100644 index 00000000..5373c5ac Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_6.png new file mode 100644 index 00000000..2c21d336 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_7.png new file mode 100644 index 00000000..c3fe72fb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_8.png new file mode 100644 index 00000000..46974b54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_9.png new file mode 100644 index 00000000..b40e21c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/5_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_0.png new file mode 100644 index 00000000..11f5d39c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_1.png new file mode 100644 index 00000000..47d667fa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_10.png new file mode 100644 index 00000000..f526a08e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_11.png new file mode 100644 index 00000000..0bddaabc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_12.png new file mode 100644 index 00000000..8b541084 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_13.png new file mode 100644 index 00000000..71eb9c46 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_14.png new file mode 100644 index 00000000..f7540afe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_2.png new file mode 100644 index 00000000..c72abfcf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_3.png new file mode 100644 index 00000000..f05e136a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_4.png new file mode 100644 index 00000000..df700411 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_6.png new file mode 100644 index 00000000..472f5296 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_7.png new file mode 100644 index 00000000..b0f9bbf5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_8.png new file mode 100644 index 00000000..ccaeb24e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_9.png new file mode 100644 index 00000000..071982c2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/6_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_0.png new file mode 100644 index 00000000..ae116df8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_1.png new file mode 100644 index 00000000..e4d2fbba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_12.png new file mode 100644 index 00000000..38d8fd4d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_13.png new file mode 100644 index 00000000..7ccf00d5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_2.png new file mode 100644 index 00000000..605def8e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_3.png new file mode 100644 index 00000000..ffaea960 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_4.png new file mode 100644 index 00000000..21e74338 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_5.png new file mode 100644 index 00000000..3ad1d602 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_6.png new file mode 100644 index 00000000..5957be55 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_7.png new file mode 100644 index 00000000..7cca4290 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_8.png new file mode 100644 index 00000000..250081c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_9.png new file mode 100644 index 00000000..b1bef5c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/7_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_1.png new file mode 100644 index 00000000..520f5be2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_10.png new file mode 100644 index 00000000..a1e1410a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_12.png new file mode 100644 index 00000000..f698cf28 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_13.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_2.png new file mode 100644 index 00000000..4bdd57da Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_3.png new file mode 100644 index 00000000..0498fbca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_4.png new file mode 100644 index 00000000..24888191 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_5.png new file mode 100644 index 00000000..c8f6acc2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_6.png new file mode 100644 index 00000000..c384ea48 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_7.png new file mode 100644 index 00000000..51b9a540 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_8.png new file mode 100644 index 00000000..89b94ef7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_9.png new file mode 100644 index 00000000..74527af1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/8_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_1.png new file mode 100644 index 00000000..d1645af0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_10.png new file mode 100644 index 00000000..d268264d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_12.png new file mode 100644 index 00000000..77f8986d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_13.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_2.png new file mode 100644 index 00000000..b367c420 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_3.png new file mode 100644 index 00000000..f256c788 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_4.png new file mode 100644 index 00000000..f8e83986 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_5.png new file mode 100644 index 00000000..213f8645 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_6.png new file mode 100644 index 00000000..75f2843b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_7.png new file mode 100644 index 00000000..6f3f0243 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_8.png new file mode 100644 index 00000000..7930ff8f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_9.png new file mode 100644 index 00000000..8a0c5d9b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/4/9_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_10.png new file mode 100644 index 00000000..88a51dc5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_13.png new file mode 100644 index 00000000..969c789f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_14.png new file mode 100644 index 00000000..bc6f4251 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_15.png new file mode 100644 index 00000000..3d48652c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_16.png new file mode 100644 index 00000000..17f073d0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_17.png new file mode 100644 index 00000000..b859cd29 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_18.png new file mode 100644 index 00000000..0a583a4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_20.png new file mode 100644 index 00000000..912e4510 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_27.png new file mode 100644 index 00000000..41be20ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_30.png new file mode 100644 index 00000000..0f4e8565 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_31.png new file mode 100644 index 00000000..930c5db0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_6.png new file mode 100644 index 00000000..b88584d7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_7.png new file mode 100644 index 00000000..d57c7489 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_8.png new file mode 100644 index 00000000..fe119fa9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_9.png new file mode 100644 index 00000000..acdd23ef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/0_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_1.png new file mode 100644 index 00000000..de190e9e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_10.png new file mode 100644 index 00000000..6020b6d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_11.png new file mode 100644 index 00000000..caef5bab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_12.png new file mode 100644 index 00000000..0f0b7c8b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_14.png new file mode 100644 index 00000000..136b960e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_15.png new file mode 100644 index 00000000..0d164242 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_16.png new file mode 100644 index 00000000..e2d4371a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_17.png new file mode 100644 index 00000000..46ae9018 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_18.png new file mode 100644 index 00000000..f6be836b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_19.png new file mode 100644 index 00000000..520dfddb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_2.png new file mode 100644 index 00000000..307555a4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_20.png new file mode 100644 index 00000000..5fcf4cdd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_21.png new file mode 100644 index 00000000..8c025719 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_22.png new file mode 100644 index 00000000..3a41315b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_23.png new file mode 100644 index 00000000..d244ef7b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_24.png new file mode 100644 index 00000000..f65a65a5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_25.png new file mode 100644 index 00000000..3da4d744 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_26.png new file mode 100644 index 00000000..d2024373 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_28.png new file mode 100644 index 00000000..1422edf0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_29.png new file mode 100644 index 00000000..93b4618f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_3.png new file mode 100644 index 00000000..e544f801 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_30.png new file mode 100644 index 00000000..f59d934f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_31.png new file mode 100644 index 00000000..0ffb4403 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_4.png new file mode 100644 index 00000000..11e2e540 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_5.png new file mode 100644 index 00000000..54aab0a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_6.png new file mode 100644 index 00000000..58039458 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_7.png new file mode 100644 index 00000000..4a8e02a2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_8.png new file mode 100644 index 00000000..56d1fddd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_9.png new file mode 100644 index 00000000..3f9436b0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/10_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_1.png new file mode 100644 index 00000000..d4b1c6ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_10.png new file mode 100644 index 00000000..3ed22a75 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_11.png new file mode 100644 index 00000000..ac834a45 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_15.png new file mode 100644 index 00000000..693b4f1c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_16.png new file mode 100644 index 00000000..f203461c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_17.png new file mode 100644 index 00000000..78658f1a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_18.png new file mode 100644 index 00000000..723bb086 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_19.png new file mode 100644 index 00000000..15a543b3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_2.png new file mode 100644 index 00000000..1fc5fe01 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_21.png new file mode 100644 index 00000000..214e867a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_22.png new file mode 100644 index 00000000..61929dde Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_23.png new file mode 100644 index 00000000..ada1a0f5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_26.png new file mode 100644 index 00000000..1cf44b66 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_27.png new file mode 100644 index 00000000..37af0f05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_28.png new file mode 100644 index 00000000..209890c4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_29.png new file mode 100644 index 00000000..654a4d20 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_3.png new file mode 100644 index 00000000..f74070fa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_30.png new file mode 100644 index 00000000..ef22c2f7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_31.png new file mode 100644 index 00000000..f2ce2de6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_4.png new file mode 100644 index 00000000..5084674b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_5.png new file mode 100644 index 00000000..13df0b70 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_6.png new file mode 100644 index 00000000..e130349f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_7.png new file mode 100644 index 00000000..e9a5893a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_8.png new file mode 100644 index 00000000..98d55168 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_9.png new file mode 100644 index 00000000..c55430c2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/11_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_1.png new file mode 100644 index 00000000..f36da47a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_16.png new file mode 100644 index 00000000..174383a3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_17.png new file mode 100644 index 00000000..cb5c1f03 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_18.png new file mode 100644 index 00000000..ab2fb725 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_2.png new file mode 100644 index 00000000..44693a19 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_21.png new file mode 100644 index 00000000..822582af Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_27.png new file mode 100644 index 00000000..bef796bf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_28.png new file mode 100644 index 00000000..08b4336e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_29.png new file mode 100644 index 00000000..c2273680 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_3.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_4.png new file mode 100644 index 00000000..b076f824 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_5.png new file mode 100644 index 00000000..150266bf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_6.png new file mode 100644 index 00000000..7cdb625e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_7.png new file mode 100644 index 00000000..9dc5c1e9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_8.png new file mode 100644 index 00000000..920baae8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_9.png new file mode 100644 index 00000000..59782e96 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/12_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_1.png new file mode 100644 index 00000000..75c9e997 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_12.png new file mode 100644 index 00000000..26186e30 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_14.png new file mode 100644 index 00000000..04874d6d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_15.png new file mode 100644 index 00000000..2f6fe951 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_16.png new file mode 100644 index 00000000..a6c0c9ea Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_17.png new file mode 100644 index 00000000..34444465 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_2.png new file mode 100644 index 00000000..16a2a749 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_22.png new file mode 100644 index 00000000..d337f3d5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_25.png new file mode 100644 index 00000000..bbe2a5cb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_26.png new file mode 100644 index 00000000..4c1333bd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_27.png new file mode 100644 index 00000000..57cccc8d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_28.png new file mode 100644 index 00000000..507d6111 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_3.png new file mode 100644 index 00000000..3e9959be Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_4.png new file mode 100644 index 00000000..2fe86dde Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_5.png new file mode 100644 index 00000000..be568bf7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_6.png new file mode 100644 index 00000000..7e8526fc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_7.png new file mode 100644 index 00000000..aff74b05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_8.png new file mode 100644 index 00000000..3b0c9ccf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/13_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_1.png new file mode 100644 index 00000000..6a25397c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_12.png new file mode 100644 index 00000000..1b67006d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_13.png new file mode 100644 index 00000000..cd015aff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_14.png new file mode 100644 index 00000000..ed703ed0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_15.png new file mode 100644 index 00000000..f5a9cf21 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_16.png new file mode 100644 index 00000000..a9402f8c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_19.png new file mode 100644 index 00000000..2a7530e5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_2.png new file mode 100644 index 00000000..c74cee72 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_25.png new file mode 100644 index 00000000..f439d441 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_26.png new file mode 100644 index 00000000..27fb7d5c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_28.png new file mode 100644 index 00000000..6ddbbedb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_3.png new file mode 100644 index 00000000..9c826d51 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_4.png new file mode 100644 index 00000000..c8ce4824 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_5.png new file mode 100644 index 00000000..5b18143e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_6.png new file mode 100644 index 00000000..9ac45e89 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_7.png new file mode 100644 index 00000000..f6e31ae1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_8.png new file mode 100644 index 00000000..d734b614 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_9.png new file mode 100644 index 00000000..9f0324ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/14_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_10.png new file mode 100644 index 00000000..03b49288 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_11.png new file mode 100644 index 00000000..262948db Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_12.png new file mode 100644 index 00000000..eb61d43b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_13.png new file mode 100644 index 00000000..80877106 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_14.png new file mode 100644 index 00000000..7da669a7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_15.png new file mode 100644 index 00000000..9b783c11 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_17.png new file mode 100644 index 00000000..2b363113 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_19.png new file mode 100644 index 00000000..8a9d7cc0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_2.png new file mode 100644 index 00000000..73ebcf19 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_24.png new file mode 100644 index 00000000..a103c33d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_25.png new file mode 100644 index 00000000..20511a04 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_26.png new file mode 100644 index 00000000..651edf93 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_6.png new file mode 100644 index 00000000..0d7afdb6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_8.png new file mode 100644 index 00000000..10f3de09 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_9.png new file mode 100644 index 00000000..b098c0b7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/15_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_10.png new file mode 100644 index 00000000..c1d75f8e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_11.png new file mode 100644 index 00000000..2937ddec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_12.png new file mode 100644 index 00000000..ba56fb86 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_13.png new file mode 100644 index 00000000..807daa3a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_14.png new file mode 100644 index 00000000..d5cc8da3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_15.png new file mode 100644 index 00000000..1a4cd9e3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_16.png new file mode 100644 index 00000000..f2ba4f53 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_21.png new file mode 100644 index 00000000..97339584 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_24.png new file mode 100644 index 00000000..c1d9164f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_25.png new file mode 100644 index 00000000..05e51cf7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_3.png new file mode 100644 index 00000000..b4a86d69 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_4.png new file mode 100644 index 00000000..e57397a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_8.png new file mode 100644 index 00000000..b05a0a08 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_9.png new file mode 100644 index 00000000..7f23c8e9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/16_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_10.png new file mode 100644 index 00000000..e29e8fd1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_11.png new file mode 100644 index 00000000..10320830 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_12.png new file mode 100644 index 00000000..97b6dc92 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_13.png new file mode 100644 index 00000000..7a1dec84 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_14.png new file mode 100644 index 00000000..060930a7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_15.png new file mode 100644 index 00000000..582c4256 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_16.png new file mode 100644 index 00000000..5ce8685b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_17.png new file mode 100644 index 00000000..16628a0b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_18.png new file mode 100644 index 00000000..0c61b962 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_19.png new file mode 100644 index 00000000..2d879f22 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_24.png new file mode 100644 index 00000000..b612e3ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_25.png new file mode 100644 index 00000000..379495f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_3.png new file mode 100644 index 00000000..deff186a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_4.png new file mode 100644 index 00000000..53401968 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_5.png new file mode 100644 index 00000000..26be38be Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_6.png new file mode 100644 index 00000000..ec504e42 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_7.png new file mode 100644 index 00000000..5a06739d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_8.png new file mode 100644 index 00000000..aac3385c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_9.png new file mode 100644 index 00000000..0c15b242 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/17_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_10.png new file mode 100644 index 00000000..ab0209d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_11.png new file mode 100644 index 00000000..af77a4dc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_12.png new file mode 100644 index 00000000..2092108d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_13.png new file mode 100644 index 00000000..0321e737 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_14.png new file mode 100644 index 00000000..7ad9c570 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_15.png new file mode 100644 index 00000000..4bdb2fec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_16.png new file mode 100644 index 00000000..0d413984 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_17.png new file mode 100644 index 00000000..db1726e5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_18.png new file mode 100644 index 00000000..f59833e3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_19.png new file mode 100644 index 00000000..4d7b001c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_24.png new file mode 100644 index 00000000..35a4cb10 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_25.png new file mode 100644 index 00000000..7e7c4339 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_3.png new file mode 100644 index 00000000..f804ea00 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_4.png new file mode 100644 index 00000000..3d279da3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_5.png new file mode 100644 index 00000000..647b9dd5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_6.png new file mode 100644 index 00000000..c80b527e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_7.png new file mode 100644 index 00000000..b45c3880 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_8.png new file mode 100644 index 00000000..a6ee1b28 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_9.png new file mode 100644 index 00000000..8aa8b90d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/18_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_10.png new file mode 100644 index 00000000..515a5f0c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_11.png new file mode 100644 index 00000000..c7d6dbfa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_12.png new file mode 100644 index 00000000..ef3dde84 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_13.png new file mode 100644 index 00000000..d972f1d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_14.png new file mode 100644 index 00000000..51d583bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_15.png new file mode 100644 index 00000000..75563930 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_16.png new file mode 100644 index 00000000..6eeeada7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_17.png new file mode 100644 index 00000000..12d032c7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_18.png new file mode 100644 index 00000000..09fbda94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_20.png new file mode 100644 index 00000000..9332ce4b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_24.png new file mode 100644 index 00000000..e7fbefdf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_25.png new file mode 100644 index 00000000..d4febd6f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_3.png new file mode 100644 index 00000000..43a6bd67 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_7.png new file mode 100644 index 00000000..848a5cbd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_8.png new file mode 100644 index 00000000..5d83ecb2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_9.png new file mode 100644 index 00000000..0f3a690e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/19_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_10.png new file mode 100644 index 00000000..9b74740d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_13.png new file mode 100644 index 00000000..5457499f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_14.png new file mode 100644 index 00000000..d4bbad0b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_15.png new file mode 100644 index 00000000..31d1994d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_16.png new file mode 100644 index 00000000..50995483 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_17.png new file mode 100644 index 00000000..7018f6c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_18.png new file mode 100644 index 00000000..f15f0e92 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_27.png new file mode 100644 index 00000000..b6bf15ef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_28.png new file mode 100644 index 00000000..df6f76cb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_29.png new file mode 100644 index 00000000..d41da0d5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_30.png new file mode 100644 index 00000000..1657df6e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_31.png new file mode 100644 index 00000000..4c153805 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_6.png new file mode 100644 index 00000000..30f31860 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_7.png new file mode 100644 index 00000000..c229fe16 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_8.png new file mode 100644 index 00000000..701a80ae Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_9.png new file mode 100644 index 00000000..fc81ef66 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/1_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_10.png new file mode 100644 index 00000000..5157bedc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_11.png new file mode 100644 index 00000000..0e2373cb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_12.png new file mode 100644 index 00000000..7dae9e32 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_13.png new file mode 100644 index 00000000..6f685d6b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_14.png new file mode 100644 index 00000000..095ca473 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_15.png new file mode 100644 index 00000000..ecea8fde Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_16.png new file mode 100644 index 00000000..20df6fd4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_17.png new file mode 100644 index 00000000..216ae658 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_18.png new file mode 100644 index 00000000..8931f044 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_2.png new file mode 100644 index 00000000..de46712e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_20.png new file mode 100644 index 00000000..9e3830ff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_23.png new file mode 100644 index 00000000..b70e4831 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_24.png new file mode 100644 index 00000000..2d7b449f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_25.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_3.png new file mode 100644 index 00000000..877d1442 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_5.png new file mode 100644 index 00000000..d468ae7c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_6.png new file mode 100644 index 00000000..2ca19532 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_7.png new file mode 100644 index 00000000..ec0f3fc7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_8.png new file mode 100644 index 00000000..1302c808 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_9.png new file mode 100644 index 00000000..a086d459 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/20_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_10.png new file mode 100644 index 00000000..5934907d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_11.png new file mode 100644 index 00000000..f48bac85 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_12.png new file mode 100644 index 00000000..04aa1b3d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_13.png new file mode 100644 index 00000000..0f895209 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_14.png new file mode 100644 index 00000000..7406ccc8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_16.png new file mode 100644 index 00000000..9f6b1dfb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_17.png new file mode 100644 index 00000000..7c78f804 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_2.png new file mode 100644 index 00000000..f09895c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_23.png new file mode 100644 index 00000000..e7ee5ef6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_24.png new file mode 100644 index 00000000..36709965 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_25.png new file mode 100644 index 00000000..efb4f19b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_26.png new file mode 100644 index 00000000..f274a3d4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_3.png new file mode 100644 index 00000000..e2db16ca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_4.png new file mode 100644 index 00000000..0857b2b9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_5.png new file mode 100644 index 00000000..5c74e851 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_6.png new file mode 100644 index 00000000..513cf1c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_7.png new file mode 100644 index 00000000..8d99b49a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_8.png new file mode 100644 index 00000000..764b9fe2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_9.png new file mode 100644 index 00000000..e2b5206d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/21_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_10.png new file mode 100644 index 00000000..b3b8aa4c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_11.png new file mode 100644 index 00000000..2b7cd44e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_12.png new file mode 100644 index 00000000..fa50d200 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_13.png new file mode 100644 index 00000000..7c3a4f11 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_14.png new file mode 100644 index 00000000..46f4b674 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_15.png new file mode 100644 index 00000000..712b3609 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_16.png new file mode 100644 index 00000000..fbdd88c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_19.png new file mode 100644 index 00000000..02fd8896 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_20.png new file mode 100644 index 00000000..a1fb23c2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_21.png new file mode 100644 index 00000000..633eab37 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_24.png new file mode 100644 index 00000000..d06d71af Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_25.png new file mode 100644 index 00000000..cb7e5c17 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_3.png new file mode 100644 index 00000000..bdfa4791 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_4.png new file mode 100644 index 00000000..3c6775e4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_5.png new file mode 100644 index 00000000..76956f2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_6.png new file mode 100644 index 00000000..5b7e8ef4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_7.png new file mode 100644 index 00000000..8865b313 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_8.png new file mode 100644 index 00000000..e664bda2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_9.png new file mode 100644 index 00000000..13daacb0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/22_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_10.png new file mode 100644 index 00000000..70ec1b1d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_11.png new file mode 100644 index 00000000..d4c3c36c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_12.png new file mode 100644 index 00000000..11c6863c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_13.png new file mode 100644 index 00000000..684eecdc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_14.png new file mode 100644 index 00000000..8c216601 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_15.png new file mode 100644 index 00000000..e22cdc40 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_2.png new file mode 100644 index 00000000..6eaa9b16 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_23.png new file mode 100644 index 00000000..9f27ab3b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_24.png new file mode 100644 index 00000000..157f9b2b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_25.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_3.png new file mode 100644 index 00000000..f0702f7d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_4.png new file mode 100644 index 00000000..696075e7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_5.png new file mode 100644 index 00000000..00f78ab6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_6.png new file mode 100644 index 00000000..bc42812a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_7.png new file mode 100644 index 00000000..fedddc75 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_8.png new file mode 100644 index 00000000..75e5e98b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_9.png new file mode 100644 index 00000000..781848ff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/23_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_10.png new file mode 100644 index 00000000..19a2fc9c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_11.png new file mode 100644 index 00000000..5a8b392b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_12.png new file mode 100644 index 00000000..e0510dbb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_13.png new file mode 100644 index 00000000..85d63595 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_14.png new file mode 100644 index 00000000..cf46c838 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_15.png new file mode 100644 index 00000000..bc3f191c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_16.png new file mode 100644 index 00000000..4edccb88 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_17.png new file mode 100644 index 00000000..8bc0227d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_2.png new file mode 100644 index 00000000..6a318066 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_23.png new file mode 100644 index 00000000..12228f03 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_24.png new file mode 100644 index 00000000..dffe13e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_25.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_3.png new file mode 100644 index 00000000..29e44719 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_4.png new file mode 100644 index 00000000..3ccb7f02 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_5.png new file mode 100644 index 00000000..21da3051 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_6.png new file mode 100644 index 00000000..3c34dd5e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_7.png new file mode 100644 index 00000000..24fc6d7d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_8.png new file mode 100644 index 00000000..e07337b6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_9.png new file mode 100644 index 00000000..be7a8df4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/24_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_10.png new file mode 100644 index 00000000..eb97e9d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_11.png new file mode 100644 index 00000000..8802aab6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_12.png new file mode 100644 index 00000000..d1fdc06a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_13.png new file mode 100644 index 00000000..e52c6dce Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_14.png new file mode 100644 index 00000000..59e91f4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_15.png new file mode 100644 index 00000000..f69cc5c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_16.png new file mode 100644 index 00000000..60a52419 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_23.png new file mode 100644 index 00000000..8c37225d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_24.png new file mode 100644 index 00000000..c9b4b8bd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_25.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_3.png new file mode 100644 index 00000000..ee3e2d9d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_4.png new file mode 100644 index 00000000..e659152c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_5.png new file mode 100644 index 00000000..3c206580 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_6.png new file mode 100644 index 00000000..cc61c0f0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_7.png new file mode 100644 index 00000000..1c5ffbb0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_8.png new file mode 100644 index 00000000..8c2ef688 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_9.png new file mode 100644 index 00000000..6fa84e15 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/25_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_10.png new file mode 100644 index 00000000..fdb98960 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_11.png new file mode 100644 index 00000000..f6347cc2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_12.png new file mode 100644 index 00000000..f7ee8abb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_13.png new file mode 100644 index 00000000..ee37cd54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_14.png new file mode 100644 index 00000000..c5cbd85a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_15.png new file mode 100644 index 00000000..24445f70 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_16.png new file mode 100644 index 00000000..27f07a7e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_17.png new file mode 100644 index 00000000..2d640062 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_18.png new file mode 100644 index 00000000..890fe43d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_19.png new file mode 100644 index 00000000..14763575 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_23.png new file mode 100644 index 00000000..a8e4bd1e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_24.png new file mode 100644 index 00000000..a2bf1b2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_25.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_5.png new file mode 100644 index 00000000..2d1afcf2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_6.png new file mode 100644 index 00000000..a0962e65 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_7.png new file mode 100644 index 00000000..7bb7840b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_8.png new file mode 100644 index 00000000..cb6500ca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_9.png new file mode 100644 index 00000000..ddbb6135 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/26_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_10.png new file mode 100644 index 00000000..6c23928d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_11.png new file mode 100644 index 00000000..f91849d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_12.png new file mode 100644 index 00000000..767b172e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_13.png new file mode 100644 index 00000000..9bd06f9a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_14.png new file mode 100644 index 00000000..d1c3009f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_15.png new file mode 100644 index 00000000..a8917ed9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_16.png new file mode 100644 index 00000000..9273446c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_17.png new file mode 100644 index 00000000..b405e15d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_18.png new file mode 100644 index 00000000..de79bb4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_19.png new file mode 100644 index 00000000..4b224973 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_23.png new file mode 100644 index 00000000..11457be6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_24.png new file mode 100644 index 00000000..2817ed40 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_25.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_5.png new file mode 100644 index 00000000..98eb6d6e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_6.png new file mode 100644 index 00000000..3e9decd5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_7.png new file mode 100644 index 00000000..f3b3f8c4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_8.png new file mode 100644 index 00000000..8b77b6ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_9.png new file mode 100644 index 00000000..2dd12a69 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/27_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_10.png new file mode 100644 index 00000000..8b805f76 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_11.png new file mode 100644 index 00000000..dd6fef63 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_12.png new file mode 100644 index 00000000..f105e454 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_13.png new file mode 100644 index 00000000..888b526e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_14.png new file mode 100644 index 00000000..227575c2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_15.png new file mode 100644 index 00000000..6e8d60df Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_16.png new file mode 100644 index 00000000..c4835d71 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_17.png new file mode 100644 index 00000000..634cca46 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_18.png new file mode 100644 index 00000000..77db2b78 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_19.png new file mode 100644 index 00000000..fd98f0fe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_20.png new file mode 100644 index 00000000..1bf82f05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_23.png new file mode 100644 index 00000000..29cb7ac6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_24.png new file mode 100644 index 00000000..f4e863a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_25.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_5.png new file mode 100644 index 00000000..7ad02b49 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_6.png new file mode 100644 index 00000000..603a4741 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_7.png new file mode 100644 index 00000000..5626fbe6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_8.png new file mode 100644 index 00000000..fa57a698 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_9.png new file mode 100644 index 00000000..d67f7829 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/28_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_10.png new file mode 100644 index 00000000..0a6a67ec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_11.png new file mode 100644 index 00000000..75b1edca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_13.png new file mode 100644 index 00000000..93fd364f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_15.png new file mode 100644 index 00000000..a0c48acb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_16.png new file mode 100644 index 00000000..f3319b15 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_17.png new file mode 100644 index 00000000..b005da99 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_18.png new file mode 100644 index 00000000..e3cf2834 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_19.png new file mode 100644 index 00000000..70843aba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_20.png new file mode 100644 index 00000000..e97cd197 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_24.png new file mode 100644 index 00000000..c310b381 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_25.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_27.png new file mode 100644 index 00000000..e6851a2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_28.png new file mode 100644 index 00000000..a39faf6d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_29.png new file mode 100644 index 00000000..e7a20e2f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_30.png new file mode 100644 index 00000000..3302e993 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_4.png new file mode 100644 index 00000000..540ac284 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_5.png new file mode 100644 index 00000000..8246d98a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_6.png new file mode 100644 index 00000000..d7cbed8e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_7.png new file mode 100644 index 00000000..b80ae983 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_8.png new file mode 100644 index 00000000..50889806 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_9.png new file mode 100644 index 00000000..f9592d37 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/29_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_10.png new file mode 100644 index 00000000..6f2a7979 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_14.png new file mode 100644 index 00000000..a02c17fd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_15.png new file mode 100644 index 00000000..bd2d5aaa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_16.png new file mode 100644 index 00000000..3193b225 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_17.png new file mode 100644 index 00000000..e7293673 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_18.png new file mode 100644 index 00000000..333c3ad9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_26.png new file mode 100644 index 00000000..41fefecf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_27.png new file mode 100644 index 00000000..0c3690a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_28.png new file mode 100644 index 00000000..f21c2ad4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_29.png new file mode 100644 index 00000000..45991d02 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_30.png new file mode 100644 index 00000000..2a396c2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_31.png new file mode 100644 index 00000000..165a1b03 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_6.png new file mode 100644 index 00000000..1f92a7a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_7.png new file mode 100644 index 00000000..090644b3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_8.png new file mode 100644 index 00000000..770961a7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_9.png new file mode 100644 index 00000000..1112e560 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/2_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_10.png new file mode 100644 index 00000000..d423b637 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_14.png new file mode 100644 index 00000000..d2923496 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_15.png new file mode 100644 index 00000000..ede01de8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_16.png new file mode 100644 index 00000000..c8f80358 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_17.png new file mode 100644 index 00000000..247aff31 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_18.png new file mode 100644 index 00000000..39ed75c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_20.png new file mode 100644 index 00000000..ed22cc43 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_21.png new file mode 100644 index 00000000..1bd77389 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_23.png new file mode 100644 index 00000000..917422c4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_24.png new file mode 100644 index 00000000..f0d54656 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_25.png new file mode 100644 index 00000000..145d360b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_26.png new file mode 100644 index 00000000..ee5a11de Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_27.png new file mode 100644 index 00000000..f1dfe920 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_28.png new file mode 100644 index 00000000..118dbe6e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_29.png new file mode 100644 index 00000000..e14ada65 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_30.png new file mode 100644 index 00000000..e79ef1d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_31.png new file mode 100644 index 00000000..d56c069f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_4.png new file mode 100644 index 00000000..a0f100f1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_5.png new file mode 100644 index 00000000..e643f225 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_6.png new file mode 100644 index 00000000..28e2504e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_7.png new file mode 100644 index 00000000..31ffe8ca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_8.png new file mode 100644 index 00000000..9a612836 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_9.png new file mode 100644 index 00000000..0d3c6f72 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/30_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_10.png new file mode 100644 index 00000000..c51d3583 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_14.png new file mode 100644 index 00000000..4e88397b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_15.png new file mode 100644 index 00000000..76053b78 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_16.png new file mode 100644 index 00000000..06836e10 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_17.png new file mode 100644 index 00000000..bbb76bd0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_18.png new file mode 100644 index 00000000..822b7c10 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_19.png new file mode 100644 index 00000000..f5fb18bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_20.png new file mode 100644 index 00000000..7997b2d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_21.png new file mode 100644 index 00000000..c79ea7bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_25.png new file mode 100644 index 00000000..83ba5bf6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_27.png new file mode 100644 index 00000000..ad8df57d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_30.png new file mode 100644 index 00000000..c57d36fb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_31.png new file mode 100644 index 00000000..762eaaae Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_6.png new file mode 100644 index 00000000..47b93e7d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_7.png new file mode 100644 index 00000000..b5731a9d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_8.png new file mode 100644 index 00000000..8c000e41 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_9.png new file mode 100644 index 00000000..f7fa2964 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/31_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_16.png new file mode 100644 index 00000000..30324995 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_17.png new file mode 100644 index 00000000..94fa60d4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_18.png new file mode 100644 index 00000000..d7ca3eb7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_26.png new file mode 100644 index 00000000..c1bd834e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_27.png new file mode 100644 index 00000000..b92f351a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_7.png new file mode 100644 index 00000000..4f127595 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_8.png new file mode 100644 index 00000000..cc53405b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_9.png new file mode 100644 index 00000000..68216600 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/3_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_10.png new file mode 100644 index 00000000..e5f64174 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_11.png new file mode 100644 index 00000000..38edd7fc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_12.png new file mode 100644 index 00000000..e9ed8c51 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_18.png new file mode 100644 index 00000000..ae54788b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_25.png new file mode 100644 index 00000000..22fd5506 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_26.png new file mode 100644 index 00000000..a10a6707 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_27.png new file mode 100644 index 00000000..f3c9fdc7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_5.png new file mode 100644 index 00000000..bf28f45e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_6.png new file mode 100644 index 00000000..a938c9a8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_7.png new file mode 100644 index 00000000..533bba2a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_8.png new file mode 100644 index 00000000..54ad6854 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_9.png new file mode 100644 index 00000000..270f84c7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/4_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_10.png new file mode 100644 index 00000000..5f09669e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_11.png new file mode 100644 index 00000000..76e65401 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_12.png new file mode 100644 index 00000000..e48c1e8a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_13.png new file mode 100644 index 00000000..aeadf5af Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_14.png new file mode 100644 index 00000000..dae54574 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_25.png new file mode 100644 index 00000000..24b45ce0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_26.png new file mode 100644 index 00000000..8087c7fb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_31.png new file mode 100644 index 00000000..642b9e39 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_4.png new file mode 100644 index 00000000..40b74d8c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_5.png new file mode 100644 index 00000000..6a0af375 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_6.png new file mode 100644 index 00000000..0f46e6ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_7.png new file mode 100644 index 00000000..2344da60 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_8.png new file mode 100644 index 00000000..64708bd7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_9.png new file mode 100644 index 00000000..a7ffc194 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/5_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_10.png new file mode 100644 index 00000000..6855abbe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_11.png new file mode 100644 index 00000000..34c8cd78 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_12.png new file mode 100644 index 00000000..3d3aa80d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_13.png new file mode 100644 index 00000000..b26739d5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_14.png new file mode 100644 index 00000000..dd59d491 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_15.png new file mode 100644 index 00000000..8250b3b8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_18.png new file mode 100644 index 00000000..c6c76ad8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_25.png new file mode 100644 index 00000000..004a4a27 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_26.png new file mode 100644 index 00000000..234400ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_29.png new file mode 100644 index 00000000..77d73217 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_3.png new file mode 100644 index 00000000..dfb94ab7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_4.png new file mode 100644 index 00000000..738ae5ef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_5.png new file mode 100644 index 00000000..f63e9c75 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_6.png new file mode 100644 index 00000000..67321bbd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_7.png new file mode 100644 index 00000000..97d899b5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_8.png new file mode 100644 index 00000000..948bb625 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_9.png new file mode 100644 index 00000000..38233842 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/6_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_10.png new file mode 100644 index 00000000..8591a685 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_11.png new file mode 100644 index 00000000..342dd3bd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_12.png new file mode 100644 index 00000000..5fc394ff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_13.png new file mode 100644 index 00000000..4c430228 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_14.png new file mode 100644 index 00000000..bfcd188d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_15.png new file mode 100644 index 00000000..6e9f3353 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_16.png new file mode 100644 index 00000000..9434e693 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_2.png new file mode 100644 index 00000000..8311bf2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_24.png new file mode 100644 index 00000000..98f6487e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_25.png new file mode 100644 index 00000000..93420ec0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_26.png new file mode 100644 index 00000000..37a04029 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_3.png new file mode 100644 index 00000000..315f6349 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_31.png new file mode 100644 index 00000000..7221fd0f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_4.png new file mode 100644 index 00000000..b38fdd8f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_5.png new file mode 100644 index 00000000..f23db344 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_6.png new file mode 100644 index 00000000..f4e37f53 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_7.png new file mode 100644 index 00000000..b639d22d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_8.png new file mode 100644 index 00000000..3a90f6d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_9.png new file mode 100644 index 00000000..5769b397 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/7_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_1.png new file mode 100644 index 00000000..a2b869eb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_10.png new file mode 100644 index 00000000..74f8d997 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_11.png new file mode 100644 index 00000000..92e10bc6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_12.png new file mode 100644 index 00000000..8371641a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_13.png new file mode 100644 index 00000000..84469d22 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_14.png new file mode 100644 index 00000000..68f3127c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_15.png new file mode 100644 index 00000000..8a38ee71 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_16.png new file mode 100644 index 00000000..5de5c301 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_17.png new file mode 100644 index 00000000..b1222a7d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_18.png new file mode 100644 index 00000000..07d263b2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_19.png new file mode 100644 index 00000000..a00d1a83 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_2.png new file mode 100644 index 00000000..3ad0c16d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_25.png new file mode 100644 index 00000000..e9a67a14 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_27.png new file mode 100644 index 00000000..cf50717b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_28.png new file mode 100644 index 00000000..c8083dfe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_3.png new file mode 100644 index 00000000..9e2ec0c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_4.png new file mode 100644 index 00000000..a90fc87d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_5.png new file mode 100644 index 00000000..557104a0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_6.png new file mode 100644 index 00000000..16242afe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_7.png new file mode 100644 index 00000000..586c23aa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_8.png new file mode 100644 index 00000000..83250199 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_9.png new file mode 100644 index 00000000..8505b8ca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/8_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_1.png new file mode 100644 index 00000000..4197e53b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_10.png new file mode 100644 index 00000000..7e564b7b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_11.png new file mode 100644 index 00000000..d6e901a9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_12.png new file mode 100644 index 00000000..b2ace3d8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_13.png new file mode 100644 index 00000000..9479911a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_14.png new file mode 100644 index 00000000..b0fa01f4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_15.png new file mode 100644 index 00000000..5c8e8109 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_16.png new file mode 100644 index 00000000..ec852779 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_17.png new file mode 100644 index 00000000..e3045721 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_18.png new file mode 100644 index 00000000..e4b3bc8d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_19.png new file mode 100644 index 00000000..24410c84 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_2.png new file mode 100644 index 00000000..d41e4528 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_20.png new file mode 100644 index 00000000..264018f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_21.png new file mode 100644 index 00000000..cddaa7cc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_22.png new file mode 100644 index 00000000..ab97622b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_24.png new file mode 100644 index 00000000..9567c9cd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_25.png new file mode 100644 index 00000000..ab683b4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_26.png new file mode 100644 index 00000000..9c8ff639 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_27.png new file mode 100644 index 00000000..b98bbc78 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_28.png new file mode 100644 index 00000000..82b1c3e8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_3.png new file mode 100644 index 00000000..dcb0a787 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_4.png new file mode 100644 index 00000000..0cf73e5a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_5.png new file mode 100644 index 00000000..2f5a716e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_6.png new file mode 100644 index 00000000..b389b28e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_7.png new file mode 100644 index 00000000..2834b541 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_8.png new file mode 100644 index 00000000..e10ab79e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_9.png new file mode 100644 index 00000000..5337561c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/5/9_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_13.png new file mode 100644 index 00000000..5a575854 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_14.png new file mode 100644 index 00000000..cc8d1777 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_15.png new file mode 100644 index 00000000..2c786ece Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_16.png new file mode 100644 index 00000000..51ebca3e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_17.png new file mode 100644 index 00000000..725ee8b7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_20.png new file mode 100644 index 00000000..efbfd9ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_21.png new file mode 100644 index 00000000..b64eb0d7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_26.png new file mode 100644 index 00000000..056a40e7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_31.png new file mode 100644 index 00000000..14d174e3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_32.png new file mode 100644 index 00000000..81bcf12c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_33.png new file mode 100644 index 00000000..c6440a5d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_34.png new file mode 100644 index 00000000..48f1be09 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_35.png new file mode 100644 index 00000000..c7bbd448 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_36.png new file mode 100644 index 00000000..16bac0d2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_37.png new file mode 100644 index 00000000..35bd47f7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_40.png new file mode 100644 index 00000000..27d70c01 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_54.png new file mode 100644 index 00000000..e9d0f354 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_55.png new file mode 100644 index 00000000..da03a94f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_62.png new file mode 100644 index 00000000..72ad7d02 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_63.png new file mode 100644 index 00000000..988dff7e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/0_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_10.png new file mode 100644 index 00000000..04c6a885 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_11.png new file mode 100644 index 00000000..19ea3048 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_12.png new file mode 100644 index 00000000..11e3f6f0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_13.png new file mode 100644 index 00000000..36c6c494 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_14.png new file mode 100644 index 00000000..cb0aa167 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_15.png new file mode 100644 index 00000000..c83bd66f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_16.png new file mode 100644 index 00000000..067914ee Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_17.png new file mode 100644 index 00000000..d1312786 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_18.png new file mode 100644 index 00000000..85379163 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_19.png new file mode 100644 index 00000000..9ce59bed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_20.png new file mode 100644 index 00000000..caea2119 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_21.png new file mode 100644 index 00000000..11b965c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_22.png new file mode 100644 index 00000000..4d2b563c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_23.png new file mode 100644 index 00000000..e8b97010 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_24.png new file mode 100644 index 00000000..3d3dee91 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_25.png new file mode 100644 index 00000000..6cd53e46 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_26.png new file mode 100644 index 00000000..ccde3921 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_51.png new file mode 100644 index 00000000..529f4256 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_52.png new file mode 100644 index 00000000..f7c8f78a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_9.png new file mode 100644 index 00000000..b543cf8c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/10_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_10.png new file mode 100644 index 00000000..88ffe3cc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_11.png new file mode 100644 index 00000000..474f43cc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_12.png new file mode 100644 index 00000000..37079aa8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_13.png new file mode 100644 index 00000000..21a2922b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_14.png new file mode 100644 index 00000000..06df7c98 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_15.png new file mode 100644 index 00000000..d12a0243 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_16.png new file mode 100644 index 00000000..726f1337 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_17.png new file mode 100644 index 00000000..a160e41b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_18.png new file mode 100644 index 00000000..1be32109 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_19.png new file mode 100644 index 00000000..8310b2e0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_20.png new file mode 100644 index 00000000..71d7caba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_21.png new file mode 100644 index 00000000..21d9f589 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_22.png new file mode 100644 index 00000000..4f18bc1f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_23.png new file mode 100644 index 00000000..252fa5a3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_24.png new file mode 100644 index 00000000..f91ffc5f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_25.png new file mode 100644 index 00000000..0770c0ae Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_26.png new file mode 100644 index 00000000..765b4a6b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_27.png new file mode 100644 index 00000000..a80f9989 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_28.png new file mode 100644 index 00000000..6a7d34c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_51.png new file mode 100644 index 00000000..2e1ba207 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_52.png new file mode 100644 index 00000000..a0ad389f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_53.png new file mode 100644 index 00000000..b57f7050 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_63.png new file mode 100644 index 00000000..2089695e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_8.png new file mode 100644 index 00000000..38b05217 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_9.png new file mode 100644 index 00000000..f31505f8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/11_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_10.png new file mode 100644 index 00000000..29873f16 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_11.png new file mode 100644 index 00000000..585369e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_12.png new file mode 100644 index 00000000..cffdbb57 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_13.png new file mode 100644 index 00000000..fae27fd2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_14.png new file mode 100644 index 00000000..2aad0fbb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_15.png new file mode 100644 index 00000000..97ebb654 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_16.png new file mode 100644 index 00000000..a044c455 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_17.png new file mode 100644 index 00000000..215db3b1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_18.png new file mode 100644 index 00000000..7283f61a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_19.png new file mode 100644 index 00000000..720a8371 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_20.png new file mode 100644 index 00000000..7b6e58f1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_21.png new file mode 100644 index 00000000..1c41e609 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_22.png new file mode 100644 index 00000000..e413380f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_23.png new file mode 100644 index 00000000..70df4e8c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_24.png new file mode 100644 index 00000000..403abb61 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_25.png new file mode 100644 index 00000000..eb3ff734 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_26.png new file mode 100644 index 00000000..eed0a2ea Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_27.png new file mode 100644 index 00000000..e69fb220 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_28.png new file mode 100644 index 00000000..29d8bf1a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_30.png new file mode 100644 index 00000000..2baf7fd4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_36.png new file mode 100644 index 00000000..2e8bcb74 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_37.png new file mode 100644 index 00000000..7c15437b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_52.png new file mode 100644 index 00000000..e5792e96 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_53.png new file mode 100644 index 00000000..87168909 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_7.png new file mode 100644 index 00000000..63f7eaa6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_8.png new file mode 100644 index 00000000..ec11c6c1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_9.png new file mode 100644 index 00000000..aa5d44e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/12_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_10.png new file mode 100644 index 00000000..cc163560 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_11.png new file mode 100644 index 00000000..6a28d353 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_12.png new file mode 100644 index 00000000..f102e1b9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_13.png new file mode 100644 index 00000000..4ffaa1a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_14.png new file mode 100644 index 00000000..708a4e54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_15.png new file mode 100644 index 00000000..92d71707 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_16.png new file mode 100644 index 00000000..332ccc4a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_17.png new file mode 100644 index 00000000..4a354cf8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_18.png new file mode 100644 index 00000000..270a61c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_19.png new file mode 100644 index 00000000..390dedad Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_20.png new file mode 100644 index 00000000..b33e701c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_21.png new file mode 100644 index 00000000..23bd3229 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_22.png new file mode 100644 index 00000000..a4199be5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_23.png new file mode 100644 index 00000000..41fe30a7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_24.png new file mode 100644 index 00000000..87953ab6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_25.png new file mode 100644 index 00000000..14193fd2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_26.png new file mode 100644 index 00000000..a31e2b05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_27.png new file mode 100644 index 00000000..6c6ee54f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_28.png new file mode 100644 index 00000000..578d5c84 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_36.png new file mode 100644 index 00000000..ee10f836 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_50.png new file mode 100644 index 00000000..bcf993fb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_51.png new file mode 100644 index 00000000..1c0e0f19 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_52.png new file mode 100644 index 00000000..49a2ec76 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_59.png new file mode 100644 index 00000000..e95cc594 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_6.png new file mode 100644 index 00000000..e1ae0049 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_7.png new file mode 100644 index 00000000..fdffe18e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_8.png new file mode 100644 index 00000000..3ba5a4e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_9.png new file mode 100644 index 00000000..e8b84412 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/13_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_10.png new file mode 100644 index 00000000..c2c49707 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_11.png new file mode 100644 index 00000000..e3f77da0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_12.png new file mode 100644 index 00000000..e9a0bc9a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_13.png new file mode 100644 index 00000000..f70650fa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_14.png new file mode 100644 index 00000000..30a2c9ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_15.png new file mode 100644 index 00000000..a1b6f341 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_16.png new file mode 100644 index 00000000..d16c67dd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_17.png new file mode 100644 index 00000000..e8f3c664 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_18.png new file mode 100644 index 00000000..acd34dd1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_19.png new file mode 100644 index 00000000..35b7eba3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_20.png new file mode 100644 index 00000000..20d76dca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_21.png new file mode 100644 index 00000000..6bddad6f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_22.png new file mode 100644 index 00000000..dc9b66c8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_23.png new file mode 100644 index 00000000..3943b632 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_24.png new file mode 100644 index 00000000..13fa00a4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_25.png new file mode 100644 index 00000000..ca21e7b8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_26.png new file mode 100644 index 00000000..fdd4ac6f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_27.png new file mode 100644 index 00000000..66469114 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_28.png new file mode 100644 index 00000000..bd63a757 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_29.png new file mode 100644 index 00000000..4eb8be8f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_5.png new file mode 100644 index 00000000..792009cf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_50.png new file mode 100644 index 00000000..27e4ec73 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_51.png new file mode 100644 index 00000000..4f271435 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_52.png new file mode 100644 index 00000000..51c2b4ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_6.png new file mode 100644 index 00000000..57b84d0d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_7.png new file mode 100644 index 00000000..f6453741 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_8.png new file mode 100644 index 00000000..45fb5e63 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_9.png new file mode 100644 index 00000000..2b6c1889 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/14_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_10.png new file mode 100644 index 00000000..0cce3a45 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_11.png new file mode 100644 index 00000000..0e7e32ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_12.png new file mode 100644 index 00000000..0c220e3a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_13.png new file mode 100644 index 00000000..c1bb3dcc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_14.png new file mode 100644 index 00000000..2cdb4e5b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_15.png new file mode 100644 index 00000000..f3ec8c1e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_16.png new file mode 100644 index 00000000..da49d57d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_17.png new file mode 100644 index 00000000..a0e942e8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_18.png new file mode 100644 index 00000000..f38f3388 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_19.png new file mode 100644 index 00000000..b264985b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_20.png new file mode 100644 index 00000000..50b36459 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_21.png new file mode 100644 index 00000000..b6543104 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_22.png new file mode 100644 index 00000000..df008004 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_23.png new file mode 100644 index 00000000..80a66bff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_24.png new file mode 100644 index 00000000..59f156c4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_25.png new file mode 100644 index 00000000..6bc54c38 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_26.png new file mode 100644 index 00000000..bccb1a10 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_27.png new file mode 100644 index 00000000..a26fe74b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_28.png new file mode 100644 index 00000000..4e1dffc0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_29.png new file mode 100644 index 00000000..090eb184 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_31.png new file mode 100644 index 00000000..21caf4a0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_32.png new file mode 100644 index 00000000..9b4485b2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_4.png new file mode 100644 index 00000000..27e881b5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_49.png new file mode 100644 index 00000000..a7e24591 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_5.png new file mode 100644 index 00000000..b2a80087 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_50.png new file mode 100644 index 00000000..46b47e91 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_51.png new file mode 100644 index 00000000..9dced749 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_6.png new file mode 100644 index 00000000..a172c281 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_63.png new file mode 100644 index 00000000..590e0656 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_7.png new file mode 100644 index 00000000..04a5ad54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_8.png new file mode 100644 index 00000000..c1d37145 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_9.png new file mode 100644 index 00000000..bb680856 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/15_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_10.png new file mode 100644 index 00000000..4f8956ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_11.png new file mode 100644 index 00000000..18638959 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_12.png new file mode 100644 index 00000000..9e032c53 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_13.png new file mode 100644 index 00000000..a2f4969c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_14.png new file mode 100644 index 00000000..1f525409 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_15.png new file mode 100644 index 00000000..88cb518f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_16.png new file mode 100644 index 00000000..2208b5d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_17.png new file mode 100644 index 00000000..a985a46e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_19.png new file mode 100644 index 00000000..42628bab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_20.png new file mode 100644 index 00000000..7e658c01 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_21.png new file mode 100644 index 00000000..a892c574 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_22.png new file mode 100644 index 00000000..11ce5e1c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_23.png new file mode 100644 index 00000000..cb592597 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_24.png new file mode 100644 index 00000000..9b8cb669 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_25.png new file mode 100644 index 00000000..2973111e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_26.png new file mode 100644 index 00000000..e7626c18 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_27.png new file mode 100644 index 00000000..01889a04 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_28.png new file mode 100644 index 00000000..32679b64 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_29.png new file mode 100644 index 00000000..5f8b4743 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_3.png new file mode 100644 index 00000000..fb40532a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_30.png new file mode 100644 index 00000000..906502ff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_31.png new file mode 100644 index 00000000..fd91cb45 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_32.png new file mode 100644 index 00000000..fc2dcd92 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_33.png new file mode 100644 index 00000000..17bf0fcb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_4.png new file mode 100644 index 00000000..4657b644 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_5.png new file mode 100644 index 00000000..6cb2a858 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_51.png new file mode 100644 index 00000000..b326d09f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_54.png new file mode 100644 index 00000000..81003763 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_55.png new file mode 100644 index 00000000..d29f3ba8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_56.png new file mode 100644 index 00000000..d4602203 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_6.png new file mode 100644 index 00000000..cb48d939 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_7.png new file mode 100644 index 00000000..b9dfeb33 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_8.png new file mode 100644 index 00000000..b30a0c68 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_9.png new file mode 100644 index 00000000..3945d809 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/16_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_10.png new file mode 100644 index 00000000..0ba396a8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_11.png new file mode 100644 index 00000000..243c8bcd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_12.png new file mode 100644 index 00000000..8f7af4c7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_13.png new file mode 100644 index 00000000..7799c161 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_14.png new file mode 100644 index 00000000..1a0edc44 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_15.png new file mode 100644 index 00000000..67c85fe9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_16.png new file mode 100644 index 00000000..448e609d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_17.png new file mode 100644 index 00000000..ad5f0c64 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_18.png new file mode 100644 index 00000000..49d0ad57 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_19.png new file mode 100644 index 00000000..d95c4be1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_20.png new file mode 100644 index 00000000..70458f0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_21.png new file mode 100644 index 00000000..7959c83e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_22.png new file mode 100644 index 00000000..6937707c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_23.png new file mode 100644 index 00000000..0df12ed4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_24.png new file mode 100644 index 00000000..cb91aeb7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_25.png new file mode 100644 index 00000000..1cfedb35 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_26.png new file mode 100644 index 00000000..e58e42e7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_27.png new file mode 100644 index 00000000..aebb35c7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_28.png new file mode 100644 index 00000000..7de5a853 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_29.png new file mode 100644 index 00000000..d2f62498 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_3.png new file mode 100644 index 00000000..8f7a89c2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_30.png new file mode 100644 index 00000000..d6208939 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_31.png new file mode 100644 index 00000000..5e47afb7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_32.png new file mode 100644 index 00000000..9045b510 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_33.png new file mode 100644 index 00000000..862ecec5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_34.png new file mode 100644 index 00000000..f6b8d300 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_36.png new file mode 100644 index 00000000..324328e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_38.png new file mode 100644 index 00000000..73dd40eb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_4.png new file mode 100644 index 00000000..218e543f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_5.png new file mode 100644 index 00000000..9057328f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_50.png new file mode 100644 index 00000000..13877b3b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_51.png new file mode 100644 index 00000000..b1945fff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_54.png new file mode 100644 index 00000000..d4d0cee7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_55.png new file mode 100644 index 00000000..a40888ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_56.png new file mode 100644 index 00000000..83e34d65 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_57.png new file mode 100644 index 00000000..b6a7dd12 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_6.png new file mode 100644 index 00000000..9fba4ab3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_7.png new file mode 100644 index 00000000..373ae01a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_8.png new file mode 100644 index 00000000..702894fb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_9.png new file mode 100644 index 00000000..15bfebd6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/17_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_10.png new file mode 100644 index 00000000..57c365ec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_11.png new file mode 100644 index 00000000..89ac61cd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_12.png new file mode 100644 index 00000000..277797c1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_13.png new file mode 100644 index 00000000..8859860c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_14.png new file mode 100644 index 00000000..ec0c9021 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_15.png new file mode 100644 index 00000000..99f22aa9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_16.png new file mode 100644 index 00000000..06b53203 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_17.png new file mode 100644 index 00000000..f9f74acb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_18.png new file mode 100644 index 00000000..1d23f9dd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_19.png new file mode 100644 index 00000000..7729195f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_20.png new file mode 100644 index 00000000..e8696ac9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_21.png new file mode 100644 index 00000000..c1be4ac4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_22.png new file mode 100644 index 00000000..ac02c382 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_23.png new file mode 100644 index 00000000..a810a929 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_24.png new file mode 100644 index 00000000..1040c445 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_25.png new file mode 100644 index 00000000..2cd072bd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_26.png new file mode 100644 index 00000000..1bc5319b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_27.png new file mode 100644 index 00000000..7cdb16e1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_28.png new file mode 100644 index 00000000..26687c01 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_29.png new file mode 100644 index 00000000..6e7c8664 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_3.png new file mode 100644 index 00000000..cdf5e151 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_30.png new file mode 100644 index 00000000..80c46745 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_31.png new file mode 100644 index 00000000..b719a78c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_32.png new file mode 100644 index 00000000..cce2cdca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_33.png new file mode 100644 index 00000000..c3593aad Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_34.png new file mode 100644 index 00000000..fad2ac77 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_35.png new file mode 100644 index 00000000..bd422460 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_38.png new file mode 100644 index 00000000..635fcb9c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_39.png new file mode 100644 index 00000000..86c7ffa2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_4.png new file mode 100644 index 00000000..c9705937 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_40.png new file mode 100644 index 00000000..1a492d93 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_41.png new file mode 100644 index 00000000..165a7fb7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_42.png new file mode 100644 index 00000000..450d7fc6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_43.png new file mode 100644 index 00000000..afb402ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_49.png new file mode 100644 index 00000000..f376f7e7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_5.png new file mode 100644 index 00000000..f137cf4c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_50.png new file mode 100644 index 00000000..bf0dc60d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_51.png new file mode 100644 index 00000000..36d2e122 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_52.png new file mode 100644 index 00000000..170fe5d2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_53.png new file mode 100644 index 00000000..3de4192b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_54.png new file mode 100644 index 00000000..d2e01f67 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_55.png new file mode 100644 index 00000000..358eafd0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_56.png new file mode 100644 index 00000000..60c236d5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_57.png new file mode 100644 index 00000000..dffabdf9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_6.png new file mode 100644 index 00000000..6a2b1622 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_7.png new file mode 100644 index 00000000..77b25693 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_8.png new file mode 100644 index 00000000..c41202a5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_9.png new file mode 100644 index 00000000..1ef876b9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/18_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_10.png new file mode 100644 index 00000000..06036806 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_13.png new file mode 100644 index 00000000..daa9434d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_14.png new file mode 100644 index 00000000..9e8c80f2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_15.png new file mode 100644 index 00000000..c07ac8c3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_16.png new file mode 100644 index 00000000..289da388 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_17.png new file mode 100644 index 00000000..51f510f9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_18.png new file mode 100644 index 00000000..f614376f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_19.png new file mode 100644 index 00000000..9cc88263 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_20.png new file mode 100644 index 00000000..cdea7580 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_21.png new file mode 100644 index 00000000..422b39a7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_22.png new file mode 100644 index 00000000..cce1e4e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_23.png new file mode 100644 index 00000000..c585169d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_24.png new file mode 100644 index 00000000..a7f16e5d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_27.png new file mode 100644 index 00000000..1a19816e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_28.png new file mode 100644 index 00000000..5d1d60fa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_29.png new file mode 100644 index 00000000..b3ca4ccd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_3.png new file mode 100644 index 00000000..e5eea030 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_30.png new file mode 100644 index 00000000..e5f3c76a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_31.png new file mode 100644 index 00000000..d4390388 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_32.png new file mode 100644 index 00000000..06084597 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_33.png new file mode 100644 index 00000000..93aa20c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_34.png new file mode 100644 index 00000000..993a6259 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_35.png new file mode 100644 index 00000000..92185a6c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_36.png new file mode 100644 index 00000000..41069779 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_37.png new file mode 100644 index 00000000..cca74c37 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_38.png new file mode 100644 index 00000000..478f27e1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_39.png new file mode 100644 index 00000000..90fce2a7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_4.png new file mode 100644 index 00000000..d818b803 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_40.png new file mode 100644 index 00000000..3586ca55 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_41.png new file mode 100644 index 00000000..a8837f05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_42.png new file mode 100644 index 00000000..ea428b84 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_43.png new file mode 100644 index 00000000..33a2a9e3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_44.png new file mode 100644 index 00000000..e0ae9262 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_48.png new file mode 100644 index 00000000..2446c56a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_49.png new file mode 100644 index 00000000..59b62a43 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_5.png new file mode 100644 index 00000000..96549155 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_50.png new file mode 100644 index 00000000..7d7e2518 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_51.png new file mode 100644 index 00000000..30b1e6de Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_52.png new file mode 100644 index 00000000..af860325 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_53.png new file mode 100644 index 00000000..d7d93061 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_54.png new file mode 100644 index 00000000..39d5e98f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_55.png new file mode 100644 index 00000000..3de2ab0c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_56.png new file mode 100644 index 00000000..69cd2dd7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_57.png new file mode 100644 index 00000000..c92da5c4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_58.png new file mode 100644 index 00000000..36df0ebc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_6.png new file mode 100644 index 00000000..0e950a40 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_7.png new file mode 100644 index 00000000..1a1b6687 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_8.png new file mode 100644 index 00000000..3aa8e053 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_9.png new file mode 100644 index 00000000..a195a676 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/19_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_15.png new file mode 100644 index 00000000..a69b0fc9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_16.png new file mode 100644 index 00000000..31d8a4f0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_17.png new file mode 100644 index 00000000..cd382b22 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_18.png new file mode 100644 index 00000000..4a9fc14c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_19.png new file mode 100644 index 00000000..4d7f8e8a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_20.png new file mode 100644 index 00000000..6016f15e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_21.png new file mode 100644 index 00000000..97333fc2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_27.png new file mode 100644 index 00000000..07520d0e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_28.png new file mode 100644 index 00000000..eb6d4611 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_29.png new file mode 100644 index 00000000..62c29f2c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_32.png new file mode 100644 index 00000000..8431e880 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_33.png new file mode 100644 index 00000000..40626228 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_34.png new file mode 100644 index 00000000..2ecda0a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_35.png new file mode 100644 index 00000000..c6002ec5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_54.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_55.png new file mode 100644 index 00000000..ce215bb8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_60.png new file mode 100644 index 00000000..ce1abf24 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_61.png new file mode 100644 index 00000000..0f51f78f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_62.png new file mode 100644 index 00000000..52bb84b9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_63.png new file mode 100644 index 00000000..a111ac3f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/1_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_10.png new file mode 100644 index 00000000..9261bea0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_11.png new file mode 100644 index 00000000..6db68cdd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_14.png new file mode 100644 index 00000000..e6ab5775 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_15.png new file mode 100644 index 00000000..87fb6963 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_16.png new file mode 100644 index 00000000..fb67ea87 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_17.png new file mode 100644 index 00000000..fe5c9195 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_18.png new file mode 100644 index 00000000..0335b548 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_19.png new file mode 100644 index 00000000..f4f5a63d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_20.png new file mode 100644 index 00000000..008b2fce Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_21.png new file mode 100644 index 00000000..5d808db3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_22.png new file mode 100644 index 00000000..b8c675b3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_23.png new file mode 100644 index 00000000..8a71a7ae Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_25.png new file mode 100644 index 00000000..dc51d9d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_28.png new file mode 100644 index 00000000..0e5b4c0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_29.png new file mode 100644 index 00000000..3459b9fc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_3.png new file mode 100644 index 00000000..c97ac5d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_30.png new file mode 100644 index 00000000..44575e57 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_31.png new file mode 100644 index 00000000..a357b94c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_32.png new file mode 100644 index 00000000..0d6e6e53 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_33.png new file mode 100644 index 00000000..57e70d4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_34.png new file mode 100644 index 00000000..ee0a4a51 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_35.png new file mode 100644 index 00000000..7b6c1018 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_36.png new file mode 100644 index 00000000..64bb0934 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_37.png new file mode 100644 index 00000000..a6998e61 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_38.png new file mode 100644 index 00000000..40ec7445 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_39.png new file mode 100644 index 00000000..dedaaa6b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_4.png new file mode 100644 index 00000000..e99552d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_40.png new file mode 100644 index 00000000..441083b4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_41.png new file mode 100644 index 00000000..1e896336 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_42.png new file mode 100644 index 00000000..a54fec1d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_43.png new file mode 100644 index 00000000..5e3f34b5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_44.png new file mode 100644 index 00000000..b429052b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_46.png new file mode 100644 index 00000000..663c54ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_47.png new file mode 100644 index 00000000..150dfdc0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_48.png new file mode 100644 index 00000000..dad95b1b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_49.png new file mode 100644 index 00000000..31f60b17 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_5.png new file mode 100644 index 00000000..24500466 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_50.png new file mode 100644 index 00000000..383c179b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_51.png new file mode 100644 index 00000000..d68903fc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_52.png new file mode 100644 index 00000000..264831ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_53.png new file mode 100644 index 00000000..bf87c67b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_55.png new file mode 100644 index 00000000..c16d68c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_56.png new file mode 100644 index 00000000..8a30a2d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_57.png new file mode 100644 index 00000000..7a332006 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_58.png new file mode 100644 index 00000000..07c46b54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_59.png new file mode 100644 index 00000000..596d2419 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_6.png new file mode 100644 index 00000000..8b9b8c20 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_60.png new file mode 100644 index 00000000..d723beb0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_62.png new file mode 100644 index 00000000..128600c3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_63.png new file mode 100644 index 00000000..e0870078 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_7.png new file mode 100644 index 00000000..553c7237 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_8.png new file mode 100644 index 00000000..881ea344 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_9.png new file mode 100644 index 00000000..d85744b6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/20_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_10.png new file mode 100644 index 00000000..feb692cb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_11.png new file mode 100644 index 00000000..168df0a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_12.png new file mode 100644 index 00000000..a9866b4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_13.png new file mode 100644 index 00000000..96450fd6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_15.png new file mode 100644 index 00000000..76ac15c1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_16.png new file mode 100644 index 00000000..a7e243e9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_19.png new file mode 100644 index 00000000..b09d2883 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_20.png new file mode 100644 index 00000000..4efd8e2f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_21.png new file mode 100644 index 00000000..ce6ddcd5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_22.png new file mode 100644 index 00000000..d955442e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_23.png new file mode 100644 index 00000000..18a6d97c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_28.png new file mode 100644 index 00000000..1f60d70f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_29.png new file mode 100644 index 00000000..dbf8b156 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_3.png new file mode 100644 index 00000000..6a98f7e9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_30.png new file mode 100644 index 00000000..634af6ea Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_31.png new file mode 100644 index 00000000..acd29161 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_32.png new file mode 100644 index 00000000..f67cc230 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_33.png new file mode 100644 index 00000000..c4a94ab8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_34.png new file mode 100644 index 00000000..024995e4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_35.png new file mode 100644 index 00000000..4dfc826d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_36.png new file mode 100644 index 00000000..a0115bf8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_37.png new file mode 100644 index 00000000..9d2f41d8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_38.png new file mode 100644 index 00000000..3e930dd4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_39.png new file mode 100644 index 00000000..9dce3d81 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_4.png new file mode 100644 index 00000000..1ef14dcf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_42.png new file mode 100644 index 00000000..a3dc73ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_43.png new file mode 100644 index 00000000..8648c410 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_46.png new file mode 100644 index 00000000..05236274 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_47.png new file mode 100644 index 00000000..b51775dc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_48.png new file mode 100644 index 00000000..ccd8ad7c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_49.png new file mode 100644 index 00000000..7548fcf0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_5.png new file mode 100644 index 00000000..5d9fb809 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_50.png new file mode 100644 index 00000000..40059e79 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_51.png new file mode 100644 index 00000000..eaf89b7a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_52.png new file mode 100644 index 00000000..f20dfb8d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_53.png new file mode 100644 index 00000000..8e1d0c54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_56.png new file mode 100644 index 00000000..65306e3c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_57.png new file mode 100644 index 00000000..5813da43 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_59.png new file mode 100644 index 00000000..1b6cf70b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_6.png new file mode 100644 index 00000000..4775ca92 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_60.png new file mode 100644 index 00000000..0a24b334 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_61.png new file mode 100644 index 00000000..79bdc1cc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_62.png new file mode 100644 index 00000000..899eca8d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_7.png new file mode 100644 index 00000000..f4173cab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_8.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_9.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/21_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_10.png new file mode 100644 index 00000000..0cbfbb4a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_11.png new file mode 100644 index 00000000..cc5759b6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_12.png new file mode 100644 index 00000000..5b8b6fba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_13.png new file mode 100644 index 00000000..b6cc33a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_14.png new file mode 100644 index 00000000..ad6e7753 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_15.png new file mode 100644 index 00000000..0888bec5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_16.png new file mode 100644 index 00000000..01efaafd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_17.png new file mode 100644 index 00000000..eb50579e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_20.png new file mode 100644 index 00000000..0dfa7d29 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_21.png new file mode 100644 index 00000000..7bfc32c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_22.png new file mode 100644 index 00000000..ea571748 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_3.png new file mode 100644 index 00000000..1da7b72a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_30.png new file mode 100644 index 00000000..900f5c0d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_31.png new file mode 100644 index 00000000..9c744a9f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_32.png new file mode 100644 index 00000000..223fdb6e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_33.png new file mode 100644 index 00000000..ebfa600b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_34.png new file mode 100644 index 00000000..39b889f4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_35.png new file mode 100644 index 00000000..3bdc96f6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_36.png new file mode 100644 index 00000000..a201f491 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_37.png new file mode 100644 index 00000000..11eab8d5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_38.png new file mode 100644 index 00000000..c01142cc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_4.png new file mode 100644 index 00000000..b3430b8b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_45.png new file mode 100644 index 00000000..0ae5994f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_46.png new file mode 100644 index 00000000..042ff8fd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_5.png new file mode 100644 index 00000000..fde6e355 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_53.png new file mode 100644 index 00000000..fc497d79 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_54.png new file mode 100644 index 00000000..a442f620 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_56.png new file mode 100644 index 00000000..d961045a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_57.png new file mode 100644 index 00000000..5e4876aa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_59.png new file mode 100644 index 00000000..ef0893ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_6.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_60.png new file mode 100644 index 00000000..e2daf587 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_61.png new file mode 100644 index 00000000..5066fd96 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_62.png new file mode 100644 index 00000000..7d014dc7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_7.png new file mode 100644 index 00000000..2ff6f8e8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_8.png new file mode 100644 index 00000000..4b1df3fe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_9.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/22_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_10.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_11.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_12.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_13.png new file mode 100644 index 00000000..be68ec9b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_14.png new file mode 100644 index 00000000..3e9fb5c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_15.png new file mode 100644 index 00000000..a484b3a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_16.png new file mode 100644 index 00000000..dc572356 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_17.png new file mode 100644 index 00000000..3766d039 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_18.png new file mode 100644 index 00000000..a394900c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_2.png new file mode 100644 index 00000000..bbd2da26 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_3.png new file mode 100644 index 00000000..3a93cc61 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_31.png new file mode 100644 index 00000000..48d88c2f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_32.png new file mode 100644 index 00000000..26822530 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_33.png new file mode 100644 index 00000000..5ca433d0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_34.png new file mode 100644 index 00000000..bb4a3e2c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_35.png new file mode 100644 index 00000000..d7410755 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_36.png new file mode 100644 index 00000000..f3cd6fa3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_37.png new file mode 100644 index 00000000..dea72d6b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_4.png new file mode 100644 index 00000000..fadd3473 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_45.png new file mode 100644 index 00000000..168bb735 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_5.png new file mode 100644 index 00000000..345a0fe3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_54.png new file mode 100644 index 00000000..97ba0b59 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_55.png new file mode 100644 index 00000000..8e54c684 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_56.png new file mode 100644 index 00000000..1d025584 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_57.png new file mode 100644 index 00000000..17e98393 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_58.png new file mode 100644 index 00000000..00b73f50 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_59.png new file mode 100644 index 00000000..2f135bb9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_6.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_60.png new file mode 100644 index 00000000..3d8413e0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_61.png new file mode 100644 index 00000000..002e9fc5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_7.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_8.png new file mode 100644 index 00000000..5daae520 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_9.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/23_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_10.png new file mode 100644 index 00000000..5991d046 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_11.png new file mode 100644 index 00000000..5991d046 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_12.png new file mode 100644 index 00000000..5991d046 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_13.png new file mode 100644 index 00000000..1ccd0461 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_14.png new file mode 100644 index 00000000..cb6ea1e1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_15.png new file mode 100644 index 00000000..740beb15 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_16.png new file mode 100644 index 00000000..efc5342e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_17.png new file mode 100644 index 00000000..5e296576 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_18.png new file mode 100644 index 00000000..e62aec05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_2.png new file mode 100644 index 00000000..f3335e4b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_3.png new file mode 100644 index 00000000..8ce7465c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_32.png new file mode 100644 index 00000000..2bca7e8e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_33.png new file mode 100644 index 00000000..aba3bab5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_34.png new file mode 100644 index 00000000..ca624df4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_35.png new file mode 100644 index 00000000..ec9bc785 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_36.png new file mode 100644 index 00000000..1bd4e96a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_4.png new file mode 100644 index 00000000..036a5d32 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_43.png new file mode 100644 index 00000000..82ab8eb3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_45.png new file mode 100644 index 00000000..fd06c9a4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_5.png new file mode 100644 index 00000000..36ed91c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_54.png new file mode 100644 index 00000000..c76919e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_55.png new file mode 100644 index 00000000..1e0df145 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_56.png new file mode 100644 index 00000000..71271288 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_57.png new file mode 100644 index 00000000..fa0fb453 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_58.png new file mode 100644 index 00000000..ef9cb2d2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_59.png new file mode 100644 index 00000000..b1f21f5d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_6.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_7.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_8.png new file mode 100644 index 00000000..c27af9a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_9.png new file mode 100644 index 00000000..06ec4a8e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/24_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_10.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_11.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_12.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_13.png new file mode 100644 index 00000000..31ab53ff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_14.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_15.png new file mode 100644 index 00000000..f436e684 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_16.png new file mode 100644 index 00000000..be012ad5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_2.png new file mode 100644 index 00000000..ca152afe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_3.png new file mode 100644 index 00000000..0df967af Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_32.png new file mode 100644 index 00000000..d54d9f5a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_33.png new file mode 100644 index 00000000..bce7f465 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_34.png new file mode 100644 index 00000000..85c9ab81 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_35.png new file mode 100644 index 00000000..47792e0c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_4.png new file mode 100644 index 00000000..d50ec5c3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_43.png new file mode 100644 index 00000000..b9c65e38 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_5.png new file mode 100644 index 00000000..1bb1c464 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_54.png new file mode 100644 index 00000000..c992037d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_55.png new file mode 100644 index 00000000..28ca994c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_57.png new file mode 100644 index 00000000..3e62ca63 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_6.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_7.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_8.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_9.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/25_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_10.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_11.png new file mode 100644 index 00000000..d4cc1396 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_12.png new file mode 100644 index 00000000..b733dc6c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_13.png new file mode 100644 index 00000000..751fc162 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_14.png new file mode 100644 index 00000000..09e06418 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_15.png new file mode 100644 index 00000000..0d52e608 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_2.png new file mode 100644 index 00000000..947d8247 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_24.png new file mode 100644 index 00000000..d0d1a3f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_3.png new file mode 100644 index 00000000..57e03f96 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_31.png new file mode 100644 index 00000000..a5239858 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_32.png new file mode 100644 index 00000000..74701674 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_35.png new file mode 100644 index 00000000..fd40e21b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_4.png new file mode 100644 index 00000000..03020d88 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_44.png new file mode 100644 index 00000000..0c657b92 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_5.png new file mode 100644 index 00000000..b52bb1ff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_53.png new file mode 100644 index 00000000..947b2e5a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_54.png new file mode 100644 index 00000000..515b2de5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_55.png new file mode 100644 index 00000000..2ee5697d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_56.png new file mode 100644 index 00000000..93b2cd76 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_57.png new file mode 100644 index 00000000..0035c716 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_6.png new file mode 100644 index 00000000..ab007b5a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_7.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_8.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_9.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/26_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_10.png new file mode 100644 index 00000000..ad33b56a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_11.png new file mode 100644 index 00000000..ab593aff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_12.png new file mode 100644 index 00000000..34171bb5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_13.png new file mode 100644 index 00000000..6e48a419 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_14.png new file mode 100644 index 00000000..57545a15 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_15.png new file mode 100644 index 00000000..ac01fd77 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_16.png new file mode 100644 index 00000000..2823818b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_17.png new file mode 100644 index 00000000..7567c839 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_2.png new file mode 100644 index 00000000..3a5c3017 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_24.png new file mode 100644 index 00000000..ff67e262 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_28.png new file mode 100644 index 00000000..afd61305 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_29.png new file mode 100644 index 00000000..53aad4b7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_3.png new file mode 100644 index 00000000..74199989 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_4.png new file mode 100644 index 00000000..102ad48d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_44.png new file mode 100644 index 00000000..e2815f0c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_45.png new file mode 100644 index 00000000..81030e2b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_5.png new file mode 100644 index 00000000..6a118d51 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_51.png new file mode 100644 index 00000000..d098a51a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_52.png new file mode 100644 index 00000000..560db11b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_53.png new file mode 100644 index 00000000..a04e93c3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_55.png new file mode 100644 index 00000000..51ef2fb4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_56.png new file mode 100644 index 00000000..871f0c08 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_57.png new file mode 100644 index 00000000..78f75689 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_6.png new file mode 100644 index 00000000..0456426a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_7.png new file mode 100644 index 00000000..1d52ec1a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_8.png new file mode 100644 index 00000000..4920a5eb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_9.png new file mode 100644 index 00000000..631e5396 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/27_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_10.png new file mode 100644 index 00000000..c1c7f627 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_11.png new file mode 100644 index 00000000..0f57d6f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_12.png new file mode 100644 index 00000000..409ee30f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_13.png new file mode 100644 index 00000000..9a1dc9d2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_14.png new file mode 100644 index 00000000..6ae4d6db Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_15.png new file mode 100644 index 00000000..02796dc2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_16.png new file mode 100644 index 00000000..f44ce24d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_17.png new file mode 100644 index 00000000..0d383b88 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_25.png new file mode 100644 index 00000000..164140e7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_26.png new file mode 100644 index 00000000..4a09d858 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_27.png new file mode 100644 index 00000000..0fdece78 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_28.png new file mode 100644 index 00000000..6d12f566 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_29.png new file mode 100644 index 00000000..0e8043d0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_3.png new file mode 100644 index 00000000..48a969e5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_4.png new file mode 100644 index 00000000..3d209f35 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_5.png new file mode 100644 index 00000000..e8155d52 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_51.png new file mode 100644 index 00000000..5c0c1fd4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_52.png new file mode 100644 index 00000000..6ce06d13 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_53.png new file mode 100644 index 00000000..4a71df03 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_57.png new file mode 100644 index 00000000..b13dba42 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_6.png new file mode 100644 index 00000000..07c6b155 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_7.png new file mode 100644 index 00000000..3feac99e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_8.png new file mode 100644 index 00000000..0c74a922 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_9.png new file mode 100644 index 00000000..64d5c444 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/28_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_11.png new file mode 100644 index 00000000..a48ad2cf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_15.png new file mode 100644 index 00000000..2545ab9c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_16.png new file mode 100644 index 00000000..2fdce226 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_17.png new file mode 100644 index 00000000..16caa99a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_19.png new file mode 100644 index 00000000..6084ec87 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_25.png new file mode 100644 index 00000000..5bb97775 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_26.png new file mode 100644 index 00000000..1a54a6d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_27.png new file mode 100644 index 00000000..8b2748e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_28.png new file mode 100644 index 00000000..61f57b56 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_29.png new file mode 100644 index 00000000..a2229377 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_30.png new file mode 100644 index 00000000..60f44f5c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_33.png new file mode 100644 index 00000000..a527d9f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_39.png new file mode 100644 index 00000000..3d98372e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_4.png new file mode 100644 index 00000000..20c2c398 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_5.png new file mode 100644 index 00000000..d3ce0059 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_50.png new file mode 100644 index 00000000..3509718b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_51.png new file mode 100644 index 00000000..a2d39b49 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_52.png new file mode 100644 index 00000000..9461e066 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_6.png new file mode 100644 index 00000000..76ab1317 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_7.png new file mode 100644 index 00000000..d051ca69 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_8.png new file mode 100644 index 00000000..4f0c3e49 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_9.png new file mode 100644 index 00000000..e44fcc65 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/29_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_14.png new file mode 100644 index 00000000..645b2a2f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_15.png new file mode 100644 index 00000000..ed7ba56f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_16.png new file mode 100644 index 00000000..ffca69d8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_17.png new file mode 100644 index 00000000..6dbf46cf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_18.png new file mode 100644 index 00000000..80f61d09 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_20.png new file mode 100644 index 00000000..563f1aba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_27.png new file mode 100644 index 00000000..cd1e5a51 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_33.png new file mode 100644 index 00000000..4fd75082 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_34.png new file mode 100644 index 00000000..08d488c5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_35.png new file mode 100644 index 00000000..f52664fd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_54.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_55.png new file mode 100644 index 00000000..5a0de708 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_56.png new file mode 100644 index 00000000..8de5e625 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_58.png new file mode 100644 index 00000000..5336fb64 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_60.png new file mode 100644 index 00000000..c6096079 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_61.png new file mode 100644 index 00000000..2d81d892 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_62.png new file mode 100644 index 00000000..86d12fe1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_63.png new file mode 100644 index 00000000..164babee Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/2_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_13.png new file mode 100644 index 00000000..ca084a0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_17.png new file mode 100644 index 00000000..9c83bd94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_18.png new file mode 100644 index 00000000..ef007c58 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_19.png new file mode 100644 index 00000000..c0703265 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_20.png new file mode 100644 index 00000000..21fdefb1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_21.png new file mode 100644 index 00000000..d979739f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_23.png new file mode 100644 index 00000000..18af4205 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_24.png new file mode 100644 index 00000000..c6edd022 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_25.png new file mode 100644 index 00000000..0f57a586 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_26.png new file mode 100644 index 00000000..65e592e0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_27.png new file mode 100644 index 00000000..3f1fed94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_28.png new file mode 100644 index 00000000..c6aab851 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_29.png new file mode 100644 index 00000000..ca8aca1c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_30.png new file mode 100644 index 00000000..c3b30fa0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_31.png new file mode 100644 index 00000000..555144b5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_34.png new file mode 100644 index 00000000..75309bd1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_39.png new file mode 100644 index 00000000..6b5ae920 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_49.png new file mode 100644 index 00000000..609c25dc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_5.png new file mode 100644 index 00000000..ea43d30a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_50.png new file mode 100644 index 00000000..f0ac68d2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_52.png new file mode 100644 index 00000000..e367972e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_6.png new file mode 100644 index 00000000..189b69ef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/30_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_18.png new file mode 100644 index 00000000..7b4a5025 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_19.png new file mode 100644 index 00000000..10cfd01b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_20.png new file mode 100644 index 00000000..d10fbd50 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_21.png new file mode 100644 index 00000000..2118e49f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_22.png new file mode 100644 index 00000000..adb66c36 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_23.png new file mode 100644 index 00000000..62a04df0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_24.png new file mode 100644 index 00000000..d1a76bcb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_25.png new file mode 100644 index 00000000..41b46932 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_26.png new file mode 100644 index 00000000..70835727 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_27.png new file mode 100644 index 00000000..7acceb77 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_28.png new file mode 100644 index 00000000..7ca1008b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_29.png new file mode 100644 index 00000000..78877349 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_30.png new file mode 100644 index 00000000..dbd78db8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_31.png new file mode 100644 index 00000000..29622be5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_34.png new file mode 100644 index 00000000..bfd166d1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_49.png new file mode 100644 index 00000000..3641a81e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_50.png new file mode 100644 index 00000000..1fcf7d93 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_51.png new file mode 100644 index 00000000..84e89682 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/31_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_17.png new file mode 100644 index 00000000..11b515ad Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_18.png new file mode 100644 index 00000000..f28fec92 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_19.png new file mode 100644 index 00000000..ad6d271c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_20.png new file mode 100644 index 00000000..f93b1bbe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_21.png new file mode 100644 index 00000000..385e7c3b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_22.png new file mode 100644 index 00000000..ea1fabf0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_23.png new file mode 100644 index 00000000..1bc47538 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_24.png new file mode 100644 index 00000000..8651dc5a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_25.png new file mode 100644 index 00000000..1fc18eaf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_26.png new file mode 100644 index 00000000..f1ed3205 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_27.png new file mode 100644 index 00000000..a92ebffc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_28.png new file mode 100644 index 00000000..2d6dce07 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_29.png new file mode 100644 index 00000000..17f3e96d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_30.png new file mode 100644 index 00000000..65808d81 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_31.png new file mode 100644 index 00000000..eca570ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_32.png new file mode 100644 index 00000000..2ab86f07 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_43.png new file mode 100644 index 00000000..9982c96f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_49.png new file mode 100644 index 00000000..25ce4446 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_50.png new file mode 100644 index 00000000..49de0804 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_51.png new file mode 100644 index 00000000..bfd47082 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/32_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_16.png new file mode 100644 index 00000000..10f247e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_17.png new file mode 100644 index 00000000..63508d58 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_18.png new file mode 100644 index 00000000..41350361 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_19.png new file mode 100644 index 00000000..57fce035 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_20.png new file mode 100644 index 00000000..d3d745bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_21.png new file mode 100644 index 00000000..dd746b64 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_22.png new file mode 100644 index 00000000..942249fc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_23.png new file mode 100644 index 00000000..f45ae2c8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_24.png new file mode 100644 index 00000000..b549c732 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_25.png new file mode 100644 index 00000000..a11b1134 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_26.png new file mode 100644 index 00000000..a0978940 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_27.png new file mode 100644 index 00000000..c8c0b3f8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_28.png new file mode 100644 index 00000000..b9b68142 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_29.png new file mode 100644 index 00000000..614b9c55 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_30.png new file mode 100644 index 00000000..119a31a9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_31.png new file mode 100644 index 00000000..20c801cf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_32.png new file mode 100644 index 00000000..57f846c8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_49.png new file mode 100644 index 00000000..fff4f51a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_50.png new file mode 100644 index 00000000..371a8193 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_7.png new file mode 100644 index 00000000..071d7da0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_8.png new file mode 100644 index 00000000..7826f346 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/33_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_10.png new file mode 100644 index 00000000..ac7aa24c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_14.png new file mode 100644 index 00000000..f51056c7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_15.png new file mode 100644 index 00000000..6047015d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_16.png new file mode 100644 index 00000000..8daf5e48 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_17.png new file mode 100644 index 00000000..ff748f04 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_18.png new file mode 100644 index 00000000..83ec27f1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_19.png new file mode 100644 index 00000000..0b643e57 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_20.png new file mode 100644 index 00000000..923db4e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_21.png new file mode 100644 index 00000000..9253ae9f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_22.png new file mode 100644 index 00000000..0eb3abb3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_23.png new file mode 100644 index 00000000..ddacfdfc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_24.png new file mode 100644 index 00000000..6169f793 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_25.png new file mode 100644 index 00000000..4097b133 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_26.png new file mode 100644 index 00000000..c6e9e558 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_27.png new file mode 100644 index 00000000..d69dccd6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_28.png new file mode 100644 index 00000000..5e53226d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_29.png new file mode 100644 index 00000000..aa99288c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_30.png new file mode 100644 index 00000000..bd64d6b1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_31.png new file mode 100644 index 00000000..8295347f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_32.png new file mode 100644 index 00000000..2aaef323 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_33.png new file mode 100644 index 00000000..00e44794 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_34.png new file mode 100644 index 00000000..d229cc12 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_35.png new file mode 100644 index 00000000..32cbe1de Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_36.png new file mode 100644 index 00000000..226748df Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_37.png new file mode 100644 index 00000000..6d89998a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_49.png new file mode 100644 index 00000000..cb9340e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_50.png new file mode 100644 index 00000000..e7878e84 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_6.png new file mode 100644 index 00000000..6b65a89d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_7.png new file mode 100644 index 00000000..e6167693 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_8.png new file mode 100644 index 00000000..84fe38be Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_9.png new file mode 100644 index 00000000..cc9c39c8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/34_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_10.png new file mode 100644 index 00000000..4e58c053 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_11.png new file mode 100644 index 00000000..faada46e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_13.png new file mode 100644 index 00000000..f6e87bcf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_14.png new file mode 100644 index 00000000..31d3a3e7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_15.png new file mode 100644 index 00000000..5fb2f63f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_16.png new file mode 100644 index 00000000..1a868a7e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_17.png new file mode 100644 index 00000000..1a52437e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_18.png new file mode 100644 index 00000000..42ece9ff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_19.png new file mode 100644 index 00000000..ec941cec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_20.png new file mode 100644 index 00000000..bbba8049 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_21.png new file mode 100644 index 00000000..eb1a5990 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_22.png new file mode 100644 index 00000000..daf7e46f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_23.png new file mode 100644 index 00000000..e5ceb237 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_24.png new file mode 100644 index 00000000..ed17f92e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_25.png new file mode 100644 index 00000000..ad04cfbf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_26.png new file mode 100644 index 00000000..b743a130 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_27.png new file mode 100644 index 00000000..12bb569f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_28.png new file mode 100644 index 00000000..0cf0c551 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_29.png new file mode 100644 index 00000000..26b643d5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_30.png new file mode 100644 index 00000000..d023bcc1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_31.png new file mode 100644 index 00000000..0ec56413 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_32.png new file mode 100644 index 00000000..e85f20f7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_33.png new file mode 100644 index 00000000..91a1f495 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_34.png new file mode 100644 index 00000000..488ae8f4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_35.png new file mode 100644 index 00000000..b04e58ad Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_36.png new file mode 100644 index 00000000..c0b5b482 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_37.png new file mode 100644 index 00000000..58b792ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_38.png new file mode 100644 index 00000000..bea60bba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_49.png new file mode 100644 index 00000000..3cb5c37d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_50.png new file mode 100644 index 00000000..223e9235 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_6.png new file mode 100644 index 00000000..943932e4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_7.png new file mode 100644 index 00000000..b1108416 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_8.png new file mode 100644 index 00000000..b56a9249 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_9.png new file mode 100644 index 00000000..06709bb6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/35_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_10.png new file mode 100644 index 00000000..e269dc05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_13.png new file mode 100644 index 00000000..cfa18bc5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_14.png new file mode 100644 index 00000000..0f8258a7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_15.png new file mode 100644 index 00000000..96da254a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_16.png new file mode 100644 index 00000000..296df219 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_17.png new file mode 100644 index 00000000..776fe5b2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_18.png new file mode 100644 index 00000000..53530f97 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_19.png new file mode 100644 index 00000000..0396d4bd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_20.png new file mode 100644 index 00000000..aabf782a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_21.png new file mode 100644 index 00000000..bf62d777 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_22.png new file mode 100644 index 00000000..80352604 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_23.png new file mode 100644 index 00000000..4a6dd8e7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_24.png new file mode 100644 index 00000000..b3171de4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_25.png new file mode 100644 index 00000000..d922e13d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_26.png new file mode 100644 index 00000000..c8c31d8d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_27.png new file mode 100644 index 00000000..372d6a4e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_28.png new file mode 100644 index 00000000..fb64e361 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_29.png new file mode 100644 index 00000000..780634ee Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_30.png new file mode 100644 index 00000000..106a2435 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_31.png new file mode 100644 index 00000000..7cdc72ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_32.png new file mode 100644 index 00000000..4cffe527 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_33.png new file mode 100644 index 00000000..6657cbaf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_34.png new file mode 100644 index 00000000..7cf96732 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_35.png new file mode 100644 index 00000000..eb1cbf6a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_36.png new file mode 100644 index 00000000..2791e24c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_37.png new file mode 100644 index 00000000..1ab82908 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_38.png new file mode 100644 index 00000000..f1317d86 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_49.png new file mode 100644 index 00000000..bcde4087 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_50.png new file mode 100644 index 00000000..507f6149 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_51.png new file mode 100644 index 00000000..6a4c0429 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_6.png new file mode 100644 index 00000000..e7ae6016 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_7.png new file mode 100644 index 00000000..5638cdcb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_8.png new file mode 100644 index 00000000..d424e18c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_9.png new file mode 100644 index 00000000..9568ae57 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/36_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_13.png new file mode 100644 index 00000000..d5ca4511 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_14.png new file mode 100644 index 00000000..ddcfe2c7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_15.png new file mode 100644 index 00000000..bb672359 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_16.png new file mode 100644 index 00000000..e40c29bb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_17.png new file mode 100644 index 00000000..243fa0c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_18.png new file mode 100644 index 00000000..a5f275b5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_19.png new file mode 100644 index 00000000..196860da Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_20.png new file mode 100644 index 00000000..b4f95764 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_21.png new file mode 100644 index 00000000..5f0bccfc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_22.png new file mode 100644 index 00000000..cf163d24 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_23.png new file mode 100644 index 00000000..708b6a07 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_24.png new file mode 100644 index 00000000..ccc5553a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_25.png new file mode 100644 index 00000000..6b081214 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_26.png new file mode 100644 index 00000000..c066b46c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_27.png new file mode 100644 index 00000000..44890592 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_28.png new file mode 100644 index 00000000..a8fb5566 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_29.png new file mode 100644 index 00000000..ad9567b7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_30.png new file mode 100644 index 00000000..6c522cc6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_31.png new file mode 100644 index 00000000..fd778656 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_32.png new file mode 100644 index 00000000..4922fb45 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_33.png new file mode 100644 index 00000000..ac5ee68e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_34.png new file mode 100644 index 00000000..0e864a90 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_35.png new file mode 100644 index 00000000..994e9580 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_36.png new file mode 100644 index 00000000..ac3e28a5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_37.png new file mode 100644 index 00000000..7f093290 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_38.png new file mode 100644 index 00000000..8fd6a80f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_49.png new file mode 100644 index 00000000..10d7e8f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_50.png new file mode 100644 index 00000000..6d87e13a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_51.png new file mode 100644 index 00000000..f1677f0b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_6.png new file mode 100644 index 00000000..6c265c6f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_7.png new file mode 100644 index 00000000..b1f97951 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_8.png new file mode 100644 index 00000000..2bc54555 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/37_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_14.png new file mode 100644 index 00000000..25dd959d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_15.png new file mode 100644 index 00000000..8e8d6d23 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_16.png new file mode 100644 index 00000000..7feabfa5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_17.png new file mode 100644 index 00000000..34e13d3a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_18.png new file mode 100644 index 00000000..12b31094 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_19.png new file mode 100644 index 00000000..6b14ad9f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_20.png new file mode 100644 index 00000000..6f6ef14e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_21.png new file mode 100644 index 00000000..07f9b13c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_22.png new file mode 100644 index 00000000..152c5e38 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_23.png new file mode 100644 index 00000000..7f20d518 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_24.png new file mode 100644 index 00000000..36d47033 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_25.png new file mode 100644 index 00000000..6f3e4cea Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_26.png new file mode 100644 index 00000000..3b21b665 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_27.png new file mode 100644 index 00000000..11b9f6ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_28.png new file mode 100644 index 00000000..74d4799f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_29.png new file mode 100644 index 00000000..c188dd5c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_30.png new file mode 100644 index 00000000..1b4feaf8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_31.png new file mode 100644 index 00000000..16713c46 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_32.png new file mode 100644 index 00000000..918af087 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_33.png new file mode 100644 index 00000000..e8660765 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_34.png new file mode 100644 index 00000000..85a612ca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_35.png new file mode 100644 index 00000000..0068e69f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_36.png new file mode 100644 index 00000000..81f6ee89 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_41.png new file mode 100644 index 00000000..f0076cbb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_49.png new file mode 100644 index 00000000..012fb821 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_50.png new file mode 100644 index 00000000..d28d56f0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_6.png new file mode 100644 index 00000000..d072d7f6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_7.png new file mode 100644 index 00000000..445a4719 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/38_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_14.png new file mode 100644 index 00000000..44c763bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_15.png new file mode 100644 index 00000000..47d7e053 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_16.png new file mode 100644 index 00000000..cdca73b2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_17.png new file mode 100644 index 00000000..ba524f54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_18.png new file mode 100644 index 00000000..309f4059 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_19.png new file mode 100644 index 00000000..addcfa5b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_20.png new file mode 100644 index 00000000..4629ccc7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_21.png new file mode 100644 index 00000000..625fe0a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_22.png new file mode 100644 index 00000000..4e94fe04 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_23.png new file mode 100644 index 00000000..b220f72c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_24.png new file mode 100644 index 00000000..58a36017 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_25.png new file mode 100644 index 00000000..3a190127 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_26.png new file mode 100644 index 00000000..e7c9c969 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_27.png new file mode 100644 index 00000000..7c41981d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_28.png new file mode 100644 index 00000000..db835956 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_29.png new file mode 100644 index 00000000..ba03ac93 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_30.png new file mode 100644 index 00000000..af2c2d09 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_31.png new file mode 100644 index 00000000..684542eb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_32.png new file mode 100644 index 00000000..0482d413 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_33.png new file mode 100644 index 00000000..8adfde1d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_34.png new file mode 100644 index 00000000..953345b9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_35.png new file mode 100644 index 00000000..12901177 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_36.png new file mode 100644 index 00000000..a54c6150 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_48.png new file mode 100644 index 00000000..db116803 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_49.png new file mode 100644 index 00000000..ef814fb7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_6.png new file mode 100644 index 00000000..f5611c33 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/39_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_13.png new file mode 100644 index 00000000..8c620e63 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_14.png new file mode 100644 index 00000000..0406bec4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_15.png new file mode 100644 index 00000000..d72826a5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_16.png new file mode 100644 index 00000000..329aa742 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_17.png new file mode 100644 index 00000000..19ff5424 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_18.png new file mode 100644 index 00000000..bbf4ea26 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_19.png new file mode 100644 index 00000000..a7916aee Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_20.png new file mode 100644 index 00000000..66164477 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_27.png new file mode 100644 index 00000000..98171e8b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_28.png new file mode 100644 index 00000000..804bb5ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_30.png new file mode 100644 index 00000000..142e0107 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_31.png new file mode 100644 index 00000000..4ef6b147 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_32.png new file mode 100644 index 00000000..9e78e143 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_33.png new file mode 100644 index 00000000..7e93bc74 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_34.png new file mode 100644 index 00000000..02ec1f19 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_35.png new file mode 100644 index 00000000..5f21c04b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_36.png new file mode 100644 index 00000000..48ab2260 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_54.png new file mode 100644 index 00000000..a995d524 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_55.png new file mode 100644 index 00000000..cd8b8797 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_56.png new file mode 100644 index 00000000..68b3f2a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_58.png new file mode 100644 index 00000000..768ce105 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_59.png new file mode 100644 index 00000000..e8a58cef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_60.png new file mode 100644 index 00000000..442875f1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_61.png new file mode 100644 index 00000000..34acc81c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_63.png new file mode 100644 index 00000000..fc7d28e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/3_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_14.png new file mode 100644 index 00000000..228589fb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_15.png new file mode 100644 index 00000000..6616c29e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_16.png new file mode 100644 index 00000000..a4835452 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_17.png new file mode 100644 index 00000000..c9b99789 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_18.png new file mode 100644 index 00000000..f59f6eff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_19.png new file mode 100644 index 00000000..9c9d4e99 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_20.png new file mode 100644 index 00000000..ee4e36fe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_21.png new file mode 100644 index 00000000..19ee3089 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_22.png new file mode 100644 index 00000000..7189ef6f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_23.png new file mode 100644 index 00000000..f1a7f9ef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_24.png new file mode 100644 index 00000000..d02f5eaf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_25.png new file mode 100644 index 00000000..2bf3689c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_26.png new file mode 100644 index 00000000..7bc26d3c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_27.png new file mode 100644 index 00000000..74bf2269 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_28.png new file mode 100644 index 00000000..15a0f42a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_29.png new file mode 100644 index 00000000..83467625 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_30.png new file mode 100644 index 00000000..c133387b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_31.png new file mode 100644 index 00000000..8af6106f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_33.png new file mode 100644 index 00000000..03412f2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_34.png new file mode 100644 index 00000000..958b35bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_35.png new file mode 100644 index 00000000..867994e5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_36.png new file mode 100644 index 00000000..14a805ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_41.png new file mode 100644 index 00000000..e5fafc16 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_47.png new file mode 100644 index 00000000..22adc991 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_48.png new file mode 100644 index 00000000..728210b2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_5.png new file mode 100644 index 00000000..3efd9a54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_6.png new file mode 100644 index 00000000..3e4bc6b0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_7.png new file mode 100644 index 00000000..ea74e13b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/40_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_11.png new file mode 100644 index 00000000..34062b03 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_12.png new file mode 100644 index 00000000..904ddda0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_13.png new file mode 100644 index 00000000..0ed44931 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_14.png new file mode 100644 index 00000000..9b2ae769 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_15.png new file mode 100644 index 00000000..81fd6d87 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_16.png new file mode 100644 index 00000000..a6d2bf85 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_17.png new file mode 100644 index 00000000..247041e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_18.png new file mode 100644 index 00000000..6c6f4491 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_19.png new file mode 100644 index 00000000..e3d681c3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_20.png new file mode 100644 index 00000000..d08b3229 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_21.png new file mode 100644 index 00000000..cd3820cc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_22.png new file mode 100644 index 00000000..a0657a3e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_23.png new file mode 100644 index 00000000..f3910d62 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_24.png new file mode 100644 index 00000000..84afca7d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_25.png new file mode 100644 index 00000000..4a7fb71d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_26.png new file mode 100644 index 00000000..9a670c94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_27.png new file mode 100644 index 00000000..a8e8ae1c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_28.png new file mode 100644 index 00000000..a62d72dc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_29.png new file mode 100644 index 00000000..96a4463c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_30.png new file mode 100644 index 00000000..ac7d22b6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_32.png new file mode 100644 index 00000000..41291a02 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_33.png new file mode 100644 index 00000000..4f75af8f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_34.png new file mode 100644 index 00000000..19a36c29 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_35.png new file mode 100644 index 00000000..56afa808 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_41.png new file mode 100644 index 00000000..3bb8dd36 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_47.png new file mode 100644 index 00000000..e6a301b1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_48.png new file mode 100644 index 00000000..4dfbb752 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_5.png new file mode 100644 index 00000000..06f684df Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_6.png new file mode 100644 index 00000000..95dfb007 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_7.png new file mode 100644 index 00000000..b970c7bb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/41_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_10.png new file mode 100644 index 00000000..7dd4ba2c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_11.png new file mode 100644 index 00000000..f5826c0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_12.png new file mode 100644 index 00000000..dbf17b17 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_13.png new file mode 100644 index 00000000..e57fc19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_14.png new file mode 100644 index 00000000..22b3948f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_15.png new file mode 100644 index 00000000..19a458ae Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_16.png new file mode 100644 index 00000000..77e45198 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_17.png new file mode 100644 index 00000000..f8dd5f69 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_18.png new file mode 100644 index 00000000..b4fd2423 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_19.png new file mode 100644 index 00000000..10ec0f3a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_20.png new file mode 100644 index 00000000..b9a46a3a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_21.png new file mode 100644 index 00000000..6476c74f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_22.png new file mode 100644 index 00000000..31674667 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_23.png new file mode 100644 index 00000000..f118b626 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_24.png new file mode 100644 index 00000000..d6ed6e08 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_25.png new file mode 100644 index 00000000..3b590151 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_26.png new file mode 100644 index 00000000..f3fc5571 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_27.png new file mode 100644 index 00000000..67a6b291 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_28.png new file mode 100644 index 00000000..90ee9b86 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_33.png new file mode 100644 index 00000000..67189f69 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_34.png new file mode 100644 index 00000000..f165244d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_35.png new file mode 100644 index 00000000..35475a61 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_4.png new file mode 100644 index 00000000..1a53166c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_47.png new file mode 100644 index 00000000..3514631f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_48.png new file mode 100644 index 00000000..41d79f37 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_5.png new file mode 100644 index 00000000..faed7860 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_51.png new file mode 100644 index 00000000..17935a89 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_6.png new file mode 100644 index 00000000..ed3a8205 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_7.png new file mode 100644 index 00000000..c92692fc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/42_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_10.png new file mode 100644 index 00000000..035296e4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_11.png new file mode 100644 index 00000000..1f0b2c84 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_13.png new file mode 100644 index 00000000..afde3ace Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_14.png new file mode 100644 index 00000000..87b187a9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_15.png new file mode 100644 index 00000000..1526ba74 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_16.png new file mode 100644 index 00000000..851345bd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_17.png new file mode 100644 index 00000000..0dff6a0d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_18.png new file mode 100644 index 00000000..a375f722 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_19.png new file mode 100644 index 00000000..15dc33b0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_20.png new file mode 100644 index 00000000..8068ccff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_21.png new file mode 100644 index 00000000..074d2a81 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_22.png new file mode 100644 index 00000000..ea43c08d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_23.png new file mode 100644 index 00000000..f41a4edf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_24.png new file mode 100644 index 00000000..289ed7e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_25.png new file mode 100644 index 00000000..c2f3ee02 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_26.png new file mode 100644 index 00000000..d8162f13 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_27.png new file mode 100644 index 00000000..bccf01b9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_35.png new file mode 100644 index 00000000..d8e87fca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_48.png new file mode 100644 index 00000000..5feecd39 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_49.png new file mode 100644 index 00000000..4c2afd4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_5.png new file mode 100644 index 00000000..cf41c83c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_50.png new file mode 100644 index 00000000..40072b7b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_51.png new file mode 100644 index 00000000..198b30da Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_52.png new file mode 100644 index 00000000..f1a7a1e1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_6.png new file mode 100644 index 00000000..6cb35e36 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_9.png new file mode 100644 index 00000000..1f37557d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/43_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_10.png new file mode 100644 index 00000000..925b1549 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_12.png new file mode 100644 index 00000000..6342adca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_13.png new file mode 100644 index 00000000..683df927 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_14.png new file mode 100644 index 00000000..b88e277e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_15.png new file mode 100644 index 00000000..c9275b21 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_16.png new file mode 100644 index 00000000..64a5b4d7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_17.png new file mode 100644 index 00000000..62be4499 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_18.png new file mode 100644 index 00000000..d616f78c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_19.png new file mode 100644 index 00000000..f289a7da Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_20.png new file mode 100644 index 00000000..f59b7be6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_21.png new file mode 100644 index 00000000..b7660a26 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_22.png new file mode 100644 index 00000000..54b9e423 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_23.png new file mode 100644 index 00000000..07018eb9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_24.png new file mode 100644 index 00000000..ed275fb9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_25.png new file mode 100644 index 00000000..dbacfb38 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_26.png new file mode 100644 index 00000000..5df17abb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_27.png new file mode 100644 index 00000000..1e19838d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_28.png new file mode 100644 index 00000000..07d3b359 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_29.png new file mode 100644 index 00000000..8a8cb5e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_30.png new file mode 100644 index 00000000..a6c0c782 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_31.png new file mode 100644 index 00000000..6671e732 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_32.png new file mode 100644 index 00000000..29e767ad Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_33.png new file mode 100644 index 00000000..f71fadc1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_41.png new file mode 100644 index 00000000..33503d08 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_42.png new file mode 100644 index 00000000..a61946bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_43.png new file mode 100644 index 00000000..cce21d93 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_48.png new file mode 100644 index 00000000..636e87e0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_49.png new file mode 100644 index 00000000..f9359ac3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_50.png new file mode 100644 index 00000000..818879cc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_51.png new file mode 100644 index 00000000..e5f4c006 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_52.png new file mode 100644 index 00000000..44ba3393 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_9.png new file mode 100644 index 00000000..bfa756f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/44_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_11.png new file mode 100644 index 00000000..3229f219 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_12.png new file mode 100644 index 00000000..6684eb91 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_13.png new file mode 100644 index 00000000..11d21225 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_14.png new file mode 100644 index 00000000..3ab6d97a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_15.png new file mode 100644 index 00000000..28ecaa83 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_16.png new file mode 100644 index 00000000..742927e3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_17.png new file mode 100644 index 00000000..e5d6cf3b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_18.png new file mode 100644 index 00000000..a6061663 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_19.png new file mode 100644 index 00000000..805fa51c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_20.png new file mode 100644 index 00000000..b2d170fe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_21.png new file mode 100644 index 00000000..e347040b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_22.png new file mode 100644 index 00000000..2431c261 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_23.png new file mode 100644 index 00000000..a1f56f89 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_24.png new file mode 100644 index 00000000..93ec636f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_25.png new file mode 100644 index 00000000..725bf927 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_26.png new file mode 100644 index 00000000..5c0cd628 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_27.png new file mode 100644 index 00000000..35046e0d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_28.png new file mode 100644 index 00000000..59fadf9d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_29.png new file mode 100644 index 00000000..2d266117 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_30.png new file mode 100644 index 00000000..9292c7a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_31.png new file mode 100644 index 00000000..31066a80 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_32.png new file mode 100644 index 00000000..ffa7e405 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_39.png new file mode 100644 index 00000000..95044d99 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_43.png new file mode 100644 index 00000000..b5f30463 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_48.png new file mode 100644 index 00000000..5e4b48d1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_49.png new file mode 100644 index 00000000..18700e30 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_51.png new file mode 100644 index 00000000..f661d265 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_6.png new file mode 100644 index 00000000..f8f87ae6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_7.png new file mode 100644 index 00000000..19ac49dc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/45_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_10.png new file mode 100644 index 00000000..f3b75014 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_11.png new file mode 100644 index 00000000..fcf98053 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_12.png new file mode 100644 index 00000000..63720b0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_13.png new file mode 100644 index 00000000..01aaea47 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_14.png new file mode 100644 index 00000000..a0008645 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_15.png new file mode 100644 index 00000000..d25d9ba7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_16.png new file mode 100644 index 00000000..dbba8fa1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_17.png new file mode 100644 index 00000000..8b28ac8f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_18.png new file mode 100644 index 00000000..d4d70cdc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_19.png new file mode 100644 index 00000000..8bb9eced Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_20.png new file mode 100644 index 00000000..9f5932da Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_21.png new file mode 100644 index 00000000..978b04f0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_22.png new file mode 100644 index 00000000..f5e36417 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_23.png new file mode 100644 index 00000000..b0bc3ab5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_24.png new file mode 100644 index 00000000..5cfe2c5d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_25.png new file mode 100644 index 00000000..b2aafee8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_26.png new file mode 100644 index 00000000..5f14f758 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_27.png new file mode 100644 index 00000000..6ba8944f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_28.png new file mode 100644 index 00000000..b45f2e94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_29.png new file mode 100644 index 00000000..a794152e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_30.png new file mode 100644 index 00000000..be71453c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_48.png new file mode 100644 index 00000000..defe3746 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_5.png new file mode 100644 index 00000000..c8b65b92 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_6.png new file mode 100644 index 00000000..e71ceb30 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_9.png new file mode 100644 index 00000000..c6766128 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/46_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_10.png new file mode 100644 index 00000000..59b67805 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_11.png new file mode 100644 index 00000000..e147641e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_12.png new file mode 100644 index 00000000..b330569c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_13.png new file mode 100644 index 00000000..47d5534c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_14.png new file mode 100644 index 00000000..23b5e824 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_15.png new file mode 100644 index 00000000..65c90e33 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_16.png new file mode 100644 index 00000000..b32b0b15 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_17.png new file mode 100644 index 00000000..c1507808 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_18.png new file mode 100644 index 00000000..632b45d1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_19.png new file mode 100644 index 00000000..f652096f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_20.png new file mode 100644 index 00000000..d3d1470c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_21.png new file mode 100644 index 00000000..cc901cc4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_22.png new file mode 100644 index 00000000..3554feff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_23.png new file mode 100644 index 00000000..099278c5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_24.png new file mode 100644 index 00000000..c59a3d8a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_25.png new file mode 100644 index 00000000..87690048 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_26.png new file mode 100644 index 00000000..11c33d9e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_27.png new file mode 100644 index 00000000..6fdf409e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_28.png new file mode 100644 index 00000000..9f17a1f7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_47.png new file mode 100644 index 00000000..d10865f4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_48.png new file mode 100644 index 00000000..33d7e0ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_49.png new file mode 100644 index 00000000..0c257cbe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_5.png new file mode 100644 index 00000000..5658056f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_6.png new file mode 100644 index 00000000..742b1b00 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_7.png new file mode 100644 index 00000000..ffaf542f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_9.png new file mode 100644 index 00000000..0976fcee Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/47_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_10.png new file mode 100644 index 00000000..2fd68423 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_11.png new file mode 100644 index 00000000..b8b6e2ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_12.png new file mode 100644 index 00000000..179df02f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_13.png new file mode 100644 index 00000000..ff3092cf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_14.png new file mode 100644 index 00000000..56eb5e10 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_15.png new file mode 100644 index 00000000..3f6fa383 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_16.png new file mode 100644 index 00000000..75586ae1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_17.png new file mode 100644 index 00000000..1b235945 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_18.png new file mode 100644 index 00000000..009e1f75 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_19.png new file mode 100644 index 00000000..95d26e27 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_20.png new file mode 100644 index 00000000..b7722736 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_21.png new file mode 100644 index 00000000..42fd3174 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_22.png new file mode 100644 index 00000000..3f3980cd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_23.png new file mode 100644 index 00000000..f502d309 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_24.png new file mode 100644 index 00000000..25c68dd8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_25.png new file mode 100644 index 00000000..faeff70d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_26.png new file mode 100644 index 00000000..41fad79d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_27.png new file mode 100644 index 00000000..4dce538a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_28.png new file mode 100644 index 00000000..a334e244 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_29.png new file mode 100644 index 00000000..03e09e08 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_30.png new file mode 100644 index 00000000..f27f0122 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_31.png new file mode 100644 index 00000000..65f7f159 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_47.png new file mode 100644 index 00000000..8d07ed42 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_48.png new file mode 100644 index 00000000..eb33f808 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_5.png new file mode 100644 index 00000000..2ec08bc2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_6.png new file mode 100644 index 00000000..18b8baa8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_7.png new file mode 100644 index 00000000..a025986f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_8.png new file mode 100644 index 00000000..64263bc2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_9.png new file mode 100644 index 00000000..52851164 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/48_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_10.png new file mode 100644 index 00000000..b8c3144f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_11.png new file mode 100644 index 00000000..90125dbe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_12.png new file mode 100644 index 00000000..576fabb6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_13.png new file mode 100644 index 00000000..30640aa3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_14.png new file mode 100644 index 00000000..ca3639a2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_15.png new file mode 100644 index 00000000..2c6833c7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_16.png new file mode 100644 index 00000000..8eff1a43 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_17.png new file mode 100644 index 00000000..0a7c483f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_18.png new file mode 100644 index 00000000..b847ccaa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_19.png new file mode 100644 index 00000000..a2f78fc5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_20.png new file mode 100644 index 00000000..e2525474 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_21.png new file mode 100644 index 00000000..4c3cad9b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_22.png new file mode 100644 index 00000000..acfbbfff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_23.png new file mode 100644 index 00000000..2327d476 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_24.png new file mode 100644 index 00000000..b9f14c5c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_25.png new file mode 100644 index 00000000..54dc6d0f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_26.png new file mode 100644 index 00000000..f5f2ff01 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_27.png new file mode 100644 index 00000000..288b27ca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_28.png new file mode 100644 index 00000000..3728a7e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_29.png new file mode 100644 index 00000000..8269e7b1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_30.png new file mode 100644 index 00000000..720bec2b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_31.png new file mode 100644 index 00000000..95ead0e0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_32.png new file mode 100644 index 00000000..d28e250b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_34.png new file mode 100644 index 00000000..131b3958 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_47.png new file mode 100644 index 00000000..991cc560 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_48.png new file mode 100644 index 00000000..47f7eeb5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_5.png new file mode 100644 index 00000000..13559c34 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_6.png new file mode 100644 index 00000000..8003a7f8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_7.png new file mode 100644 index 00000000..87643824 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_8.png new file mode 100644 index 00000000..79e322a5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_9.png new file mode 100644 index 00000000..0422cf71 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/49_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_13.png new file mode 100644 index 00000000..0b4d5a2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_14.png new file mode 100644 index 00000000..2cca5830 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_15.png new file mode 100644 index 00000000..cd467b6f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_16.png new file mode 100644 index 00000000..303b1eb9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_17.png new file mode 100644 index 00000000..279777dd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_18.png new file mode 100644 index 00000000..e1f407d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_19.png new file mode 100644 index 00000000..e61a35f7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_20.png new file mode 100644 index 00000000..b213a8f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_28.png new file mode 100644 index 00000000..e75c88e1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_31.png new file mode 100644 index 00000000..93e40477 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_32.png new file mode 100644 index 00000000..b3e03330 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_33.png new file mode 100644 index 00000000..9f6eccf8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_34.png new file mode 100644 index 00000000..22963da4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_35.png new file mode 100644 index 00000000..bb9f7148 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_36.png new file mode 100644 index 00000000..15ce67bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_54.png new file mode 100644 index 00000000..6fcf1a39 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_55.png new file mode 100644 index 00000000..73323bb1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_56.png new file mode 100644 index 00000000..91a41667 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_57.png new file mode 100644 index 00000000..5aae309c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_58.png new file mode 100644 index 00000000..177fd403 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_59.png new file mode 100644 index 00000000..564a2cbc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_60.png new file mode 100644 index 00000000..d87f0126 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_63.png new file mode 100644 index 00000000..c7bec4d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/4_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_10.png new file mode 100644 index 00000000..0e77cc5f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_11.png new file mode 100644 index 00000000..121ad83f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_12.png new file mode 100644 index 00000000..4e08cb0b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_13.png new file mode 100644 index 00000000..fa031fc7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_14.png new file mode 100644 index 00000000..504c6884 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_15.png new file mode 100644 index 00000000..9fef7c57 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_16.png new file mode 100644 index 00000000..a9c0b104 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_17.png new file mode 100644 index 00000000..765c9bac Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_18.png new file mode 100644 index 00000000..5ba66efc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_19.png new file mode 100644 index 00000000..98f00e51 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_20.png new file mode 100644 index 00000000..39d8ac3f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_21.png new file mode 100644 index 00000000..d99b450a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_22.png new file mode 100644 index 00000000..b91fbabe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_23.png new file mode 100644 index 00000000..dc726bd8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_24.png new file mode 100644 index 00000000..edfbe52b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_25.png new file mode 100644 index 00000000..34757375 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_26.png new file mode 100644 index 00000000..f9d280d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_27.png new file mode 100644 index 00000000..e831e9ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_28.png new file mode 100644 index 00000000..5754dfa7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_29.png new file mode 100644 index 00000000..2d8924d4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_30.png new file mode 100644 index 00000000..cf82391a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_31.png new file mode 100644 index 00000000..0ac49791 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_32.png new file mode 100644 index 00000000..d68516e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_33.png new file mode 100644 index 00000000..68119eba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_47.png new file mode 100644 index 00000000..30b2aebe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_48.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_7.png new file mode 100644 index 00000000..e24767a9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_8.png new file mode 100644 index 00000000..30d44371 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_9.png new file mode 100644 index 00000000..eb223dfe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/50_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_10.png new file mode 100644 index 00000000..6ba75955 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_11.png new file mode 100644 index 00000000..f4a58af0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_12.png new file mode 100644 index 00000000..8aa6b13b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_13.png new file mode 100644 index 00000000..5871b2ca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_14.png new file mode 100644 index 00000000..c7077e7e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_15.png new file mode 100644 index 00000000..fcf60da1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_16.png new file mode 100644 index 00000000..6958da19 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_17.png new file mode 100644 index 00000000..87d4c595 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_18.png new file mode 100644 index 00000000..7f8df683 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_19.png new file mode 100644 index 00000000..3877ef48 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_20.png new file mode 100644 index 00000000..c3fdb25e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_21.png new file mode 100644 index 00000000..7d6f3e7c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_22.png new file mode 100644 index 00000000..2474a480 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_23.png new file mode 100644 index 00000000..43102f02 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_24.png new file mode 100644 index 00000000..00ba891b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_25.png new file mode 100644 index 00000000..c58ccd78 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_26.png new file mode 100644 index 00000000..0fdd7e39 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_27.png new file mode 100644 index 00000000..685735c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_28.png new file mode 100644 index 00000000..28686526 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_29.png new file mode 100644 index 00000000..6075cde3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_30.png new file mode 100644 index 00000000..1a946142 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_31.png new file mode 100644 index 00000000..544eb7e5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_32.png new file mode 100644 index 00000000..2994d180 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_33.png new file mode 100644 index 00000000..5f3fa9a8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_47.png new file mode 100644 index 00000000..12cdc945 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_48.png new file mode 100644 index 00000000..df607f2f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_8.png new file mode 100644 index 00000000..84982969 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_9.png new file mode 100644 index 00000000..04e29f57 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/51_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_10.png new file mode 100644 index 00000000..50ec3075 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_11.png new file mode 100644 index 00000000..fbe1cec9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_12.png new file mode 100644 index 00000000..1ba59534 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_13.png new file mode 100644 index 00000000..44d59e55 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_14.png new file mode 100644 index 00000000..1b31bdd5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_15.png new file mode 100644 index 00000000..06690da7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_16.png new file mode 100644 index 00000000..9e92c981 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_17.png new file mode 100644 index 00000000..60a1d7a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_18.png new file mode 100644 index 00000000..671684de Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_19.png new file mode 100644 index 00000000..453b4e8c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_20.png new file mode 100644 index 00000000..214cc2a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_21.png new file mode 100644 index 00000000..1b025858 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_22.png new file mode 100644 index 00000000..164c7c3b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_23.png new file mode 100644 index 00000000..f804bba5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_24.png new file mode 100644 index 00000000..d1dd3bfc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_25.png new file mode 100644 index 00000000..7d3012f9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_26.png new file mode 100644 index 00000000..2f588ce3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_27.png new file mode 100644 index 00000000..d0d7142b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_28.png new file mode 100644 index 00000000..d5388f3e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_29.png new file mode 100644 index 00000000..429d2105 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_30.png new file mode 100644 index 00000000..82b338d1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_31.png new file mode 100644 index 00000000..8747a9a0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_32.png new file mode 100644 index 00000000..0ccfba88 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_33.png new file mode 100644 index 00000000..d3af7de9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_35.png new file mode 100644 index 00000000..caef4497 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_36.png new file mode 100644 index 00000000..325c2f76 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_37.png new file mode 100644 index 00000000..a64a6573 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_38.png new file mode 100644 index 00000000..667c023f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_47.png new file mode 100644 index 00000000..0f1a7054 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_48.png new file mode 100644 index 00000000..7eb8e05b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/52_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_11.png new file mode 100644 index 00000000..4ded6afa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_12.png new file mode 100644 index 00000000..6bb08d4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_13.png new file mode 100644 index 00000000..47367bde Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_14.png new file mode 100644 index 00000000..774127b6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_15.png new file mode 100644 index 00000000..9c26bb04 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_16.png new file mode 100644 index 00000000..a65ee479 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_17.png new file mode 100644 index 00000000..bf15c488 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_18.png new file mode 100644 index 00000000..0930d68e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_19.png new file mode 100644 index 00000000..4edfa0fb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_20.png new file mode 100644 index 00000000..dbd073bb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_21.png new file mode 100644 index 00000000..83ef5f9b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_22.png new file mode 100644 index 00000000..2647b5e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_23.png new file mode 100644 index 00000000..f5f134cc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_24.png new file mode 100644 index 00000000..d10d59a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_25.png new file mode 100644 index 00000000..20811055 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_26.png new file mode 100644 index 00000000..81fbf26f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_27.png new file mode 100644 index 00000000..46d9e3b8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_28.png new file mode 100644 index 00000000..da390bbe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_29.png new file mode 100644 index 00000000..1915d9a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_30.png new file mode 100644 index 00000000..9c2c43df Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_31.png new file mode 100644 index 00000000..ce954918 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_32.png new file mode 100644 index 00000000..20b5ad6f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_33.png new file mode 100644 index 00000000..2d41bdf6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_34.png new file mode 100644 index 00000000..311ddcfd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_35.png new file mode 100644 index 00000000..d5d7958b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_36.png new file mode 100644 index 00000000..d8ee78c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_37.png new file mode 100644 index 00000000..6ce9a276 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_38.png new file mode 100644 index 00000000..8181091d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_48.png new file mode 100644 index 00000000..ddbddcba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/53_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_11.png new file mode 100644 index 00000000..4277a3e5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_12.png new file mode 100644 index 00000000..9eefd789 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_13.png new file mode 100644 index 00000000..871dbda7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_14.png new file mode 100644 index 00000000..c6e9a557 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_15.png new file mode 100644 index 00000000..2a05003c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_16.png new file mode 100644 index 00000000..2aac5a7e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_17.png new file mode 100644 index 00000000..15a51897 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_18.png new file mode 100644 index 00000000..7d9706a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_19.png new file mode 100644 index 00000000..4c84f56b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_20.png new file mode 100644 index 00000000..f646b5fd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_21.png new file mode 100644 index 00000000..1c45e5e7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_22.png new file mode 100644 index 00000000..8b081b79 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_23.png new file mode 100644 index 00000000..41c49057 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_24.png new file mode 100644 index 00000000..6987365a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_25.png new file mode 100644 index 00000000..48edd49c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_26.png new file mode 100644 index 00000000..014c41f0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_27.png new file mode 100644 index 00000000..8531c12a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_29.png new file mode 100644 index 00000000..920d6a7a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_30.png new file mode 100644 index 00000000..4cda2e6b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_31.png new file mode 100644 index 00000000..d06299b9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_32.png new file mode 100644 index 00000000..99459582 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_33.png new file mode 100644 index 00000000..330a5b82 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_34.png new file mode 100644 index 00000000..7e398df6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_35.png new file mode 100644 index 00000000..0cf9d95d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_36.png new file mode 100644 index 00000000..2d7c53ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_37.png new file mode 100644 index 00000000..50b7af91 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_38.png new file mode 100644 index 00000000..056f0418 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_47.png new file mode 100644 index 00000000..f5e111ce Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_48.png new file mode 100644 index 00000000..0926d4ec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/54_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_10.png new file mode 100644 index 00000000..e210eb42 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_11.png new file mode 100644 index 00000000..8d29cb30 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_12.png new file mode 100644 index 00000000..4e06b633 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_13.png new file mode 100644 index 00000000..d258c9d0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_14.png new file mode 100644 index 00000000..d938648f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_15.png new file mode 100644 index 00000000..608cdd64 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_16.png new file mode 100644 index 00000000..d5940b94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_17.png new file mode 100644 index 00000000..06195ebf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_18.png new file mode 100644 index 00000000..c5a65c05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_19.png new file mode 100644 index 00000000..1fd30508 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_20.png new file mode 100644 index 00000000..e5fda587 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_21.png new file mode 100644 index 00000000..ac342f30 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_22.png new file mode 100644 index 00000000..1603a09d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_23.png new file mode 100644 index 00000000..d821c912 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_24.png new file mode 100644 index 00000000..b5d87c1e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_25.png new file mode 100644 index 00000000..2cffe971 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_26.png new file mode 100644 index 00000000..41718a7e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_27.png new file mode 100644 index 00000000..442fdb14 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_30.png new file mode 100644 index 00000000..99c299eb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_31.png new file mode 100644 index 00000000..686e3084 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_32.png new file mode 100644 index 00000000..2ed87d8c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_33.png new file mode 100644 index 00000000..bc20108a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_34.png new file mode 100644 index 00000000..8f979f5b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_35.png new file mode 100644 index 00000000..dd40130c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_36.png new file mode 100644 index 00000000..0c2611cf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_37.png new file mode 100644 index 00000000..93536b6b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_38.png new file mode 100644 index 00000000..37f4b3d3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_47.png new file mode 100644 index 00000000..282f86e4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_48.png new file mode 100644 index 00000000..94ac5e81 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/55_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_10.png new file mode 100644 index 00000000..4805cd99 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_11.png new file mode 100644 index 00000000..9784bc83 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_12.png new file mode 100644 index 00000000..0e7b876d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_13.png new file mode 100644 index 00000000..9d958a37 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_14.png new file mode 100644 index 00000000..a2157c0b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_15.png new file mode 100644 index 00000000..1cf7801a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_16.png new file mode 100644 index 00000000..f887c63a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_17.png new file mode 100644 index 00000000..33f4d0aa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_18.png new file mode 100644 index 00000000..4967de56 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_19.png new file mode 100644 index 00000000..4cea6109 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_20.png new file mode 100644 index 00000000..92531c1c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_21.png new file mode 100644 index 00000000..efcc641f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_22.png new file mode 100644 index 00000000..2d968ad6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_23.png new file mode 100644 index 00000000..20808763 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_24.png new file mode 100644 index 00000000..1b652a98 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_25.png new file mode 100644 index 00000000..61e2868e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_26.png new file mode 100644 index 00000000..900c4dad Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_28.png new file mode 100644 index 00000000..37b548f8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_30.png new file mode 100644 index 00000000..60df223d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_31.png new file mode 100644 index 00000000..5ed23306 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_32.png new file mode 100644 index 00000000..3024c4a8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_33.png new file mode 100644 index 00000000..2b77e621 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_34.png new file mode 100644 index 00000000..a19074bf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_35.png new file mode 100644 index 00000000..99791ff2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_36.png new file mode 100644 index 00000000..3002336a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_37.png new file mode 100644 index 00000000..46df8c80 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_38.png new file mode 100644 index 00000000..7dd82468 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_39.png new file mode 100644 index 00000000..a01ef9ef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_47.png new file mode 100644 index 00000000..120bc37d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_48.png new file mode 100644 index 00000000..cb979dbb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/56_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_10.png new file mode 100644 index 00000000..4becac94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_11.png new file mode 100644 index 00000000..16ce9368 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_12.png new file mode 100644 index 00000000..4f024eaf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_13.png new file mode 100644 index 00000000..b80b21f9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_14.png new file mode 100644 index 00000000..e0d91962 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_15.png new file mode 100644 index 00000000..19000bca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_16.png new file mode 100644 index 00000000..fe0347bd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_17.png new file mode 100644 index 00000000..a23e2795 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_18.png new file mode 100644 index 00000000..6d5603cf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_19.png new file mode 100644 index 00000000..9bf84447 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_20.png new file mode 100644 index 00000000..9b41429f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_21.png new file mode 100644 index 00000000..73f98ddb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_22.png new file mode 100644 index 00000000..4a4b6b40 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_23.png new file mode 100644 index 00000000..09642380 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_24.png new file mode 100644 index 00000000..9d398675 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_25.png new file mode 100644 index 00000000..ae90b55c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_26.png new file mode 100644 index 00000000..cf094977 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_27.png new file mode 100644 index 00000000..4abea3bb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_28.png new file mode 100644 index 00000000..e48a3ff0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_29.png new file mode 100644 index 00000000..c1c574a8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_30.png new file mode 100644 index 00000000..7fe19682 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_32.png new file mode 100644 index 00000000..5219eb9f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_33.png new file mode 100644 index 00000000..19645c31 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_34.png new file mode 100644 index 00000000..4afda824 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_35.png new file mode 100644 index 00000000..d236c851 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_36.png new file mode 100644 index 00000000..da7465d5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_37.png new file mode 100644 index 00000000..16b6acc0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_38.png new file mode 100644 index 00000000..6b2938d8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_39.png new file mode 100644 index 00000000..748db3f5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_40.png new file mode 100644 index 00000000..de704c0c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_48.png new file mode 100644 index 00000000..e7ee61ce Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/57_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_10.png new file mode 100644 index 00000000..67fdcd1e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_11.png new file mode 100644 index 00000000..06a78b47 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_12.png new file mode 100644 index 00000000..77621b9a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_13.png new file mode 100644 index 00000000..a73aa384 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_14.png new file mode 100644 index 00000000..5215b413 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_15.png new file mode 100644 index 00000000..6c0da8ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_16.png new file mode 100644 index 00000000..997de796 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_17.png new file mode 100644 index 00000000..58c063a0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_18.png new file mode 100644 index 00000000..f1368556 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_19.png new file mode 100644 index 00000000..22d6cdd6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_22.png new file mode 100644 index 00000000..12041cbf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_23.png new file mode 100644 index 00000000..632d99a4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_30.png new file mode 100644 index 00000000..1945c74e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_32.png new file mode 100644 index 00000000..123a176a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_33.png new file mode 100644 index 00000000..20653f7d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_34.png new file mode 100644 index 00000000..889ccae7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_35.png new file mode 100644 index 00000000..4db9777b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_36.png new file mode 100644 index 00000000..678b1caf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_37.png new file mode 100644 index 00000000..11505d1d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_38.png new file mode 100644 index 00000000..61ff0bd3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_39.png new file mode 100644 index 00000000..62e7cb42 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_40.png new file mode 100644 index 00000000..6efec852 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_48.png new file mode 100644 index 00000000..1aecc5da Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_49.png new file mode 100644 index 00000000..7193fe59 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_9.png new file mode 100644 index 00000000..d7bbec2b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/58_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_10.png new file mode 100644 index 00000000..319d2b4e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_13.png new file mode 100644 index 00000000..a650f0d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_14.png new file mode 100644 index 00000000..5927bfea Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_15.png new file mode 100644 index 00000000..ae590193 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_16.png new file mode 100644 index 00000000..5851b1f4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_17.png new file mode 100644 index 00000000..fe69c3c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_18.png new file mode 100644 index 00000000..e700b37f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_19.png new file mode 100644 index 00000000..2a811595 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_20.png new file mode 100644 index 00000000..b7d85622 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_21.png new file mode 100644 index 00000000..b6e82c94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_22.png new file mode 100644 index 00000000..5798c838 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_27.png new file mode 100644 index 00000000..3fa81bf2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_30.png new file mode 100644 index 00000000..a4266ddf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_31.png new file mode 100644 index 00000000..332690fa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_32.png new file mode 100644 index 00000000..29274511 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_33.png new file mode 100644 index 00000000..6cc6cf15 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_34.png new file mode 100644 index 00000000..c213fcf3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_35.png new file mode 100644 index 00000000..e8cef261 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_36.png new file mode 100644 index 00000000..5f2ed3a3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_37.png new file mode 100644 index 00000000..1c76bf28 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_38.png new file mode 100644 index 00000000..0ff431ea Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_48.png new file mode 100644 index 00000000..d271d481 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_49.png new file mode 100644 index 00000000..21570fd8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_55.png new file mode 100644 index 00000000..8bbdaf39 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_56.png new file mode 100644 index 00000000..b54e5887 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_57.png new file mode 100644 index 00000000..1a6c4593 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_58.png new file mode 100644 index 00000000..8f3cf445 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_59.png new file mode 100644 index 00000000..9eb99f8a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_60.png new file mode 100644 index 00000000..df1c0503 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_61.png new file mode 100644 index 00000000..2face2e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_9.png new file mode 100644 index 00000000..ff3a97cb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/59_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_13.png new file mode 100644 index 00000000..047eb400 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_14.png new file mode 100644 index 00000000..c3120ef5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_15.png new file mode 100644 index 00000000..fc2fc408 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_16.png new file mode 100644 index 00000000..983647ae Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_17.png new file mode 100644 index 00000000..54f0fae0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_18.png new file mode 100644 index 00000000..08691de0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_19.png new file mode 100644 index 00000000..a848a2e9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_33.png new file mode 100644 index 00000000..2bf90fb3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_34.png new file mode 100644 index 00000000..29bc2d95 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_35.png new file mode 100644 index 00000000..04b1245d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_36.png new file mode 100644 index 00000000..a9089655 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_53.png new file mode 100644 index 00000000..f55fc599 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_54.png new file mode 100644 index 00000000..86310cbe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_56.png new file mode 100644 index 00000000..67525d93 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_57.png new file mode 100644 index 00000000..f220ba94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_58.png new file mode 100644 index 00000000..bc296417 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_63.png new file mode 100644 index 00000000..280baf68 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/5_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_10.png new file mode 100644 index 00000000..42dfc3d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_13.png new file mode 100644 index 00000000..160fc3fa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_14.png new file mode 100644 index 00000000..e3eb309e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_15.png new file mode 100644 index 00000000..1c78efcd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_16.png new file mode 100644 index 00000000..f6bb200d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_17.png new file mode 100644 index 00000000..92bd544e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_18.png new file mode 100644 index 00000000..a9fbb0aa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_19.png new file mode 100644 index 00000000..2f43622c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_20.png new file mode 100644 index 00000000..04c0cfc3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_21.png new file mode 100644 index 00000000..be180ffb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_29.png new file mode 100644 index 00000000..c6ab1736 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_30.png new file mode 100644 index 00000000..54fdfab1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_31.png new file mode 100644 index 00000000..adaeece2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_32.png new file mode 100644 index 00000000..621d4bee Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_33.png new file mode 100644 index 00000000..944aea05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_34.png new file mode 100644 index 00000000..86f46022 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_35.png new file mode 100644 index 00000000..62c95391 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_36.png new file mode 100644 index 00000000..b939c846 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_37.png new file mode 100644 index 00000000..33e1adeb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_38.png new file mode 100644 index 00000000..db76e880 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_43.png new file mode 100644 index 00000000..4ce5af91 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_47.png new file mode 100644 index 00000000..d014f85f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_49.png new file mode 100644 index 00000000..a594d0ca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_50.png new file mode 100644 index 00000000..7b1c54ef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_51.png new file mode 100644 index 00000000..21540df7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_52.png new file mode 100644 index 00000000..38d46b8d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_53.png new file mode 100644 index 00000000..0c3ba96b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_54.png new file mode 100644 index 00000000..3f8d6259 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_55.png new file mode 100644 index 00000000..a4bbe1c3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_56.png new file mode 100644 index 00000000..20b59e8e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_57.png new file mode 100644 index 00000000..45a002e8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_58.png new file mode 100644 index 00000000..e4cad468 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_59.png new file mode 100644 index 00000000..b3898b67 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_60.png new file mode 100644 index 00000000..2720c4a4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_61.png new file mode 100644 index 00000000..70ef580b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_62.png new file mode 100644 index 00000000..5dd09a1a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_63.png new file mode 100644 index 00000000..6f14dcc2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_9.png new file mode 100644 index 00000000..2de1dde2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/60_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_14.png new file mode 100644 index 00000000..8c529b1e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_15.png new file mode 100644 index 00000000..812c6af7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_16.png new file mode 100644 index 00000000..b669fa05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_17.png new file mode 100644 index 00000000..0616c40c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_18.png new file mode 100644 index 00000000..746e8c71 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_19.png new file mode 100644 index 00000000..04a0ec9e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_20.png new file mode 100644 index 00000000..9b081784 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_28.png new file mode 100644 index 00000000..55127898 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_29.png new file mode 100644 index 00000000..7d63bc91 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_30.png new file mode 100644 index 00000000..f751b571 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_31.png new file mode 100644 index 00000000..20151d86 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_32.png new file mode 100644 index 00000000..693c48cd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_33.png new file mode 100644 index 00000000..d9f17be7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_34.png new file mode 100644 index 00000000..c0f7dc9a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_35.png new file mode 100644 index 00000000..3561d179 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_36.png new file mode 100644 index 00000000..40e9e084 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_37.png new file mode 100644 index 00000000..a15ab545 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_40.png new file mode 100644 index 00000000..2701797b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_41.png new file mode 100644 index 00000000..a1487f6d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_42.png new file mode 100644 index 00000000..2df8ae73 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_43.png new file mode 100644 index 00000000..48ec8af5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_48.png new file mode 100644 index 00000000..485b4a95 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_49.png new file mode 100644 index 00000000..1e51aa4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_50.png new file mode 100644 index 00000000..1876fe31 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_51.png new file mode 100644 index 00000000..2cb0ef48 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_52.png new file mode 100644 index 00000000..46b3f4b5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_53.png new file mode 100644 index 00000000..a9cae282 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_54.png new file mode 100644 index 00000000..fab56307 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_55.png new file mode 100644 index 00000000..f4211f57 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_59.png new file mode 100644 index 00000000..eb421f0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_60.png new file mode 100644 index 00000000..04a8fc27 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_61.png new file mode 100644 index 00000000..92a7c80b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_62.png new file mode 100644 index 00000000..e1bd3bbd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_63.png new file mode 100644 index 00000000..446fae1b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/61_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_14.png new file mode 100644 index 00000000..0e2a4cf2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_15.png new file mode 100644 index 00000000..2294a9a0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_16.png new file mode 100644 index 00000000..f9593fa4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_17.png new file mode 100644 index 00000000..9267c7fd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_18.png new file mode 100644 index 00000000..508a2515 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_20.png new file mode 100644 index 00000000..3fdf1ae4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_21.png new file mode 100644 index 00000000..af96c1e8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_29.png new file mode 100644 index 00000000..c259e56d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_30.png new file mode 100644 index 00000000..d41c4828 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_31.png new file mode 100644 index 00000000..f96512e3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_32.png new file mode 100644 index 00000000..557ad4f5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_34.png new file mode 100644 index 00000000..62c8f72f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_35.png new file mode 100644 index 00000000..68b7b0fd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_36.png new file mode 100644 index 00000000..bf6b3c7d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_38.png new file mode 100644 index 00000000..df833c5d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_39.png new file mode 100644 index 00000000..c793f50f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_40.png new file mode 100644 index 00000000..61531758 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_41.png new file mode 100644 index 00000000..a7e3a7a9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_42.png new file mode 100644 index 00000000..ab1c9c6c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_43.png new file mode 100644 index 00000000..3afa3814 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_50.png new file mode 100644 index 00000000..ea3aa814 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_51.png new file mode 100644 index 00000000..cb9a014a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_54.png new file mode 100644 index 00000000..7180147c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_60.png new file mode 100644 index 00000000..f5383bf9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_61.png new file mode 100644 index 00000000..6e2ba3ec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_62.png new file mode 100644 index 00000000..ac509be6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_63.png new file mode 100644 index 00000000..b9541b4d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/62_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_13.png new file mode 100644 index 00000000..c289a586 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_14.png new file mode 100644 index 00000000..6e564ca4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_15.png new file mode 100644 index 00000000..124f1b25 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_16.png new file mode 100644 index 00000000..281750dc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_17.png new file mode 100644 index 00000000..060a49f6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_20.png new file mode 100644 index 00000000..693b3142 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_21.png new file mode 100644 index 00000000..54eb405e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_32.png new file mode 100644 index 00000000..38e6a892 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_33.png new file mode 100644 index 00000000..a77f374c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_34.png new file mode 100644 index 00000000..6665d698 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_35.png new file mode 100644 index 00000000..1a776e28 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_38.png new file mode 100644 index 00000000..47104723 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_39.png new file mode 100644 index 00000000..7a214c9a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_40.png new file mode 100644 index 00000000..db226142 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_41.png new file mode 100644 index 00000000..23a08d3f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_42.png new file mode 100644 index 00000000..09e2dcc9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_54.png new file mode 100644 index 00000000..7dfca1f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_61.png new file mode 100644 index 00000000..ec6bcb21 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_62.png new file mode 100644 index 00000000..39f84975 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_63.png new file mode 100644 index 00000000..fa00daef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/63_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_14.png new file mode 100644 index 00000000..9b9148c1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_15.png new file mode 100644 index 00000000..31562ae0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_16.png new file mode 100644 index 00000000..e9526152 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_17.png new file mode 100644 index 00000000..9bd76d7e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_18.png new file mode 100644 index 00000000..b4601600 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_33.png new file mode 100644 index 00000000..ab360c36 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_34.png new file mode 100644 index 00000000..87afc36e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_35.png new file mode 100644 index 00000000..77a5db80 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_37.png new file mode 100644 index 00000000..0cad9ab1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_52.png new file mode 100644 index 00000000..995cbe54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_53.png new file mode 100644 index 00000000..11b05834 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_54.png new file mode 100644 index 00000000..808f069c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/6_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_14.png new file mode 100644 index 00000000..06947c5b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_15.png new file mode 100644 index 00000000..f3860ca4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_16.png new file mode 100644 index 00000000..07ff3ab3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_17.png new file mode 100644 index 00000000..7d2b62fd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_18.png new file mode 100644 index 00000000..06e708ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_19.png new file mode 100644 index 00000000..81257cb4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_33.png new file mode 100644 index 00000000..2d69fdec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_34.png new file mode 100644 index 00000000..6b051419 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_35.png new file mode 100644 index 00000000..98e449db Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_36.png new file mode 100644 index 00000000..41c54977 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_52.png new file mode 100644 index 00000000..e7691c3d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_53.png new file mode 100644 index 00000000..7a2e06ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/7_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_14.png new file mode 100644 index 00000000..93f17598 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_15.png new file mode 100644 index 00000000..90cd7a71 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_16.png new file mode 100644 index 00000000..651e3d14 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_17.png new file mode 100644 index 00000000..a73a2d19 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_18.png new file mode 100644 index 00000000..14397d17 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_19.png new file mode 100644 index 00000000..9f47b007 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_20.png new file mode 100644 index 00000000..bd0889a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_21.png new file mode 100644 index 00000000..8efeaadb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_36.png new file mode 100644 index 00000000..5c51640e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_52.png new file mode 100644 index 00000000..e76b8164 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_53.png new file mode 100644 index 00000000..35ca84ec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/8_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_0.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_1.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_10.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_10.png new file mode 100644 index 00000000..2dfea499 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_11.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_11.png new file mode 100644 index 00000000..6a5e8056 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_12.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_12.png new file mode 100644 index 00000000..38252e6d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_13.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_13.png new file mode 100644 index 00000000..78c03d05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_14.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_14.png new file mode 100644 index 00000000..b8b8465a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_15.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_15.png new file mode 100644 index 00000000..c414cdea Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_16.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_16.png new file mode 100644 index 00000000..ed250c4b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_17.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_17.png new file mode 100644 index 00000000..96b7b7c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_18.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_18.png new file mode 100644 index 00000000..33a41714 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_19.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_19.png new file mode 100644 index 00000000..c7a42f1c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_2.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_20.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_20.png new file mode 100644 index 00000000..8d753d56 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_21.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_21.png new file mode 100644 index 00000000..67a22f14 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_22.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_22.png new file mode 100644 index 00000000..90e3aca9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_23.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_23.png new file mode 100644 index 00000000..3b062188 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_24.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_24.png new file mode 100644 index 00000000..a9265fbb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_25.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_26.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_27.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_28.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_29.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_3.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_30.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_31.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_32.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_33.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_34.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_35.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_36.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_36.png new file mode 100644 index 00000000..1878f753 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_37.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_38.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_39.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_4.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_40.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_41.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_42.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_43.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_44.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_45.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_46.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_47.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_48.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_49.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_5.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_50.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_51.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_51.png new file mode 100644 index 00000000..3eba440d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_52.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_52.png new file mode 100644 index 00000000..958ab9f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_53.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_53.png new file mode 100644 index 00000000..7fc6289e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_54.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_54.png new file mode 100644 index 00000000..98b2c6ac Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_55.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_56.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_57.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_58.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_59.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_6.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_60.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_61.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_62.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_63.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_7.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_8.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_9.png b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/maps/tiles/6/9_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/0/0_0.png b/nodejs-project/nodejs-project/src/maps/tiles/0/0_0.png new file mode 100644 index 00000000..78ff4105 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/0/0_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/1/0_0.png b/nodejs-project/nodejs-project/src/maps/tiles/1/0_0.png new file mode 100644 index 00000000..ffae9a6d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/1/0_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/1/0_1.png b/nodejs-project/nodejs-project/src/maps/tiles/1/0_1.png new file mode 100644 index 00000000..e7ecf077 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/1/0_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/1/1_0.png b/nodejs-project/nodejs-project/src/maps/tiles/1/1_0.png new file mode 100644 index 00000000..1007a265 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/1/1_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/1/1_1.png b/nodejs-project/nodejs-project/src/maps/tiles/1/1_1.png new file mode 100644 index 00000000..5409a6bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/1/1_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/2/0_0.png b/nodejs-project/nodejs-project/src/maps/tiles/2/0_0.png new file mode 100644 index 00000000..1c027fac Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/2/0_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/2/0_1.png b/nodejs-project/nodejs-project/src/maps/tiles/2/0_1.png new file mode 100644 index 00000000..6ad5bfb6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/2/0_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/2/0_2.png b/nodejs-project/nodejs-project/src/maps/tiles/2/0_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/2/0_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/2/0_3.png b/nodejs-project/nodejs-project/src/maps/tiles/2/0_3.png new file mode 100644 index 00000000..4a9408fd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/2/0_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/2/1_0.png b/nodejs-project/nodejs-project/src/maps/tiles/2/1_0.png new file mode 100644 index 00000000..2582394e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/2/1_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/2/1_1.png b/nodejs-project/nodejs-project/src/maps/tiles/2/1_1.png new file mode 100644 index 00000000..4b6c3702 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/2/1_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/2/1_2.png b/nodejs-project/nodejs-project/src/maps/tiles/2/1_2.png new file mode 100644 index 00000000..1c492db5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/2/1_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/2/1_3.png b/nodejs-project/nodejs-project/src/maps/tiles/2/1_3.png new file mode 100644 index 00000000..b8a26ae7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/2/1_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/2/2_0.png b/nodejs-project/nodejs-project/src/maps/tiles/2/2_0.png new file mode 100644 index 00000000..3329435b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/2/2_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/2/2_1.png b/nodejs-project/nodejs-project/src/maps/tiles/2/2_1.png new file mode 100644 index 00000000..1eeeb1dd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/2/2_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/2/2_2.png b/nodejs-project/nodejs-project/src/maps/tiles/2/2_2.png new file mode 100644 index 00000000..8f6e2a20 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/2/2_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/2/2_3.png b/nodejs-project/nodejs-project/src/maps/tiles/2/2_3.png new file mode 100644 index 00000000..34f28c4a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/2/2_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/2/3_0.png b/nodejs-project/nodejs-project/src/maps/tiles/2/3_0.png new file mode 100644 index 00000000..79e89b4d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/2/3_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/2/3_1.png b/nodejs-project/nodejs-project/src/maps/tiles/2/3_1.png new file mode 100644 index 00000000..e2c40a56 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/2/3_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/2/3_2.png b/nodejs-project/nodejs-project/src/maps/tiles/2/3_2.png new file mode 100644 index 00000000..5823053d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/2/3_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/2/3_3.png b/nodejs-project/nodejs-project/src/maps/tiles/2/3_3.png new file mode 100644 index 00000000..a054d9ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/2/3_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/0_0.png b/nodejs-project/nodejs-project/src/maps/tiles/3/0_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/0_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/0_1.png b/nodejs-project/nodejs-project/src/maps/tiles/3/0_1.png new file mode 100644 index 00000000..244c10ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/0_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/0_2.png b/nodejs-project/nodejs-project/src/maps/tiles/3/0_2.png new file mode 100644 index 00000000..f56ec992 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/0_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/0_3.png b/nodejs-project/nodejs-project/src/maps/tiles/3/0_3.png new file mode 100644 index 00000000..56468c45 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/0_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/0_4.png b/nodejs-project/nodejs-project/src/maps/tiles/3/0_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/0_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/0_5.png b/nodejs-project/nodejs-project/src/maps/tiles/3/0_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/0_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/0_6.png b/nodejs-project/nodejs-project/src/maps/tiles/3/0_6.png new file mode 100644 index 00000000..6869e81c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/0_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/0_7.png b/nodejs-project/nodejs-project/src/maps/tiles/3/0_7.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/0_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/1_0.png b/nodejs-project/nodejs-project/src/maps/tiles/3/1_0.png new file mode 100644 index 00000000..e54a6713 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/1_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/1_1.png b/nodejs-project/nodejs-project/src/maps/tiles/3/1_1.png new file mode 100644 index 00000000..3361820f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/1_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/1_2.png b/nodejs-project/nodejs-project/src/maps/tiles/3/1_2.png new file mode 100644 index 00000000..56e39d21 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/1_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/1_3.png b/nodejs-project/nodejs-project/src/maps/tiles/3/1_3.png new file mode 100644 index 00000000..c807542d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/1_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/1_4.png b/nodejs-project/nodejs-project/src/maps/tiles/3/1_4.png new file mode 100644 index 00000000..2978a5af Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/1_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/1_5.png b/nodejs-project/nodejs-project/src/maps/tiles/3/1_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/1_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/1_6.png b/nodejs-project/nodejs-project/src/maps/tiles/3/1_6.png new file mode 100644 index 00000000..8070b7c1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/1_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/1_7.png b/nodejs-project/nodejs-project/src/maps/tiles/3/1_7.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/1_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/2_0.png b/nodejs-project/nodejs-project/src/maps/tiles/3/2_0.png new file mode 100644 index 00000000..d0942092 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/2_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/2_1.png b/nodejs-project/nodejs-project/src/maps/tiles/3/2_1.png new file mode 100644 index 00000000..79e0ab25 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/2_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/2_2.png b/nodejs-project/nodejs-project/src/maps/tiles/3/2_2.png new file mode 100644 index 00000000..f588290e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/2_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/2_3.png b/nodejs-project/nodejs-project/src/maps/tiles/3/2_3.png new file mode 100644 index 00000000..c06a4f52 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/2_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/2_4.png b/nodejs-project/nodejs-project/src/maps/tiles/3/2_4.png new file mode 100644 index 00000000..6bdc74b2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/2_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/2_5.png b/nodejs-project/nodejs-project/src/maps/tiles/3/2_5.png new file mode 100644 index 00000000..9b698115 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/2_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/2_6.png b/nodejs-project/nodejs-project/src/maps/tiles/3/2_6.png new file mode 100644 index 00000000..7a2b6d19 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/2_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/2_7.png b/nodejs-project/nodejs-project/src/maps/tiles/3/2_7.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/2_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/3_0.png b/nodejs-project/nodejs-project/src/maps/tiles/3/3_0.png new file mode 100644 index 00000000..8fc82b7e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/3_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/3_1.png b/nodejs-project/nodejs-project/src/maps/tiles/3/3_1.png new file mode 100644 index 00000000..593e8ec6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/3_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/3_2.png b/nodejs-project/nodejs-project/src/maps/tiles/3/3_2.png new file mode 100644 index 00000000..08976ea5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/3_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/3_3.png b/nodejs-project/nodejs-project/src/maps/tiles/3/3_3.png new file mode 100644 index 00000000..35bd4512 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/3_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/3_4.png b/nodejs-project/nodejs-project/src/maps/tiles/3/3_4.png new file mode 100644 index 00000000..585ef08c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/3_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/3_5.png b/nodejs-project/nodejs-project/src/maps/tiles/3/3_5.png new file mode 100644 index 00000000..56bda4a7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/3_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/3_6.png b/nodejs-project/nodejs-project/src/maps/tiles/3/3_6.png new file mode 100644 index 00000000..7afdd9b1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/3_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/3_7.png b/nodejs-project/nodejs-project/src/maps/tiles/3/3_7.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/3_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/4_0.png b/nodejs-project/nodejs-project/src/maps/tiles/3/4_0.png new file mode 100644 index 00000000..1076dd85 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/4_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/4_1.png b/nodejs-project/nodejs-project/src/maps/tiles/3/4_1.png new file mode 100644 index 00000000..ce4321ac Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/4_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/4_2.png b/nodejs-project/nodejs-project/src/maps/tiles/3/4_2.png new file mode 100644 index 00000000..80740540 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/4_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/4_3.png b/nodejs-project/nodejs-project/src/maps/tiles/3/4_3.png new file mode 100644 index 00000000..a5875d04 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/4_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/4_4.png b/nodejs-project/nodejs-project/src/maps/tiles/3/4_4.png new file mode 100644 index 00000000..0feccf02 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/4_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/4_5.png b/nodejs-project/nodejs-project/src/maps/tiles/3/4_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/4_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/4_6.png b/nodejs-project/nodejs-project/src/maps/tiles/3/4_6.png new file mode 100644 index 00000000..96164ff8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/4_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/4_7.png b/nodejs-project/nodejs-project/src/maps/tiles/3/4_7.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/4_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/5_0.png b/nodejs-project/nodejs-project/src/maps/tiles/3/5_0.png new file mode 100644 index 00000000..147c7de6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/5_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/5_1.png b/nodejs-project/nodejs-project/src/maps/tiles/3/5_1.png new file mode 100644 index 00000000..c05169c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/5_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/5_2.png b/nodejs-project/nodejs-project/src/maps/tiles/3/5_2.png new file mode 100644 index 00000000..4a211077 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/5_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/5_3.png b/nodejs-project/nodejs-project/src/maps/tiles/3/5_3.png new file mode 100644 index 00000000..811749a8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/5_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/5_4.png b/nodejs-project/nodejs-project/src/maps/tiles/3/5_4.png new file mode 100644 index 00000000..a3c383e9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/5_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/5_5.png b/nodejs-project/nodejs-project/src/maps/tiles/3/5_5.png new file mode 100644 index 00000000..fe7d7474 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/5_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/5_6.png b/nodejs-project/nodejs-project/src/maps/tiles/3/5_6.png new file mode 100644 index 00000000..5e9a39f0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/5_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/5_7.png b/nodejs-project/nodejs-project/src/maps/tiles/3/5_7.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/5_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/6_0.png b/nodejs-project/nodejs-project/src/maps/tiles/3/6_0.png new file mode 100644 index 00000000..4ce65990 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/6_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/6_1.png b/nodejs-project/nodejs-project/src/maps/tiles/3/6_1.png new file mode 100644 index 00000000..d65d3609 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/6_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/6_2.png b/nodejs-project/nodejs-project/src/maps/tiles/3/6_2.png new file mode 100644 index 00000000..37d86f2a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/6_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/6_3.png b/nodejs-project/nodejs-project/src/maps/tiles/3/6_3.png new file mode 100644 index 00000000..4ebdb24a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/6_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/6_4.png b/nodejs-project/nodejs-project/src/maps/tiles/3/6_4.png new file mode 100644 index 00000000..1ededaab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/6_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/6_5.png b/nodejs-project/nodejs-project/src/maps/tiles/3/6_5.png new file mode 100644 index 00000000..75946f17 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/6_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/6_6.png b/nodejs-project/nodejs-project/src/maps/tiles/3/6_6.png new file mode 100644 index 00000000..4b84b1ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/6_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/6_7.png b/nodejs-project/nodejs-project/src/maps/tiles/3/6_7.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/6_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/7_0.png b/nodejs-project/nodejs-project/src/maps/tiles/3/7_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/7_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/7_1.png b/nodejs-project/nodejs-project/src/maps/tiles/3/7_1.png new file mode 100644 index 00000000..d9bf15c3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/7_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/7_2.png b/nodejs-project/nodejs-project/src/maps/tiles/3/7_2.png new file mode 100644 index 00000000..89833a63 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/7_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/7_3.png b/nodejs-project/nodejs-project/src/maps/tiles/3/7_3.png new file mode 100644 index 00000000..0dcc0841 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/7_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/7_4.png b/nodejs-project/nodejs-project/src/maps/tiles/3/7_4.png new file mode 100644 index 00000000..ff9d7269 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/7_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/7_5.png b/nodejs-project/nodejs-project/src/maps/tiles/3/7_5.png new file mode 100644 index 00000000..a7fa1e2b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/7_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/7_6.png b/nodejs-project/nodejs-project/src/maps/tiles/3/7_6.png new file mode 100644 index 00000000..9764caba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/7_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/3/7_7.png b/nodejs-project/nodejs-project/src/maps/tiles/3/7_7.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/3/7_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/0_0.png b/nodejs-project/nodejs-project/src/maps/tiles/4/0_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/0_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/0_1.png b/nodejs-project/nodejs-project/src/maps/tiles/4/0_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/0_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/0_10.png b/nodejs-project/nodejs-project/src/maps/tiles/4/0_10.png new file mode 100644 index 00000000..fec305eb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/0_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/0_11.png b/nodejs-project/nodejs-project/src/maps/tiles/4/0_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/0_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/0_12.png b/nodejs-project/nodejs-project/src/maps/tiles/4/0_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/0_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/0_13.png b/nodejs-project/nodejs-project/src/maps/tiles/4/0_13.png new file mode 100644 index 00000000..9cacd9c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/0_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/0_14.png b/nodejs-project/nodejs-project/src/maps/tiles/4/0_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/0_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/0_15.png b/nodejs-project/nodejs-project/src/maps/tiles/4/0_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/0_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/0_2.png b/nodejs-project/nodejs-project/src/maps/tiles/4/0_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/0_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/0_3.png b/nodejs-project/nodejs-project/src/maps/tiles/4/0_3.png new file mode 100644 index 00000000..e2f9c1fc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/0_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/0_4.png b/nodejs-project/nodejs-project/src/maps/tiles/4/0_4.png new file mode 100644 index 00000000..0d8941f8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/0_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/0_5.png b/nodejs-project/nodejs-project/src/maps/tiles/4/0_5.png new file mode 100644 index 00000000..1c5c78f4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/0_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/0_6.png b/nodejs-project/nodejs-project/src/maps/tiles/4/0_6.png new file mode 100644 index 00000000..13181b8e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/0_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/0_7.png b/nodejs-project/nodejs-project/src/maps/tiles/4/0_7.png new file mode 100644 index 00000000..80d64f9e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/0_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/0_8.png b/nodejs-project/nodejs-project/src/maps/tiles/4/0_8.png new file mode 100644 index 00000000..ffbfe1ac Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/0_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/0_9.png b/nodejs-project/nodejs-project/src/maps/tiles/4/0_9.png new file mode 100644 index 00000000..7f368d5a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/0_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/10_0.png b/nodejs-project/nodejs-project/src/maps/tiles/4/10_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/10_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/10_1.png b/nodejs-project/nodejs-project/src/maps/tiles/4/10_1.png new file mode 100644 index 00000000..893a10f8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/10_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/10_10.png b/nodejs-project/nodejs-project/src/maps/tiles/4/10_10.png new file mode 100644 index 00000000..1accb32f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/10_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/10_11.png b/nodejs-project/nodejs-project/src/maps/tiles/4/10_11.png new file mode 100644 index 00000000..ab861268 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/10_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/10_12.png b/nodejs-project/nodejs-project/src/maps/tiles/4/10_12.png new file mode 100644 index 00000000..9851a058 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/10_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/10_13.png b/nodejs-project/nodejs-project/src/maps/tiles/4/10_13.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/10_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/10_14.png b/nodejs-project/nodejs-project/src/maps/tiles/4/10_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/10_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/10_15.png b/nodejs-project/nodejs-project/src/maps/tiles/4/10_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/10_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/10_2.png b/nodejs-project/nodejs-project/src/maps/tiles/4/10_2.png new file mode 100644 index 00000000..5e9b8277 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/10_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/10_3.png b/nodejs-project/nodejs-project/src/maps/tiles/4/10_3.png new file mode 100644 index 00000000..3aa5462b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/10_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/10_4.png b/nodejs-project/nodejs-project/src/maps/tiles/4/10_4.png new file mode 100644 index 00000000..59c80398 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/10_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/10_5.png b/nodejs-project/nodejs-project/src/maps/tiles/4/10_5.png new file mode 100644 index 00000000..4de63dd5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/10_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/10_6.png b/nodejs-project/nodejs-project/src/maps/tiles/4/10_6.png new file mode 100644 index 00000000..c824c936 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/10_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/10_7.png b/nodejs-project/nodejs-project/src/maps/tiles/4/10_7.png new file mode 100644 index 00000000..1984c269 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/10_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/10_8.png b/nodejs-project/nodejs-project/src/maps/tiles/4/10_8.png new file mode 100644 index 00000000..3939e01f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/10_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/10_9.png b/nodejs-project/nodejs-project/src/maps/tiles/4/10_9.png new file mode 100644 index 00000000..3c6a62b2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/10_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/11_0.png b/nodejs-project/nodejs-project/src/maps/tiles/4/11_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/11_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/11_1.png b/nodejs-project/nodejs-project/src/maps/tiles/4/11_1.png new file mode 100644 index 00000000..e1007adf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/11_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/11_10.png b/nodejs-project/nodejs-project/src/maps/tiles/4/11_10.png new file mode 100644 index 00000000..69afdfb6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/11_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/11_11.png b/nodejs-project/nodejs-project/src/maps/tiles/4/11_11.png new file mode 100644 index 00000000..902bc9db Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/11_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/11_12.png b/nodejs-project/nodejs-project/src/maps/tiles/4/11_12.png new file mode 100644 index 00000000..77b69017 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/11_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/11_13.png b/nodejs-project/nodejs-project/src/maps/tiles/4/11_13.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/11_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/11_14.png b/nodejs-project/nodejs-project/src/maps/tiles/4/11_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/11_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/11_15.png b/nodejs-project/nodejs-project/src/maps/tiles/4/11_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/11_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/11_2.png b/nodejs-project/nodejs-project/src/maps/tiles/4/11_2.png new file mode 100644 index 00000000..3079cdda Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/11_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/11_3.png b/nodejs-project/nodejs-project/src/maps/tiles/4/11_3.png new file mode 100644 index 00000000..0626a1fb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/11_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/11_4.png b/nodejs-project/nodejs-project/src/maps/tiles/4/11_4.png new file mode 100644 index 00000000..79061cad Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/11_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/11_5.png b/nodejs-project/nodejs-project/src/maps/tiles/4/11_5.png new file mode 100644 index 00000000..8d0ae5bb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/11_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/11_6.png b/nodejs-project/nodejs-project/src/maps/tiles/4/11_6.png new file mode 100644 index 00000000..dc38f07c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/11_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/11_7.png b/nodejs-project/nodejs-project/src/maps/tiles/4/11_7.png new file mode 100644 index 00000000..85e3f108 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/11_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/11_8.png b/nodejs-project/nodejs-project/src/maps/tiles/4/11_8.png new file mode 100644 index 00000000..e2a982f0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/11_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/11_9.png b/nodejs-project/nodejs-project/src/maps/tiles/4/11_9.png new file mode 100644 index 00000000..4ed54807 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/11_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/12_0.png b/nodejs-project/nodejs-project/src/maps/tiles/4/12_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/12_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/12_1.png b/nodejs-project/nodejs-project/src/maps/tiles/4/12_1.png new file mode 100644 index 00000000..bf7ff3d8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/12_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/12_10.png b/nodejs-project/nodejs-project/src/maps/tiles/4/12_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/12_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/12_11.png b/nodejs-project/nodejs-project/src/maps/tiles/4/12_11.png new file mode 100644 index 00000000..22bdb640 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/12_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/12_12.png b/nodejs-project/nodejs-project/src/maps/tiles/4/12_12.png new file mode 100644 index 00000000..35b281a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/12_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/12_13.png b/nodejs-project/nodejs-project/src/maps/tiles/4/12_13.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/12_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/12_14.png b/nodejs-project/nodejs-project/src/maps/tiles/4/12_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/12_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/12_15.png b/nodejs-project/nodejs-project/src/maps/tiles/4/12_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/12_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/12_2.png b/nodejs-project/nodejs-project/src/maps/tiles/4/12_2.png new file mode 100644 index 00000000..5c590a4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/12_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/12_3.png b/nodejs-project/nodejs-project/src/maps/tiles/4/12_3.png new file mode 100644 index 00000000..5d9ef3ec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/12_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/12_4.png b/nodejs-project/nodejs-project/src/maps/tiles/4/12_4.png new file mode 100644 index 00000000..aca0eafc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/12_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/12_5.png b/nodejs-project/nodejs-project/src/maps/tiles/4/12_5.png new file mode 100644 index 00000000..36ee0d2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/12_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/12_6.png b/nodejs-project/nodejs-project/src/maps/tiles/4/12_6.png new file mode 100644 index 00000000..0c920efb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/12_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/12_7.png b/nodejs-project/nodejs-project/src/maps/tiles/4/12_7.png new file mode 100644 index 00000000..364c7266 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/12_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/12_8.png b/nodejs-project/nodejs-project/src/maps/tiles/4/12_8.png new file mode 100644 index 00000000..dfcf0e88 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/12_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/12_9.png b/nodejs-project/nodejs-project/src/maps/tiles/4/12_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/12_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/13_0.png b/nodejs-project/nodejs-project/src/maps/tiles/4/13_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/13_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/13_1.png b/nodejs-project/nodejs-project/src/maps/tiles/4/13_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/13_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/13_10.png b/nodejs-project/nodejs-project/src/maps/tiles/4/13_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/13_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/13_11.png b/nodejs-project/nodejs-project/src/maps/tiles/4/13_11.png new file mode 100644 index 00000000..17b52c61 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/13_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/13_12.png b/nodejs-project/nodejs-project/src/maps/tiles/4/13_12.png new file mode 100644 index 00000000..1a5645ae Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/13_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/13_13.png b/nodejs-project/nodejs-project/src/maps/tiles/4/13_13.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/13_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/13_14.png b/nodejs-project/nodejs-project/src/maps/tiles/4/13_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/13_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/13_15.png b/nodejs-project/nodejs-project/src/maps/tiles/4/13_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/13_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/13_2.png b/nodejs-project/nodejs-project/src/maps/tiles/4/13_2.png new file mode 100644 index 00000000..a58ed73c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/13_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/13_3.png b/nodejs-project/nodejs-project/src/maps/tiles/4/13_3.png new file mode 100644 index 00000000..0eeb0eb8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/13_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/13_4.png b/nodejs-project/nodejs-project/src/maps/tiles/4/13_4.png new file mode 100644 index 00000000..eada8e73 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/13_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/13_5.png b/nodejs-project/nodejs-project/src/maps/tiles/4/13_5.png new file mode 100644 index 00000000..0581a275 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/13_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/13_6.png b/nodejs-project/nodejs-project/src/maps/tiles/4/13_6.png new file mode 100644 index 00000000..50880c3a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/13_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/13_7.png b/nodejs-project/nodejs-project/src/maps/tiles/4/13_7.png new file mode 100644 index 00000000..9d748765 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/13_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/13_8.png b/nodejs-project/nodejs-project/src/maps/tiles/4/13_8.png new file mode 100644 index 00000000..0c9fabc9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/13_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/13_9.png b/nodejs-project/nodejs-project/src/maps/tiles/4/13_9.png new file mode 100644 index 00000000..f24b1ffb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/13_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/14_0.png b/nodejs-project/nodejs-project/src/maps/tiles/4/14_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/14_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/14_1.png b/nodejs-project/nodejs-project/src/maps/tiles/4/14_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/14_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/14_10.png b/nodejs-project/nodejs-project/src/maps/tiles/4/14_10.png new file mode 100644 index 00000000..62b185cf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/14_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/14_11.png b/nodejs-project/nodejs-project/src/maps/tiles/4/14_11.png new file mode 100644 index 00000000..e33c9011 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/14_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/14_12.png b/nodejs-project/nodejs-project/src/maps/tiles/4/14_12.png new file mode 100644 index 00000000..25acc563 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/14_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/14_13.png b/nodejs-project/nodejs-project/src/maps/tiles/4/14_13.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/14_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/14_14.png b/nodejs-project/nodejs-project/src/maps/tiles/4/14_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/14_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/14_15.png b/nodejs-project/nodejs-project/src/maps/tiles/4/14_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/14_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/14_2.png b/nodejs-project/nodejs-project/src/maps/tiles/4/14_2.png new file mode 100644 index 00000000..0d5f077a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/14_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/14_3.png b/nodejs-project/nodejs-project/src/maps/tiles/4/14_3.png new file mode 100644 index 00000000..45f8bc3a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/14_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/14_4.png b/nodejs-project/nodejs-project/src/maps/tiles/4/14_4.png new file mode 100644 index 00000000..36900463 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/14_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/14_5.png b/nodejs-project/nodejs-project/src/maps/tiles/4/14_5.png new file mode 100644 index 00000000..8344cd39 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/14_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/14_6.png b/nodejs-project/nodejs-project/src/maps/tiles/4/14_6.png new file mode 100644 index 00000000..10976bbe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/14_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/14_7.png b/nodejs-project/nodejs-project/src/maps/tiles/4/14_7.png new file mode 100644 index 00000000..617e93c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/14_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/14_8.png b/nodejs-project/nodejs-project/src/maps/tiles/4/14_8.png new file mode 100644 index 00000000..67af0ff1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/14_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/14_9.png b/nodejs-project/nodejs-project/src/maps/tiles/4/14_9.png new file mode 100644 index 00000000..d1d8fa21 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/14_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/15_0.png b/nodejs-project/nodejs-project/src/maps/tiles/4/15_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/15_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/15_1.png b/nodejs-project/nodejs-project/src/maps/tiles/4/15_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/15_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/15_10.png b/nodejs-project/nodejs-project/src/maps/tiles/4/15_10.png new file mode 100644 index 00000000..5d853710 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/15_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/15_11.png b/nodejs-project/nodejs-project/src/maps/tiles/4/15_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/15_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/15_12.png b/nodejs-project/nodejs-project/src/maps/tiles/4/15_12.png new file mode 100644 index 00000000..8bcd6689 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/15_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/15_13.png b/nodejs-project/nodejs-project/src/maps/tiles/4/15_13.png new file mode 100644 index 00000000..2f656231 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/15_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/15_14.png b/nodejs-project/nodejs-project/src/maps/tiles/4/15_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/15_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/15_15.png b/nodejs-project/nodejs-project/src/maps/tiles/4/15_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/15_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/15_2.png b/nodejs-project/nodejs-project/src/maps/tiles/4/15_2.png new file mode 100644 index 00000000..69fa0aa8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/15_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/15_3.png b/nodejs-project/nodejs-project/src/maps/tiles/4/15_3.png new file mode 100644 index 00000000..7b5736dc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/15_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/15_4.png b/nodejs-project/nodejs-project/src/maps/tiles/4/15_4.png new file mode 100644 index 00000000..f5f8ea12 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/15_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/15_5.png b/nodejs-project/nodejs-project/src/maps/tiles/4/15_5.png new file mode 100644 index 00000000..7aebcd03 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/15_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/15_6.png b/nodejs-project/nodejs-project/src/maps/tiles/4/15_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/15_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/15_7.png b/nodejs-project/nodejs-project/src/maps/tiles/4/15_7.png new file mode 100644 index 00000000..fbdca038 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/15_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/15_8.png b/nodejs-project/nodejs-project/src/maps/tiles/4/15_8.png new file mode 100644 index 00000000..1d23a201 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/15_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/15_9.png b/nodejs-project/nodejs-project/src/maps/tiles/4/15_9.png new file mode 100644 index 00000000..a28874fc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/15_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/1_0.png b/nodejs-project/nodejs-project/src/maps/tiles/4/1_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/1_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/1_1.png b/nodejs-project/nodejs-project/src/maps/tiles/4/1_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/1_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/1_10.png b/nodejs-project/nodejs-project/src/maps/tiles/4/1_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/1_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/1_11.png b/nodejs-project/nodejs-project/src/maps/tiles/4/1_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/1_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/1_12.png b/nodejs-project/nodejs-project/src/maps/tiles/4/1_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/1_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/1_13.png b/nodejs-project/nodejs-project/src/maps/tiles/4/1_13.png new file mode 100644 index 00000000..17d6623d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/1_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/1_14.png b/nodejs-project/nodejs-project/src/maps/tiles/4/1_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/1_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/1_15.png b/nodejs-project/nodejs-project/src/maps/tiles/4/1_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/1_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/1_2.png b/nodejs-project/nodejs-project/src/maps/tiles/4/1_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/1_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/1_3.png b/nodejs-project/nodejs-project/src/maps/tiles/4/1_3.png new file mode 100644 index 00000000..4a6545a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/1_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/1_4.png b/nodejs-project/nodejs-project/src/maps/tiles/4/1_4.png new file mode 100644 index 00000000..d28c8ca3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/1_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/1_5.png b/nodejs-project/nodejs-project/src/maps/tiles/4/1_5.png new file mode 100644 index 00000000..f156db4e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/1_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/1_6.png b/nodejs-project/nodejs-project/src/maps/tiles/4/1_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/1_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/1_7.png b/nodejs-project/nodejs-project/src/maps/tiles/4/1_7.png new file mode 100644 index 00000000..5920aa28 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/1_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/1_8.png b/nodejs-project/nodejs-project/src/maps/tiles/4/1_8.png new file mode 100644 index 00000000..13ae4317 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/1_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/1_9.png b/nodejs-project/nodejs-project/src/maps/tiles/4/1_9.png new file mode 100644 index 00000000..7179d5b6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/1_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/2_0.png b/nodejs-project/nodejs-project/src/maps/tiles/4/2_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/2_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/2_1.png b/nodejs-project/nodejs-project/src/maps/tiles/4/2_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/2_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/2_10.png b/nodejs-project/nodejs-project/src/maps/tiles/4/2_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/2_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/2_11.png b/nodejs-project/nodejs-project/src/maps/tiles/4/2_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/2_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/2_12.png b/nodejs-project/nodejs-project/src/maps/tiles/4/2_12.png new file mode 100644 index 00000000..49236a05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/2_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/2_13.png b/nodejs-project/nodejs-project/src/maps/tiles/4/2_13.png new file mode 100644 index 00000000..945fe9e5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/2_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/2_14.png b/nodejs-project/nodejs-project/src/maps/tiles/4/2_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/2_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/2_15.png b/nodejs-project/nodejs-project/src/maps/tiles/4/2_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/2_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/2_2.png b/nodejs-project/nodejs-project/src/maps/tiles/4/2_2.png new file mode 100644 index 00000000..27ef3b5a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/2_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/2_3.png b/nodejs-project/nodejs-project/src/maps/tiles/4/2_3.png new file mode 100644 index 00000000..9f96f4ea Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/2_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/2_4.png b/nodejs-project/nodejs-project/src/maps/tiles/4/2_4.png new file mode 100644 index 00000000..85f6a9c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/2_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/2_5.png b/nodejs-project/nodejs-project/src/maps/tiles/4/2_5.png new file mode 100644 index 00000000..b8927869 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/2_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/2_6.png b/nodejs-project/nodejs-project/src/maps/tiles/4/2_6.png new file mode 100644 index 00000000..c6b8a97e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/2_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/2_7.png b/nodejs-project/nodejs-project/src/maps/tiles/4/2_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/2_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/2_8.png b/nodejs-project/nodejs-project/src/maps/tiles/4/2_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/2_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/2_9.png b/nodejs-project/nodejs-project/src/maps/tiles/4/2_9.png new file mode 100644 index 00000000..4622bcb1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/2_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/3_0.png b/nodejs-project/nodejs-project/src/maps/tiles/4/3_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/3_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/3_1.png b/nodejs-project/nodejs-project/src/maps/tiles/4/3_1.png new file mode 100644 index 00000000..56d47731 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/3_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/3_10.png b/nodejs-project/nodejs-project/src/maps/tiles/4/3_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/3_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/3_11.png b/nodejs-project/nodejs-project/src/maps/tiles/4/3_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/3_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/3_12.png b/nodejs-project/nodejs-project/src/maps/tiles/4/3_12.png new file mode 100644 index 00000000..4b15f2d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/3_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/3_13.png b/nodejs-project/nodejs-project/src/maps/tiles/4/3_13.png new file mode 100644 index 00000000..f3ef554e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/3_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/3_14.png b/nodejs-project/nodejs-project/src/maps/tiles/4/3_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/3_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/3_15.png b/nodejs-project/nodejs-project/src/maps/tiles/4/3_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/3_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/3_2.png b/nodejs-project/nodejs-project/src/maps/tiles/4/3_2.png new file mode 100644 index 00000000..77b03b2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/3_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/3_3.png b/nodejs-project/nodejs-project/src/maps/tiles/4/3_3.png new file mode 100644 index 00000000..b3704ace Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/3_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/3_4.png b/nodejs-project/nodejs-project/src/maps/tiles/4/3_4.png new file mode 100644 index 00000000..d677c3db Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/3_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/3_5.png b/nodejs-project/nodejs-project/src/maps/tiles/4/3_5.png new file mode 100644 index 00000000..450ec9de Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/3_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/3_6.png b/nodejs-project/nodejs-project/src/maps/tiles/4/3_6.png new file mode 100644 index 00000000..6c939ca0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/3_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/3_7.png b/nodejs-project/nodejs-project/src/maps/tiles/4/3_7.png new file mode 100644 index 00000000..fa4e3f6f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/3_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/3_8.png b/nodejs-project/nodejs-project/src/maps/tiles/4/3_8.png new file mode 100644 index 00000000..c6148cce Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/3_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/3_9.png b/nodejs-project/nodejs-project/src/maps/tiles/4/3_9.png new file mode 100644 index 00000000..a79922b6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/3_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/4_0.png b/nodejs-project/nodejs-project/src/maps/tiles/4/4_0.png new file mode 100644 index 00000000..66001f7a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/4_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/4_1.png b/nodejs-project/nodejs-project/src/maps/tiles/4/4_1.png new file mode 100644 index 00000000..951df6f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/4_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/4_10.png b/nodejs-project/nodejs-project/src/maps/tiles/4/4_10.png new file mode 100644 index 00000000..3a73a1f9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/4_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/4_11.png b/nodejs-project/nodejs-project/src/maps/tiles/4/4_11.png new file mode 100644 index 00000000..e1c7e6db Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/4_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/4_12.png b/nodejs-project/nodejs-project/src/maps/tiles/4/4_12.png new file mode 100644 index 00000000..e832fd19 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/4_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/4_13.png b/nodejs-project/nodejs-project/src/maps/tiles/4/4_13.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/4_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/4_14.png b/nodejs-project/nodejs-project/src/maps/tiles/4/4_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/4_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/4_15.png b/nodejs-project/nodejs-project/src/maps/tiles/4/4_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/4_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/4_2.png b/nodejs-project/nodejs-project/src/maps/tiles/4/4_2.png new file mode 100644 index 00000000..34b7032a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/4_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/4_3.png b/nodejs-project/nodejs-project/src/maps/tiles/4/4_3.png new file mode 100644 index 00000000..6765234c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/4_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/4_4.png b/nodejs-project/nodejs-project/src/maps/tiles/4/4_4.png new file mode 100644 index 00000000..7cdf13b8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/4_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/4_5.png b/nodejs-project/nodejs-project/src/maps/tiles/4/4_5.png new file mode 100644 index 00000000..2ab493b4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/4_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/4_6.png b/nodejs-project/nodejs-project/src/maps/tiles/4/4_6.png new file mode 100644 index 00000000..536b5628 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/4_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/4_7.png b/nodejs-project/nodejs-project/src/maps/tiles/4/4_7.png new file mode 100644 index 00000000..060aaf98 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/4_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/4_8.png b/nodejs-project/nodejs-project/src/maps/tiles/4/4_8.png new file mode 100644 index 00000000..73f90df8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/4_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/4_9.png b/nodejs-project/nodejs-project/src/maps/tiles/4/4_9.png new file mode 100644 index 00000000..8c9ea25b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/4_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/5_0.png b/nodejs-project/nodejs-project/src/maps/tiles/4/5_0.png new file mode 100644 index 00000000..a5579fca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/5_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/5_1.png b/nodejs-project/nodejs-project/src/maps/tiles/4/5_1.png new file mode 100644 index 00000000..f56d0840 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/5_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/5_10.png b/nodejs-project/nodejs-project/src/maps/tiles/4/5_10.png new file mode 100644 index 00000000..02fc1d1f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/5_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/5_11.png b/nodejs-project/nodejs-project/src/maps/tiles/4/5_11.png new file mode 100644 index 00000000..0a4ca3a0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/5_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/5_12.png b/nodejs-project/nodejs-project/src/maps/tiles/4/5_12.png new file mode 100644 index 00000000..e1e9ca28 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/5_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/5_13.png b/nodejs-project/nodejs-project/src/maps/tiles/4/5_13.png new file mode 100644 index 00000000..e083c618 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/5_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/5_14.png b/nodejs-project/nodejs-project/src/maps/tiles/4/5_14.png new file mode 100644 index 00000000..c55a9323 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/5_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/5_15.png b/nodejs-project/nodejs-project/src/maps/tiles/4/5_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/5_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/5_2.png b/nodejs-project/nodejs-project/src/maps/tiles/4/5_2.png new file mode 100644 index 00000000..4e3c7049 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/5_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/5_3.png b/nodejs-project/nodejs-project/src/maps/tiles/4/5_3.png new file mode 100644 index 00000000..49a63382 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/5_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/5_4.png b/nodejs-project/nodejs-project/src/maps/tiles/4/5_4.png new file mode 100644 index 00000000..3501a76b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/5_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/5_5.png b/nodejs-project/nodejs-project/src/maps/tiles/4/5_5.png new file mode 100644 index 00000000..5373c5ac Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/5_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/5_6.png b/nodejs-project/nodejs-project/src/maps/tiles/4/5_6.png new file mode 100644 index 00000000..2c21d336 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/5_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/5_7.png b/nodejs-project/nodejs-project/src/maps/tiles/4/5_7.png new file mode 100644 index 00000000..c3fe72fb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/5_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/5_8.png b/nodejs-project/nodejs-project/src/maps/tiles/4/5_8.png new file mode 100644 index 00000000..46974b54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/5_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/5_9.png b/nodejs-project/nodejs-project/src/maps/tiles/4/5_9.png new file mode 100644 index 00000000..b40e21c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/5_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/6_0.png b/nodejs-project/nodejs-project/src/maps/tiles/4/6_0.png new file mode 100644 index 00000000..11f5d39c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/6_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/6_1.png b/nodejs-project/nodejs-project/src/maps/tiles/4/6_1.png new file mode 100644 index 00000000..47d667fa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/6_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/6_10.png b/nodejs-project/nodejs-project/src/maps/tiles/4/6_10.png new file mode 100644 index 00000000..f526a08e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/6_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/6_11.png b/nodejs-project/nodejs-project/src/maps/tiles/4/6_11.png new file mode 100644 index 00000000..0bddaabc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/6_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/6_12.png b/nodejs-project/nodejs-project/src/maps/tiles/4/6_12.png new file mode 100644 index 00000000..8b541084 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/6_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/6_13.png b/nodejs-project/nodejs-project/src/maps/tiles/4/6_13.png new file mode 100644 index 00000000..71eb9c46 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/6_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/6_14.png b/nodejs-project/nodejs-project/src/maps/tiles/4/6_14.png new file mode 100644 index 00000000..f7540afe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/6_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/6_15.png b/nodejs-project/nodejs-project/src/maps/tiles/4/6_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/6_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/6_2.png b/nodejs-project/nodejs-project/src/maps/tiles/4/6_2.png new file mode 100644 index 00000000..c72abfcf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/6_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/6_3.png b/nodejs-project/nodejs-project/src/maps/tiles/4/6_3.png new file mode 100644 index 00000000..f05e136a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/6_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/6_4.png b/nodejs-project/nodejs-project/src/maps/tiles/4/6_4.png new file mode 100644 index 00000000..df700411 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/6_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/6_5.png b/nodejs-project/nodejs-project/src/maps/tiles/4/6_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/6_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/6_6.png b/nodejs-project/nodejs-project/src/maps/tiles/4/6_6.png new file mode 100644 index 00000000..472f5296 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/6_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/6_7.png b/nodejs-project/nodejs-project/src/maps/tiles/4/6_7.png new file mode 100644 index 00000000..b0f9bbf5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/6_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/6_8.png b/nodejs-project/nodejs-project/src/maps/tiles/4/6_8.png new file mode 100644 index 00000000..ccaeb24e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/6_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/6_9.png b/nodejs-project/nodejs-project/src/maps/tiles/4/6_9.png new file mode 100644 index 00000000..071982c2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/6_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/7_0.png b/nodejs-project/nodejs-project/src/maps/tiles/4/7_0.png new file mode 100644 index 00000000..ae116df8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/7_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/7_1.png b/nodejs-project/nodejs-project/src/maps/tiles/4/7_1.png new file mode 100644 index 00000000..e4d2fbba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/7_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/7_10.png b/nodejs-project/nodejs-project/src/maps/tiles/4/7_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/7_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/7_11.png b/nodejs-project/nodejs-project/src/maps/tiles/4/7_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/7_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/7_12.png b/nodejs-project/nodejs-project/src/maps/tiles/4/7_12.png new file mode 100644 index 00000000..38d8fd4d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/7_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/7_13.png b/nodejs-project/nodejs-project/src/maps/tiles/4/7_13.png new file mode 100644 index 00000000..7ccf00d5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/7_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/7_14.png b/nodejs-project/nodejs-project/src/maps/tiles/4/7_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/7_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/7_15.png b/nodejs-project/nodejs-project/src/maps/tiles/4/7_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/7_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/7_2.png b/nodejs-project/nodejs-project/src/maps/tiles/4/7_2.png new file mode 100644 index 00000000..605def8e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/7_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/7_3.png b/nodejs-project/nodejs-project/src/maps/tiles/4/7_3.png new file mode 100644 index 00000000..ffaea960 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/7_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/7_4.png b/nodejs-project/nodejs-project/src/maps/tiles/4/7_4.png new file mode 100644 index 00000000..21e74338 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/7_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/7_5.png b/nodejs-project/nodejs-project/src/maps/tiles/4/7_5.png new file mode 100644 index 00000000..3ad1d602 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/7_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/7_6.png b/nodejs-project/nodejs-project/src/maps/tiles/4/7_6.png new file mode 100644 index 00000000..5957be55 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/7_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/7_7.png b/nodejs-project/nodejs-project/src/maps/tiles/4/7_7.png new file mode 100644 index 00000000..7cca4290 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/7_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/7_8.png b/nodejs-project/nodejs-project/src/maps/tiles/4/7_8.png new file mode 100644 index 00000000..250081c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/7_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/7_9.png b/nodejs-project/nodejs-project/src/maps/tiles/4/7_9.png new file mode 100644 index 00000000..b1bef5c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/7_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/8_0.png b/nodejs-project/nodejs-project/src/maps/tiles/4/8_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/8_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/8_1.png b/nodejs-project/nodejs-project/src/maps/tiles/4/8_1.png new file mode 100644 index 00000000..520f5be2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/8_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/8_10.png b/nodejs-project/nodejs-project/src/maps/tiles/4/8_10.png new file mode 100644 index 00000000..a1e1410a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/8_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/8_11.png b/nodejs-project/nodejs-project/src/maps/tiles/4/8_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/8_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/8_12.png b/nodejs-project/nodejs-project/src/maps/tiles/4/8_12.png new file mode 100644 index 00000000..f698cf28 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/8_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/8_13.png b/nodejs-project/nodejs-project/src/maps/tiles/4/8_13.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/8_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/8_14.png b/nodejs-project/nodejs-project/src/maps/tiles/4/8_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/8_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/8_15.png b/nodejs-project/nodejs-project/src/maps/tiles/4/8_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/8_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/8_2.png b/nodejs-project/nodejs-project/src/maps/tiles/4/8_2.png new file mode 100644 index 00000000..4bdd57da Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/8_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/8_3.png b/nodejs-project/nodejs-project/src/maps/tiles/4/8_3.png new file mode 100644 index 00000000..0498fbca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/8_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/8_4.png b/nodejs-project/nodejs-project/src/maps/tiles/4/8_4.png new file mode 100644 index 00000000..24888191 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/8_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/8_5.png b/nodejs-project/nodejs-project/src/maps/tiles/4/8_5.png new file mode 100644 index 00000000..c8f6acc2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/8_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/8_6.png b/nodejs-project/nodejs-project/src/maps/tiles/4/8_6.png new file mode 100644 index 00000000..c384ea48 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/8_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/8_7.png b/nodejs-project/nodejs-project/src/maps/tiles/4/8_7.png new file mode 100644 index 00000000..51b9a540 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/8_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/8_8.png b/nodejs-project/nodejs-project/src/maps/tiles/4/8_8.png new file mode 100644 index 00000000..89b94ef7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/8_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/8_9.png b/nodejs-project/nodejs-project/src/maps/tiles/4/8_9.png new file mode 100644 index 00000000..74527af1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/8_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/9_0.png b/nodejs-project/nodejs-project/src/maps/tiles/4/9_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/9_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/9_1.png b/nodejs-project/nodejs-project/src/maps/tiles/4/9_1.png new file mode 100644 index 00000000..d1645af0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/9_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/9_10.png b/nodejs-project/nodejs-project/src/maps/tiles/4/9_10.png new file mode 100644 index 00000000..d268264d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/9_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/9_11.png b/nodejs-project/nodejs-project/src/maps/tiles/4/9_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/9_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/9_12.png b/nodejs-project/nodejs-project/src/maps/tiles/4/9_12.png new file mode 100644 index 00000000..77f8986d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/9_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/9_13.png b/nodejs-project/nodejs-project/src/maps/tiles/4/9_13.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/9_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/9_14.png b/nodejs-project/nodejs-project/src/maps/tiles/4/9_14.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/9_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/9_15.png b/nodejs-project/nodejs-project/src/maps/tiles/4/9_15.png new file mode 100644 index 00000000..ba573657 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/9_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/9_2.png b/nodejs-project/nodejs-project/src/maps/tiles/4/9_2.png new file mode 100644 index 00000000..b367c420 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/9_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/9_3.png b/nodejs-project/nodejs-project/src/maps/tiles/4/9_3.png new file mode 100644 index 00000000..f256c788 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/9_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/9_4.png b/nodejs-project/nodejs-project/src/maps/tiles/4/9_4.png new file mode 100644 index 00000000..f8e83986 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/9_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/9_5.png b/nodejs-project/nodejs-project/src/maps/tiles/4/9_5.png new file mode 100644 index 00000000..213f8645 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/9_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/9_6.png b/nodejs-project/nodejs-project/src/maps/tiles/4/9_6.png new file mode 100644 index 00000000..75f2843b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/9_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/9_7.png b/nodejs-project/nodejs-project/src/maps/tiles/4/9_7.png new file mode 100644 index 00000000..6f3f0243 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/9_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/9_8.png b/nodejs-project/nodejs-project/src/maps/tiles/4/9_8.png new file mode 100644 index 00000000..7930ff8f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/9_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/4/9_9.png b/nodejs-project/nodejs-project/src/maps/tiles/4/9_9.png new file mode 100644 index 00000000..8a0c5d9b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/4/9_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_10.png new file mode 100644 index 00000000..88a51dc5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_13.png new file mode 100644 index 00000000..969c789f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_14.png new file mode 100644 index 00000000..bc6f4251 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_15.png new file mode 100644 index 00000000..3d48652c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_16.png new file mode 100644 index 00000000..17f073d0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_17.png new file mode 100644 index 00000000..b859cd29 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_18.png new file mode 100644 index 00000000..0a583a4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_20.png new file mode 100644 index 00000000..912e4510 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_27.png new file mode 100644 index 00000000..41be20ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_30.png new file mode 100644 index 00000000..0f4e8565 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_31.png new file mode 100644 index 00000000..930c5db0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_6.png new file mode 100644 index 00000000..b88584d7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_7.png new file mode 100644 index 00000000..d57c7489 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_8.png new file mode 100644 index 00000000..fe119fa9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/0_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/0_9.png new file mode 100644 index 00000000..acdd23ef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/0_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_1.png new file mode 100644 index 00000000..de190e9e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_10.png new file mode 100644 index 00000000..6020b6d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_11.png new file mode 100644 index 00000000..caef5bab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_12.png new file mode 100644 index 00000000..0f0b7c8b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_14.png new file mode 100644 index 00000000..136b960e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_15.png new file mode 100644 index 00000000..0d164242 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_16.png new file mode 100644 index 00000000..e2d4371a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_17.png new file mode 100644 index 00000000..46ae9018 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_18.png new file mode 100644 index 00000000..f6be836b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_19.png new file mode 100644 index 00000000..520dfddb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_2.png new file mode 100644 index 00000000..307555a4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_20.png new file mode 100644 index 00000000..5fcf4cdd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_21.png new file mode 100644 index 00000000..8c025719 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_22.png new file mode 100644 index 00000000..3a41315b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_23.png new file mode 100644 index 00000000..d244ef7b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_24.png new file mode 100644 index 00000000..f65a65a5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_25.png new file mode 100644 index 00000000..3da4d744 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_26.png new file mode 100644 index 00000000..d2024373 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_28.png new file mode 100644 index 00000000..1422edf0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_29.png new file mode 100644 index 00000000..93b4618f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_3.png new file mode 100644 index 00000000..e544f801 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_30.png new file mode 100644 index 00000000..f59d934f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_31.png new file mode 100644 index 00000000..0ffb4403 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_4.png new file mode 100644 index 00000000..11e2e540 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_5.png new file mode 100644 index 00000000..54aab0a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_6.png new file mode 100644 index 00000000..58039458 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_7.png new file mode 100644 index 00000000..4a8e02a2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_8.png new file mode 100644 index 00000000..56d1fddd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/10_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/10_9.png new file mode 100644 index 00000000..3f9436b0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/10_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_1.png new file mode 100644 index 00000000..d4b1c6ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_10.png new file mode 100644 index 00000000..3ed22a75 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_11.png new file mode 100644 index 00000000..ac834a45 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_15.png new file mode 100644 index 00000000..693b4f1c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_16.png new file mode 100644 index 00000000..f203461c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_17.png new file mode 100644 index 00000000..78658f1a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_18.png new file mode 100644 index 00000000..723bb086 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_19.png new file mode 100644 index 00000000..15a543b3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_2.png new file mode 100644 index 00000000..1fc5fe01 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_21.png new file mode 100644 index 00000000..214e867a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_22.png new file mode 100644 index 00000000..61929dde Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_23.png new file mode 100644 index 00000000..ada1a0f5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_26.png new file mode 100644 index 00000000..1cf44b66 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_27.png new file mode 100644 index 00000000..37af0f05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_28.png new file mode 100644 index 00000000..209890c4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_29.png new file mode 100644 index 00000000..654a4d20 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_3.png new file mode 100644 index 00000000..f74070fa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_30.png new file mode 100644 index 00000000..ef22c2f7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_31.png new file mode 100644 index 00000000..f2ce2de6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_4.png new file mode 100644 index 00000000..5084674b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_5.png new file mode 100644 index 00000000..13df0b70 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_6.png new file mode 100644 index 00000000..e130349f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_7.png new file mode 100644 index 00000000..e9a5893a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_8.png new file mode 100644 index 00000000..98d55168 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/11_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/11_9.png new file mode 100644 index 00000000..c55430c2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/11_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_1.png new file mode 100644 index 00000000..f36da47a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_16.png new file mode 100644 index 00000000..174383a3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_17.png new file mode 100644 index 00000000..cb5c1f03 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_18.png new file mode 100644 index 00000000..ab2fb725 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_2.png new file mode 100644 index 00000000..44693a19 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_21.png new file mode 100644 index 00000000..822582af Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_27.png new file mode 100644 index 00000000..bef796bf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_28.png new file mode 100644 index 00000000..08b4336e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_29.png new file mode 100644 index 00000000..c2273680 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_3.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_4.png new file mode 100644 index 00000000..b076f824 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_5.png new file mode 100644 index 00000000..150266bf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_6.png new file mode 100644 index 00000000..7cdb625e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_7.png new file mode 100644 index 00000000..9dc5c1e9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_8.png new file mode 100644 index 00000000..920baae8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/12_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/12_9.png new file mode 100644 index 00000000..59782e96 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/12_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_1.png new file mode 100644 index 00000000..75c9e997 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_12.png new file mode 100644 index 00000000..26186e30 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_14.png new file mode 100644 index 00000000..04874d6d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_15.png new file mode 100644 index 00000000..2f6fe951 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_16.png new file mode 100644 index 00000000..a6c0c9ea Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_17.png new file mode 100644 index 00000000..34444465 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_2.png new file mode 100644 index 00000000..16a2a749 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_22.png new file mode 100644 index 00000000..d337f3d5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_25.png new file mode 100644 index 00000000..bbe2a5cb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_26.png new file mode 100644 index 00000000..4c1333bd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_27.png new file mode 100644 index 00000000..57cccc8d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_28.png new file mode 100644 index 00000000..507d6111 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_3.png new file mode 100644 index 00000000..3e9959be Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_4.png new file mode 100644 index 00000000..2fe86dde Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_5.png new file mode 100644 index 00000000..be568bf7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_6.png new file mode 100644 index 00000000..7e8526fc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_7.png new file mode 100644 index 00000000..aff74b05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_8.png new file mode 100644 index 00000000..3b0c9ccf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/13_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/13_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/13_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_1.png new file mode 100644 index 00000000..6a25397c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_12.png new file mode 100644 index 00000000..1b67006d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_13.png new file mode 100644 index 00000000..cd015aff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_14.png new file mode 100644 index 00000000..ed703ed0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_15.png new file mode 100644 index 00000000..f5a9cf21 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_16.png new file mode 100644 index 00000000..a9402f8c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_19.png new file mode 100644 index 00000000..2a7530e5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_2.png new file mode 100644 index 00000000..c74cee72 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_25.png new file mode 100644 index 00000000..f439d441 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_26.png new file mode 100644 index 00000000..27fb7d5c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_28.png new file mode 100644 index 00000000..6ddbbedb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_3.png new file mode 100644 index 00000000..9c826d51 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_4.png new file mode 100644 index 00000000..c8ce4824 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_5.png new file mode 100644 index 00000000..5b18143e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_6.png new file mode 100644 index 00000000..9ac45e89 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_7.png new file mode 100644 index 00000000..f6e31ae1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_8.png new file mode 100644 index 00000000..d734b614 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/14_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/14_9.png new file mode 100644 index 00000000..9f0324ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/14_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_10.png new file mode 100644 index 00000000..03b49288 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_11.png new file mode 100644 index 00000000..262948db Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_12.png new file mode 100644 index 00000000..eb61d43b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_13.png new file mode 100644 index 00000000..80877106 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_14.png new file mode 100644 index 00000000..7da669a7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_15.png new file mode 100644 index 00000000..9b783c11 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_17.png new file mode 100644 index 00000000..2b363113 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_19.png new file mode 100644 index 00000000..8a9d7cc0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_2.png new file mode 100644 index 00000000..73ebcf19 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_24.png new file mode 100644 index 00000000..a103c33d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_25.png new file mode 100644 index 00000000..20511a04 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_26.png new file mode 100644 index 00000000..651edf93 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_6.png new file mode 100644 index 00000000..0d7afdb6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_8.png new file mode 100644 index 00000000..10f3de09 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/15_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/15_9.png new file mode 100644 index 00000000..b098c0b7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/15_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_10.png new file mode 100644 index 00000000..c1d75f8e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_11.png new file mode 100644 index 00000000..2937ddec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_12.png new file mode 100644 index 00000000..ba56fb86 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_13.png new file mode 100644 index 00000000..807daa3a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_14.png new file mode 100644 index 00000000..d5cc8da3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_15.png new file mode 100644 index 00000000..1a4cd9e3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_16.png new file mode 100644 index 00000000..f2ba4f53 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_21.png new file mode 100644 index 00000000..97339584 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_24.png new file mode 100644 index 00000000..c1d9164f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_25.png new file mode 100644 index 00000000..05e51cf7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_3.png new file mode 100644 index 00000000..b4a86d69 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_4.png new file mode 100644 index 00000000..e57397a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_8.png new file mode 100644 index 00000000..b05a0a08 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/16_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/16_9.png new file mode 100644 index 00000000..7f23c8e9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/16_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_10.png new file mode 100644 index 00000000..e29e8fd1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_11.png new file mode 100644 index 00000000..10320830 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_12.png new file mode 100644 index 00000000..97b6dc92 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_13.png new file mode 100644 index 00000000..7a1dec84 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_14.png new file mode 100644 index 00000000..060930a7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_15.png new file mode 100644 index 00000000..582c4256 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_16.png new file mode 100644 index 00000000..5ce8685b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_17.png new file mode 100644 index 00000000..16628a0b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_18.png new file mode 100644 index 00000000..0c61b962 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_19.png new file mode 100644 index 00000000..2d879f22 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_24.png new file mode 100644 index 00000000..b612e3ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_25.png new file mode 100644 index 00000000..379495f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_3.png new file mode 100644 index 00000000..deff186a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_4.png new file mode 100644 index 00000000..53401968 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_5.png new file mode 100644 index 00000000..26be38be Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_6.png new file mode 100644 index 00000000..ec504e42 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_7.png new file mode 100644 index 00000000..5a06739d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_8.png new file mode 100644 index 00000000..aac3385c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/17_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/17_9.png new file mode 100644 index 00000000..0c15b242 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/17_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_10.png new file mode 100644 index 00000000..ab0209d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_11.png new file mode 100644 index 00000000..af77a4dc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_12.png new file mode 100644 index 00000000..2092108d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_13.png new file mode 100644 index 00000000..0321e737 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_14.png new file mode 100644 index 00000000..7ad9c570 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_15.png new file mode 100644 index 00000000..4bdb2fec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_16.png new file mode 100644 index 00000000..0d413984 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_17.png new file mode 100644 index 00000000..db1726e5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_18.png new file mode 100644 index 00000000..f59833e3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_19.png new file mode 100644 index 00000000..4d7b001c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_24.png new file mode 100644 index 00000000..35a4cb10 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_25.png new file mode 100644 index 00000000..7e7c4339 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_3.png new file mode 100644 index 00000000..f804ea00 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_4.png new file mode 100644 index 00000000..3d279da3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_5.png new file mode 100644 index 00000000..647b9dd5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_6.png new file mode 100644 index 00000000..c80b527e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_7.png new file mode 100644 index 00000000..b45c3880 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_8.png new file mode 100644 index 00000000..a6ee1b28 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/18_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/18_9.png new file mode 100644 index 00000000..8aa8b90d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/18_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_10.png new file mode 100644 index 00000000..515a5f0c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_11.png new file mode 100644 index 00000000..c7d6dbfa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_12.png new file mode 100644 index 00000000..ef3dde84 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_13.png new file mode 100644 index 00000000..d972f1d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_14.png new file mode 100644 index 00000000..51d583bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_15.png new file mode 100644 index 00000000..75563930 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_16.png new file mode 100644 index 00000000..6eeeada7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_17.png new file mode 100644 index 00000000..12d032c7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_18.png new file mode 100644 index 00000000..09fbda94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_20.png new file mode 100644 index 00000000..9332ce4b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_24.png new file mode 100644 index 00000000..e7fbefdf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_25.png new file mode 100644 index 00000000..d4febd6f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_3.png new file mode 100644 index 00000000..43a6bd67 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_7.png new file mode 100644 index 00000000..848a5cbd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_8.png new file mode 100644 index 00000000..5d83ecb2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/19_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/19_9.png new file mode 100644 index 00000000..0f3a690e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/19_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_10.png new file mode 100644 index 00000000..9b74740d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_13.png new file mode 100644 index 00000000..5457499f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_14.png new file mode 100644 index 00000000..d4bbad0b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_15.png new file mode 100644 index 00000000..31d1994d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_16.png new file mode 100644 index 00000000..50995483 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_17.png new file mode 100644 index 00000000..7018f6c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_18.png new file mode 100644 index 00000000..f15f0e92 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_27.png new file mode 100644 index 00000000..b6bf15ef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_28.png new file mode 100644 index 00000000..df6f76cb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_29.png new file mode 100644 index 00000000..d41da0d5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_30.png new file mode 100644 index 00000000..1657df6e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_31.png new file mode 100644 index 00000000..4c153805 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_6.png new file mode 100644 index 00000000..30f31860 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_7.png new file mode 100644 index 00000000..c229fe16 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_8.png new file mode 100644 index 00000000..701a80ae Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/1_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/1_9.png new file mode 100644 index 00000000..fc81ef66 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/1_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_10.png new file mode 100644 index 00000000..5157bedc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_11.png new file mode 100644 index 00000000..0e2373cb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_12.png new file mode 100644 index 00000000..7dae9e32 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_13.png new file mode 100644 index 00000000..6f685d6b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_14.png new file mode 100644 index 00000000..095ca473 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_15.png new file mode 100644 index 00000000..ecea8fde Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_16.png new file mode 100644 index 00000000..20df6fd4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_17.png new file mode 100644 index 00000000..216ae658 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_18.png new file mode 100644 index 00000000..8931f044 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_2.png new file mode 100644 index 00000000..de46712e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_20.png new file mode 100644 index 00000000..9e3830ff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_23.png new file mode 100644 index 00000000..b70e4831 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_24.png new file mode 100644 index 00000000..2d7b449f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_25.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_3.png new file mode 100644 index 00000000..877d1442 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_5.png new file mode 100644 index 00000000..d468ae7c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_6.png new file mode 100644 index 00000000..2ca19532 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_7.png new file mode 100644 index 00000000..ec0f3fc7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_8.png new file mode 100644 index 00000000..1302c808 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/20_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/20_9.png new file mode 100644 index 00000000..a086d459 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/20_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_10.png new file mode 100644 index 00000000..5934907d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_11.png new file mode 100644 index 00000000..f48bac85 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_12.png new file mode 100644 index 00000000..04aa1b3d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_13.png new file mode 100644 index 00000000..0f895209 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_14.png new file mode 100644 index 00000000..7406ccc8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_16.png new file mode 100644 index 00000000..9f6b1dfb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_17.png new file mode 100644 index 00000000..7c78f804 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_2.png new file mode 100644 index 00000000..f09895c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_23.png new file mode 100644 index 00000000..e7ee5ef6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_24.png new file mode 100644 index 00000000..36709965 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_25.png new file mode 100644 index 00000000..efb4f19b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_26.png new file mode 100644 index 00000000..f274a3d4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_3.png new file mode 100644 index 00000000..e2db16ca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_4.png new file mode 100644 index 00000000..0857b2b9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_5.png new file mode 100644 index 00000000..5c74e851 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_6.png new file mode 100644 index 00000000..513cf1c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_7.png new file mode 100644 index 00000000..8d99b49a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_8.png new file mode 100644 index 00000000..764b9fe2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/21_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/21_9.png new file mode 100644 index 00000000..e2b5206d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/21_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_10.png new file mode 100644 index 00000000..b3b8aa4c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_11.png new file mode 100644 index 00000000..2b7cd44e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_12.png new file mode 100644 index 00000000..fa50d200 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_13.png new file mode 100644 index 00000000..7c3a4f11 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_14.png new file mode 100644 index 00000000..46f4b674 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_15.png new file mode 100644 index 00000000..712b3609 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_16.png new file mode 100644 index 00000000..fbdd88c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_19.png new file mode 100644 index 00000000..02fd8896 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_20.png new file mode 100644 index 00000000..a1fb23c2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_21.png new file mode 100644 index 00000000..633eab37 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_24.png new file mode 100644 index 00000000..d06d71af Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_25.png new file mode 100644 index 00000000..cb7e5c17 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_3.png new file mode 100644 index 00000000..bdfa4791 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_4.png new file mode 100644 index 00000000..3c6775e4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_5.png new file mode 100644 index 00000000..76956f2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_6.png new file mode 100644 index 00000000..5b7e8ef4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_7.png new file mode 100644 index 00000000..8865b313 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_8.png new file mode 100644 index 00000000..e664bda2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/22_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/22_9.png new file mode 100644 index 00000000..13daacb0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/22_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_10.png new file mode 100644 index 00000000..70ec1b1d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_11.png new file mode 100644 index 00000000..d4c3c36c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_12.png new file mode 100644 index 00000000..11c6863c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_13.png new file mode 100644 index 00000000..684eecdc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_14.png new file mode 100644 index 00000000..8c216601 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_15.png new file mode 100644 index 00000000..e22cdc40 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_2.png new file mode 100644 index 00000000..6eaa9b16 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_23.png new file mode 100644 index 00000000..9f27ab3b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_24.png new file mode 100644 index 00000000..157f9b2b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_25.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_3.png new file mode 100644 index 00000000..f0702f7d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_4.png new file mode 100644 index 00000000..696075e7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_5.png new file mode 100644 index 00000000..00f78ab6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_6.png new file mode 100644 index 00000000..bc42812a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_7.png new file mode 100644 index 00000000..fedddc75 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_8.png new file mode 100644 index 00000000..75e5e98b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/23_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/23_9.png new file mode 100644 index 00000000..781848ff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/23_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_10.png new file mode 100644 index 00000000..19a2fc9c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_11.png new file mode 100644 index 00000000..5a8b392b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_12.png new file mode 100644 index 00000000..e0510dbb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_13.png new file mode 100644 index 00000000..85d63595 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_14.png new file mode 100644 index 00000000..cf46c838 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_15.png new file mode 100644 index 00000000..bc3f191c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_16.png new file mode 100644 index 00000000..4edccb88 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_17.png new file mode 100644 index 00000000..8bc0227d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_2.png new file mode 100644 index 00000000..6a318066 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_23.png new file mode 100644 index 00000000..12228f03 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_24.png new file mode 100644 index 00000000..dffe13e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_25.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_3.png new file mode 100644 index 00000000..29e44719 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_4.png new file mode 100644 index 00000000..3ccb7f02 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_5.png new file mode 100644 index 00000000..21da3051 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_6.png new file mode 100644 index 00000000..3c34dd5e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_7.png new file mode 100644 index 00000000..24fc6d7d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_8.png new file mode 100644 index 00000000..e07337b6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/24_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/24_9.png new file mode 100644 index 00000000..be7a8df4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/24_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_10.png new file mode 100644 index 00000000..eb97e9d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_11.png new file mode 100644 index 00000000..8802aab6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_12.png new file mode 100644 index 00000000..d1fdc06a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_13.png new file mode 100644 index 00000000..e52c6dce Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_14.png new file mode 100644 index 00000000..59e91f4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_15.png new file mode 100644 index 00000000..f69cc5c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_16.png new file mode 100644 index 00000000..60a52419 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_23.png new file mode 100644 index 00000000..8c37225d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_24.png new file mode 100644 index 00000000..c9b4b8bd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_25.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_3.png new file mode 100644 index 00000000..ee3e2d9d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_4.png new file mode 100644 index 00000000..e659152c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_5.png new file mode 100644 index 00000000..3c206580 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_6.png new file mode 100644 index 00000000..cc61c0f0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_7.png new file mode 100644 index 00000000..1c5ffbb0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_8.png new file mode 100644 index 00000000..8c2ef688 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/25_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/25_9.png new file mode 100644 index 00000000..6fa84e15 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/25_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_10.png new file mode 100644 index 00000000..fdb98960 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_11.png new file mode 100644 index 00000000..f6347cc2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_12.png new file mode 100644 index 00000000..f7ee8abb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_13.png new file mode 100644 index 00000000..ee37cd54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_14.png new file mode 100644 index 00000000..c5cbd85a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_15.png new file mode 100644 index 00000000..24445f70 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_16.png new file mode 100644 index 00000000..27f07a7e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_17.png new file mode 100644 index 00000000..2d640062 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_18.png new file mode 100644 index 00000000..890fe43d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_19.png new file mode 100644 index 00000000..14763575 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_23.png new file mode 100644 index 00000000..a8e4bd1e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_24.png new file mode 100644 index 00000000..a2bf1b2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_25.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_5.png new file mode 100644 index 00000000..2d1afcf2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_6.png new file mode 100644 index 00000000..a0962e65 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_7.png new file mode 100644 index 00000000..7bb7840b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_8.png new file mode 100644 index 00000000..cb6500ca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/26_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/26_9.png new file mode 100644 index 00000000..ddbb6135 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/26_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_10.png new file mode 100644 index 00000000..6c23928d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_11.png new file mode 100644 index 00000000..f91849d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_12.png new file mode 100644 index 00000000..767b172e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_13.png new file mode 100644 index 00000000..9bd06f9a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_14.png new file mode 100644 index 00000000..d1c3009f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_15.png new file mode 100644 index 00000000..a8917ed9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_16.png new file mode 100644 index 00000000..9273446c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_17.png new file mode 100644 index 00000000..b405e15d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_18.png new file mode 100644 index 00000000..de79bb4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_19.png new file mode 100644 index 00000000..4b224973 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_23.png new file mode 100644 index 00000000..11457be6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_24.png new file mode 100644 index 00000000..2817ed40 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_25.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_5.png new file mode 100644 index 00000000..98eb6d6e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_6.png new file mode 100644 index 00000000..3e9decd5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_7.png new file mode 100644 index 00000000..f3b3f8c4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_8.png new file mode 100644 index 00000000..8b77b6ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/27_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/27_9.png new file mode 100644 index 00000000..2dd12a69 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/27_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_10.png new file mode 100644 index 00000000..8b805f76 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_11.png new file mode 100644 index 00000000..dd6fef63 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_12.png new file mode 100644 index 00000000..f105e454 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_13.png new file mode 100644 index 00000000..888b526e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_14.png new file mode 100644 index 00000000..227575c2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_15.png new file mode 100644 index 00000000..6e8d60df Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_16.png new file mode 100644 index 00000000..c4835d71 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_17.png new file mode 100644 index 00000000..634cca46 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_18.png new file mode 100644 index 00000000..77db2b78 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_19.png new file mode 100644 index 00000000..fd98f0fe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_20.png new file mode 100644 index 00000000..1bf82f05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_23.png new file mode 100644 index 00000000..29cb7ac6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_24.png new file mode 100644 index 00000000..f4e863a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_25.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_5.png new file mode 100644 index 00000000..7ad02b49 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_6.png new file mode 100644 index 00000000..603a4741 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_7.png new file mode 100644 index 00000000..5626fbe6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_8.png new file mode 100644 index 00000000..fa57a698 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/28_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/28_9.png new file mode 100644 index 00000000..d67f7829 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/28_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_10.png new file mode 100644 index 00000000..0a6a67ec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_11.png new file mode 100644 index 00000000..75b1edca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_13.png new file mode 100644 index 00000000..93fd364f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_15.png new file mode 100644 index 00000000..a0c48acb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_16.png new file mode 100644 index 00000000..f3319b15 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_17.png new file mode 100644 index 00000000..b005da99 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_18.png new file mode 100644 index 00000000..e3cf2834 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_19.png new file mode 100644 index 00000000..70843aba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_20.png new file mode 100644 index 00000000..e97cd197 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_24.png new file mode 100644 index 00000000..c310b381 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_25.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_27.png new file mode 100644 index 00000000..e6851a2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_28.png new file mode 100644 index 00000000..a39faf6d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_29.png new file mode 100644 index 00000000..e7a20e2f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_30.png new file mode 100644 index 00000000..3302e993 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_4.png new file mode 100644 index 00000000..540ac284 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_5.png new file mode 100644 index 00000000..8246d98a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_6.png new file mode 100644 index 00000000..d7cbed8e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_7.png new file mode 100644 index 00000000..b80ae983 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_8.png new file mode 100644 index 00000000..50889806 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/29_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/29_9.png new file mode 100644 index 00000000..f9592d37 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/29_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_10.png new file mode 100644 index 00000000..6f2a7979 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_14.png new file mode 100644 index 00000000..a02c17fd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_15.png new file mode 100644 index 00000000..bd2d5aaa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_16.png new file mode 100644 index 00000000..3193b225 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_17.png new file mode 100644 index 00000000..e7293673 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_18.png new file mode 100644 index 00000000..333c3ad9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_26.png new file mode 100644 index 00000000..41fefecf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_27.png new file mode 100644 index 00000000..0c3690a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_28.png new file mode 100644 index 00000000..f21c2ad4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_29.png new file mode 100644 index 00000000..45991d02 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_30.png new file mode 100644 index 00000000..2a396c2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_31.png new file mode 100644 index 00000000..165a1b03 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_6.png new file mode 100644 index 00000000..1f92a7a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_7.png new file mode 100644 index 00000000..090644b3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_8.png new file mode 100644 index 00000000..770961a7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/2_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/2_9.png new file mode 100644 index 00000000..1112e560 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/2_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_10.png new file mode 100644 index 00000000..d423b637 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_14.png new file mode 100644 index 00000000..d2923496 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_15.png new file mode 100644 index 00000000..ede01de8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_16.png new file mode 100644 index 00000000..c8f80358 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_17.png new file mode 100644 index 00000000..247aff31 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_18.png new file mode 100644 index 00000000..39ed75c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_20.png new file mode 100644 index 00000000..ed22cc43 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_21.png new file mode 100644 index 00000000..1bd77389 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_23.png new file mode 100644 index 00000000..917422c4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_24.png new file mode 100644 index 00000000..f0d54656 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_25.png new file mode 100644 index 00000000..145d360b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_26.png new file mode 100644 index 00000000..ee5a11de Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_27.png new file mode 100644 index 00000000..f1dfe920 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_28.png new file mode 100644 index 00000000..118dbe6e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_29.png new file mode 100644 index 00000000..e14ada65 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_30.png new file mode 100644 index 00000000..e79ef1d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_31.png new file mode 100644 index 00000000..d56c069f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_4.png new file mode 100644 index 00000000..a0f100f1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_5.png new file mode 100644 index 00000000..e643f225 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_6.png new file mode 100644 index 00000000..28e2504e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_7.png new file mode 100644 index 00000000..31ffe8ca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_8.png new file mode 100644 index 00000000..9a612836 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/30_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/30_9.png new file mode 100644 index 00000000..0d3c6f72 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/30_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_10.png new file mode 100644 index 00000000..c51d3583 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_14.png new file mode 100644 index 00000000..4e88397b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_15.png new file mode 100644 index 00000000..76053b78 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_16.png new file mode 100644 index 00000000..06836e10 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_17.png new file mode 100644 index 00000000..bbb76bd0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_18.png new file mode 100644 index 00000000..822b7c10 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_19.png new file mode 100644 index 00000000..f5fb18bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_20.png new file mode 100644 index 00000000..7997b2d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_21.png new file mode 100644 index 00000000..c79ea7bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_25.png new file mode 100644 index 00000000..83ba5bf6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_27.png new file mode 100644 index 00000000..ad8df57d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_30.png new file mode 100644 index 00000000..c57d36fb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_31.png new file mode 100644 index 00000000..762eaaae Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_6.png new file mode 100644 index 00000000..47b93e7d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_7.png new file mode 100644 index 00000000..b5731a9d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_8.png new file mode 100644 index 00000000..8c000e41 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/31_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/31_9.png new file mode 100644 index 00000000..f7fa2964 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/31_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_16.png new file mode 100644 index 00000000..30324995 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_17.png new file mode 100644 index 00000000..94fa60d4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_18.png new file mode 100644 index 00000000..d7ca3eb7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_26.png new file mode 100644 index 00000000..c1bd834e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_27.png new file mode 100644 index 00000000..b92f351a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_7.png new file mode 100644 index 00000000..4f127595 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_8.png new file mode 100644 index 00000000..cc53405b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/3_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/3_9.png new file mode 100644 index 00000000..68216600 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/3_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_10.png new file mode 100644 index 00000000..e5f64174 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_11.png new file mode 100644 index 00000000..38edd7fc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_12.png new file mode 100644 index 00000000..e9ed8c51 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_18.png new file mode 100644 index 00000000..ae54788b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_25.png new file mode 100644 index 00000000..22fd5506 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_26.png new file mode 100644 index 00000000..a10a6707 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_27.png new file mode 100644 index 00000000..f3c9fdc7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_5.png new file mode 100644 index 00000000..bf28f45e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_6.png new file mode 100644 index 00000000..a938c9a8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_7.png new file mode 100644 index 00000000..533bba2a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_8.png new file mode 100644 index 00000000..54ad6854 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/4_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/4_9.png new file mode 100644 index 00000000..270f84c7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/4_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_10.png new file mode 100644 index 00000000..5f09669e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_11.png new file mode 100644 index 00000000..76e65401 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_12.png new file mode 100644 index 00000000..e48c1e8a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_13.png new file mode 100644 index 00000000..aeadf5af Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_14.png new file mode 100644 index 00000000..dae54574 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_25.png new file mode 100644 index 00000000..24b45ce0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_26.png new file mode 100644 index 00000000..8087c7fb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_31.png new file mode 100644 index 00000000..642b9e39 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_4.png new file mode 100644 index 00000000..40b74d8c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_5.png new file mode 100644 index 00000000..6a0af375 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_6.png new file mode 100644 index 00000000..0f46e6ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_7.png new file mode 100644 index 00000000..2344da60 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_8.png new file mode 100644 index 00000000..64708bd7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/5_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/5_9.png new file mode 100644 index 00000000..a7ffc194 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/5_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_10.png new file mode 100644 index 00000000..6855abbe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_11.png new file mode 100644 index 00000000..34c8cd78 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_12.png new file mode 100644 index 00000000..3d3aa80d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_13.png new file mode 100644 index 00000000..b26739d5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_14.png new file mode 100644 index 00000000..dd59d491 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_15.png new file mode 100644 index 00000000..8250b3b8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_18.png new file mode 100644 index 00000000..c6c76ad8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_25.png new file mode 100644 index 00000000..004a4a27 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_26.png new file mode 100644 index 00000000..234400ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_29.png new file mode 100644 index 00000000..77d73217 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_3.png new file mode 100644 index 00000000..dfb94ab7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_4.png new file mode 100644 index 00000000..738ae5ef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_5.png new file mode 100644 index 00000000..f63e9c75 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_6.png new file mode 100644 index 00000000..67321bbd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_7.png new file mode 100644 index 00000000..97d899b5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_8.png new file mode 100644 index 00000000..948bb625 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/6_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/6_9.png new file mode 100644 index 00000000..38233842 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/6_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_10.png new file mode 100644 index 00000000..8591a685 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_11.png new file mode 100644 index 00000000..342dd3bd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_12.png new file mode 100644 index 00000000..5fc394ff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_13.png new file mode 100644 index 00000000..4c430228 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_14.png new file mode 100644 index 00000000..bfcd188d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_15.png new file mode 100644 index 00000000..6e9f3353 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_16.png new file mode 100644 index 00000000..9434e693 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_2.png new file mode 100644 index 00000000..8311bf2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_24.png new file mode 100644 index 00000000..98f6487e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_25.png new file mode 100644 index 00000000..93420ec0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_26.png new file mode 100644 index 00000000..37a04029 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_27.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_28.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_3.png new file mode 100644 index 00000000..315f6349 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_31.png new file mode 100644 index 00000000..7221fd0f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_4.png new file mode 100644 index 00000000..b38fdd8f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_5.png new file mode 100644 index 00000000..f23db344 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_6.png new file mode 100644 index 00000000..f4e37f53 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_7.png new file mode 100644 index 00000000..b639d22d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_8.png new file mode 100644 index 00000000..3a90f6d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/7_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/7_9.png new file mode 100644 index 00000000..5769b397 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/7_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_1.png new file mode 100644 index 00000000..a2b869eb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_10.png new file mode 100644 index 00000000..74f8d997 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_11.png new file mode 100644 index 00000000..92e10bc6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_12.png new file mode 100644 index 00000000..8371641a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_13.png new file mode 100644 index 00000000..84469d22 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_14.png new file mode 100644 index 00000000..68f3127c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_15.png new file mode 100644 index 00000000..8a38ee71 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_16.png new file mode 100644 index 00000000..5de5c301 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_17.png new file mode 100644 index 00000000..b1222a7d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_18.png new file mode 100644 index 00000000..07d263b2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_19.png new file mode 100644 index 00000000..a00d1a83 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_2.png new file mode 100644 index 00000000..3ad0c16d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_25.png new file mode 100644 index 00000000..e9a67a14 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_26.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_27.png new file mode 100644 index 00000000..cf50717b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_28.png new file mode 100644 index 00000000..c8083dfe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_3.png new file mode 100644 index 00000000..9e2ec0c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_4.png new file mode 100644 index 00000000..a90fc87d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_5.png new file mode 100644 index 00000000..557104a0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_6.png new file mode 100644 index 00000000..16242afe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_7.png new file mode 100644 index 00000000..586c23aa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_8.png new file mode 100644 index 00000000..83250199 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/8_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/8_9.png new file mode 100644 index 00000000..8505b8ca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/8_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_0.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_1.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_1.png new file mode 100644 index 00000000..4197e53b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_10.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_10.png new file mode 100644 index 00000000..7e564b7b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_11.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_11.png new file mode 100644 index 00000000..d6e901a9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_12.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_12.png new file mode 100644 index 00000000..b2ace3d8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_13.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_13.png new file mode 100644 index 00000000..9479911a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_14.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_14.png new file mode 100644 index 00000000..b0fa01f4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_15.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_15.png new file mode 100644 index 00000000..5c8e8109 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_16.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_16.png new file mode 100644 index 00000000..ec852779 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_17.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_17.png new file mode 100644 index 00000000..e3045721 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_18.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_18.png new file mode 100644 index 00000000..e4b3bc8d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_19.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_19.png new file mode 100644 index 00000000..24410c84 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_2.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_2.png new file mode 100644 index 00000000..d41e4528 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_20.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_20.png new file mode 100644 index 00000000..264018f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_21.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_21.png new file mode 100644 index 00000000..cddaa7cc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_22.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_22.png new file mode 100644 index 00000000..ab97622b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_23.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_24.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_24.png new file mode 100644 index 00000000..9567c9cd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_25.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_25.png new file mode 100644 index 00000000..ab683b4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_26.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_26.png new file mode 100644 index 00000000..9c8ff639 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_27.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_27.png new file mode 100644 index 00000000..b98bbc78 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_28.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_28.png new file mode 100644 index 00000000..82b1c3e8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_29.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_29.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_3.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_3.png new file mode 100644 index 00000000..dcb0a787 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_30.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_30.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_31.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_31.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_4.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_4.png new file mode 100644 index 00000000..0cf73e5a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_5.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_5.png new file mode 100644 index 00000000..2f5a716e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_6.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_6.png new file mode 100644 index 00000000..b389b28e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_7.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_7.png new file mode 100644 index 00000000..2834b541 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_8.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_8.png new file mode 100644 index 00000000..e10ab79e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/5/9_9.png b/nodejs-project/nodejs-project/src/maps/tiles/5/9_9.png new file mode 100644 index 00000000..5337561c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/5/9_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_13.png new file mode 100644 index 00000000..5a575854 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_14.png new file mode 100644 index 00000000..cc8d1777 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_15.png new file mode 100644 index 00000000..2c786ece Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_16.png new file mode 100644 index 00000000..51ebca3e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_17.png new file mode 100644 index 00000000..725ee8b7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_20.png new file mode 100644 index 00000000..efbfd9ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_21.png new file mode 100644 index 00000000..b64eb0d7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_26.png new file mode 100644 index 00000000..056a40e7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_31.png new file mode 100644 index 00000000..14d174e3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_32.png new file mode 100644 index 00000000..81bcf12c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_33.png new file mode 100644 index 00000000..c6440a5d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_34.png new file mode 100644 index 00000000..48f1be09 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_35.png new file mode 100644 index 00000000..c7bbd448 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_36.png new file mode 100644 index 00000000..16bac0d2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_37.png new file mode 100644 index 00000000..35bd47f7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_40.png new file mode 100644 index 00000000..27d70c01 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_54.png new file mode 100644 index 00000000..e9d0f354 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_55.png new file mode 100644 index 00000000..da03a94f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_62.png new file mode 100644 index 00000000..72ad7d02 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_63.png new file mode 100644 index 00000000..988dff7e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/0_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/0_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/0_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_10.png new file mode 100644 index 00000000..04c6a885 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_11.png new file mode 100644 index 00000000..19ea3048 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_12.png new file mode 100644 index 00000000..11e3f6f0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_13.png new file mode 100644 index 00000000..36c6c494 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_14.png new file mode 100644 index 00000000..cb0aa167 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_15.png new file mode 100644 index 00000000..c83bd66f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_16.png new file mode 100644 index 00000000..067914ee Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_17.png new file mode 100644 index 00000000..d1312786 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_18.png new file mode 100644 index 00000000..85379163 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_19.png new file mode 100644 index 00000000..9ce59bed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_20.png new file mode 100644 index 00000000..caea2119 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_21.png new file mode 100644 index 00000000..11b965c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_22.png new file mode 100644 index 00000000..4d2b563c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_23.png new file mode 100644 index 00000000..e8b97010 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_24.png new file mode 100644 index 00000000..3d3dee91 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_25.png new file mode 100644 index 00000000..6cd53e46 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_26.png new file mode 100644 index 00000000..ccde3921 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_51.png new file mode 100644 index 00000000..529f4256 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_52.png new file mode 100644 index 00000000..f7c8f78a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/10_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/10_9.png new file mode 100644 index 00000000..b543cf8c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/10_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_10.png new file mode 100644 index 00000000..88ffe3cc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_11.png new file mode 100644 index 00000000..474f43cc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_12.png new file mode 100644 index 00000000..37079aa8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_13.png new file mode 100644 index 00000000..21a2922b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_14.png new file mode 100644 index 00000000..06df7c98 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_15.png new file mode 100644 index 00000000..d12a0243 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_16.png new file mode 100644 index 00000000..726f1337 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_17.png new file mode 100644 index 00000000..a160e41b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_18.png new file mode 100644 index 00000000..1be32109 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_19.png new file mode 100644 index 00000000..8310b2e0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_20.png new file mode 100644 index 00000000..71d7caba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_21.png new file mode 100644 index 00000000..21d9f589 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_22.png new file mode 100644 index 00000000..4f18bc1f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_23.png new file mode 100644 index 00000000..252fa5a3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_24.png new file mode 100644 index 00000000..f91ffc5f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_25.png new file mode 100644 index 00000000..0770c0ae Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_26.png new file mode 100644 index 00000000..765b4a6b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_27.png new file mode 100644 index 00000000..a80f9989 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_28.png new file mode 100644 index 00000000..6a7d34c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_51.png new file mode 100644 index 00000000..2e1ba207 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_52.png new file mode 100644 index 00000000..a0ad389f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_53.png new file mode 100644 index 00000000..b57f7050 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_63.png new file mode 100644 index 00000000..2089695e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_8.png new file mode 100644 index 00000000..38b05217 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/11_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/11_9.png new file mode 100644 index 00000000..f31505f8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/11_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_10.png new file mode 100644 index 00000000..29873f16 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_11.png new file mode 100644 index 00000000..585369e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_12.png new file mode 100644 index 00000000..cffdbb57 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_13.png new file mode 100644 index 00000000..fae27fd2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_14.png new file mode 100644 index 00000000..2aad0fbb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_15.png new file mode 100644 index 00000000..97ebb654 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_16.png new file mode 100644 index 00000000..a044c455 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_17.png new file mode 100644 index 00000000..215db3b1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_18.png new file mode 100644 index 00000000..7283f61a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_19.png new file mode 100644 index 00000000..720a8371 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_20.png new file mode 100644 index 00000000..7b6e58f1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_21.png new file mode 100644 index 00000000..1c41e609 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_22.png new file mode 100644 index 00000000..e413380f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_23.png new file mode 100644 index 00000000..70df4e8c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_24.png new file mode 100644 index 00000000..403abb61 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_25.png new file mode 100644 index 00000000..eb3ff734 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_26.png new file mode 100644 index 00000000..eed0a2ea Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_27.png new file mode 100644 index 00000000..e69fb220 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_28.png new file mode 100644 index 00000000..29d8bf1a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_30.png new file mode 100644 index 00000000..2baf7fd4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_36.png new file mode 100644 index 00000000..2e8bcb74 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_37.png new file mode 100644 index 00000000..7c15437b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_52.png new file mode 100644 index 00000000..e5792e96 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_53.png new file mode 100644 index 00000000..87168909 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_7.png new file mode 100644 index 00000000..63f7eaa6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_8.png new file mode 100644 index 00000000..ec11c6c1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/12_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/12_9.png new file mode 100644 index 00000000..aa5d44e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/12_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_10.png new file mode 100644 index 00000000..cc163560 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_11.png new file mode 100644 index 00000000..6a28d353 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_12.png new file mode 100644 index 00000000..f102e1b9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_13.png new file mode 100644 index 00000000..4ffaa1a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_14.png new file mode 100644 index 00000000..708a4e54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_15.png new file mode 100644 index 00000000..92d71707 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_16.png new file mode 100644 index 00000000..332ccc4a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_17.png new file mode 100644 index 00000000..4a354cf8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_18.png new file mode 100644 index 00000000..270a61c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_19.png new file mode 100644 index 00000000..390dedad Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_20.png new file mode 100644 index 00000000..b33e701c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_21.png new file mode 100644 index 00000000..23bd3229 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_22.png new file mode 100644 index 00000000..a4199be5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_23.png new file mode 100644 index 00000000..41fe30a7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_24.png new file mode 100644 index 00000000..87953ab6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_25.png new file mode 100644 index 00000000..14193fd2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_26.png new file mode 100644 index 00000000..a31e2b05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_27.png new file mode 100644 index 00000000..6c6ee54f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_28.png new file mode 100644 index 00000000..578d5c84 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_36.png new file mode 100644 index 00000000..ee10f836 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_50.png new file mode 100644 index 00000000..bcf993fb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_51.png new file mode 100644 index 00000000..1c0e0f19 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_52.png new file mode 100644 index 00000000..49a2ec76 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_59.png new file mode 100644 index 00000000..e95cc594 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_6.png new file mode 100644 index 00000000..e1ae0049 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_7.png new file mode 100644 index 00000000..fdffe18e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_8.png new file mode 100644 index 00000000..3ba5a4e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/13_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/13_9.png new file mode 100644 index 00000000..e8b84412 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/13_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_10.png new file mode 100644 index 00000000..c2c49707 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_11.png new file mode 100644 index 00000000..e3f77da0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_12.png new file mode 100644 index 00000000..e9a0bc9a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_13.png new file mode 100644 index 00000000..f70650fa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_14.png new file mode 100644 index 00000000..30a2c9ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_15.png new file mode 100644 index 00000000..a1b6f341 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_16.png new file mode 100644 index 00000000..d16c67dd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_17.png new file mode 100644 index 00000000..e8f3c664 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_18.png new file mode 100644 index 00000000..acd34dd1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_19.png new file mode 100644 index 00000000..35b7eba3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_20.png new file mode 100644 index 00000000..20d76dca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_21.png new file mode 100644 index 00000000..6bddad6f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_22.png new file mode 100644 index 00000000..dc9b66c8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_23.png new file mode 100644 index 00000000..3943b632 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_24.png new file mode 100644 index 00000000..13fa00a4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_25.png new file mode 100644 index 00000000..ca21e7b8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_26.png new file mode 100644 index 00000000..fdd4ac6f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_27.png new file mode 100644 index 00000000..66469114 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_28.png new file mode 100644 index 00000000..bd63a757 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_29.png new file mode 100644 index 00000000..4eb8be8f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_5.png new file mode 100644 index 00000000..792009cf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_50.png new file mode 100644 index 00000000..27e4ec73 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_51.png new file mode 100644 index 00000000..4f271435 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_52.png new file mode 100644 index 00000000..51c2b4ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_6.png new file mode 100644 index 00000000..57b84d0d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_7.png new file mode 100644 index 00000000..f6453741 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_8.png new file mode 100644 index 00000000..45fb5e63 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/14_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/14_9.png new file mode 100644 index 00000000..2b6c1889 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/14_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_10.png new file mode 100644 index 00000000..0cce3a45 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_11.png new file mode 100644 index 00000000..0e7e32ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_12.png new file mode 100644 index 00000000..0c220e3a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_13.png new file mode 100644 index 00000000..c1bb3dcc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_14.png new file mode 100644 index 00000000..2cdb4e5b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_15.png new file mode 100644 index 00000000..f3ec8c1e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_16.png new file mode 100644 index 00000000..da49d57d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_17.png new file mode 100644 index 00000000..a0e942e8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_18.png new file mode 100644 index 00000000..f38f3388 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_19.png new file mode 100644 index 00000000..b264985b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_20.png new file mode 100644 index 00000000..50b36459 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_21.png new file mode 100644 index 00000000..b6543104 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_22.png new file mode 100644 index 00000000..df008004 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_23.png new file mode 100644 index 00000000..80a66bff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_24.png new file mode 100644 index 00000000..59f156c4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_25.png new file mode 100644 index 00000000..6bc54c38 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_26.png new file mode 100644 index 00000000..bccb1a10 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_27.png new file mode 100644 index 00000000..a26fe74b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_28.png new file mode 100644 index 00000000..4e1dffc0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_29.png new file mode 100644 index 00000000..090eb184 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_31.png new file mode 100644 index 00000000..21caf4a0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_32.png new file mode 100644 index 00000000..9b4485b2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_4.png new file mode 100644 index 00000000..27e881b5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_49.png new file mode 100644 index 00000000..a7e24591 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_5.png new file mode 100644 index 00000000..b2a80087 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_50.png new file mode 100644 index 00000000..46b47e91 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_51.png new file mode 100644 index 00000000..9dced749 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_6.png new file mode 100644 index 00000000..a172c281 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_63.png new file mode 100644 index 00000000..590e0656 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_7.png new file mode 100644 index 00000000..04a5ad54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_8.png new file mode 100644 index 00000000..c1d37145 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/15_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/15_9.png new file mode 100644 index 00000000..bb680856 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/15_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_10.png new file mode 100644 index 00000000..4f8956ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_11.png new file mode 100644 index 00000000..18638959 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_12.png new file mode 100644 index 00000000..9e032c53 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_13.png new file mode 100644 index 00000000..a2f4969c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_14.png new file mode 100644 index 00000000..1f525409 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_15.png new file mode 100644 index 00000000..88cb518f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_16.png new file mode 100644 index 00000000..2208b5d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_17.png new file mode 100644 index 00000000..a985a46e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_19.png new file mode 100644 index 00000000..42628bab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_20.png new file mode 100644 index 00000000..7e658c01 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_21.png new file mode 100644 index 00000000..a892c574 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_22.png new file mode 100644 index 00000000..11ce5e1c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_23.png new file mode 100644 index 00000000..cb592597 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_24.png new file mode 100644 index 00000000..9b8cb669 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_25.png new file mode 100644 index 00000000..2973111e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_26.png new file mode 100644 index 00000000..e7626c18 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_27.png new file mode 100644 index 00000000..01889a04 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_28.png new file mode 100644 index 00000000..32679b64 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_29.png new file mode 100644 index 00000000..5f8b4743 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_3.png new file mode 100644 index 00000000..fb40532a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_30.png new file mode 100644 index 00000000..906502ff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_31.png new file mode 100644 index 00000000..fd91cb45 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_32.png new file mode 100644 index 00000000..fc2dcd92 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_33.png new file mode 100644 index 00000000..17bf0fcb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_4.png new file mode 100644 index 00000000..4657b644 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_5.png new file mode 100644 index 00000000..6cb2a858 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_51.png new file mode 100644 index 00000000..b326d09f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_54.png new file mode 100644 index 00000000..81003763 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_55.png new file mode 100644 index 00000000..d29f3ba8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_56.png new file mode 100644 index 00000000..d4602203 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_6.png new file mode 100644 index 00000000..cb48d939 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_7.png new file mode 100644 index 00000000..b9dfeb33 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_8.png new file mode 100644 index 00000000..b30a0c68 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/16_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/16_9.png new file mode 100644 index 00000000..3945d809 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/16_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_10.png new file mode 100644 index 00000000..0ba396a8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_11.png new file mode 100644 index 00000000..243c8bcd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_12.png new file mode 100644 index 00000000..8f7af4c7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_13.png new file mode 100644 index 00000000..7799c161 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_14.png new file mode 100644 index 00000000..1a0edc44 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_15.png new file mode 100644 index 00000000..67c85fe9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_16.png new file mode 100644 index 00000000..448e609d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_17.png new file mode 100644 index 00000000..ad5f0c64 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_18.png new file mode 100644 index 00000000..49d0ad57 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_19.png new file mode 100644 index 00000000..d95c4be1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_20.png new file mode 100644 index 00000000..70458f0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_21.png new file mode 100644 index 00000000..7959c83e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_22.png new file mode 100644 index 00000000..6937707c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_23.png new file mode 100644 index 00000000..0df12ed4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_24.png new file mode 100644 index 00000000..cb91aeb7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_25.png new file mode 100644 index 00000000..1cfedb35 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_26.png new file mode 100644 index 00000000..e58e42e7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_27.png new file mode 100644 index 00000000..aebb35c7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_28.png new file mode 100644 index 00000000..7de5a853 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_29.png new file mode 100644 index 00000000..d2f62498 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_3.png new file mode 100644 index 00000000..8f7a89c2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_30.png new file mode 100644 index 00000000..d6208939 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_31.png new file mode 100644 index 00000000..5e47afb7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_32.png new file mode 100644 index 00000000..9045b510 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_33.png new file mode 100644 index 00000000..862ecec5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_34.png new file mode 100644 index 00000000..f6b8d300 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_36.png new file mode 100644 index 00000000..324328e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_38.png new file mode 100644 index 00000000..73dd40eb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_4.png new file mode 100644 index 00000000..218e543f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_5.png new file mode 100644 index 00000000..9057328f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_50.png new file mode 100644 index 00000000..13877b3b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_51.png new file mode 100644 index 00000000..b1945fff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_54.png new file mode 100644 index 00000000..d4d0cee7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_55.png new file mode 100644 index 00000000..a40888ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_56.png new file mode 100644 index 00000000..83e34d65 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_57.png new file mode 100644 index 00000000..b6a7dd12 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_6.png new file mode 100644 index 00000000..9fba4ab3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_7.png new file mode 100644 index 00000000..373ae01a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_8.png new file mode 100644 index 00000000..702894fb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/17_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/17_9.png new file mode 100644 index 00000000..15bfebd6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/17_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_10.png new file mode 100644 index 00000000..57c365ec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_11.png new file mode 100644 index 00000000..89ac61cd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_12.png new file mode 100644 index 00000000..277797c1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_13.png new file mode 100644 index 00000000..8859860c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_14.png new file mode 100644 index 00000000..ec0c9021 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_15.png new file mode 100644 index 00000000..99f22aa9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_16.png new file mode 100644 index 00000000..06b53203 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_17.png new file mode 100644 index 00000000..f9f74acb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_18.png new file mode 100644 index 00000000..1d23f9dd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_19.png new file mode 100644 index 00000000..7729195f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_20.png new file mode 100644 index 00000000..e8696ac9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_21.png new file mode 100644 index 00000000..c1be4ac4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_22.png new file mode 100644 index 00000000..ac02c382 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_23.png new file mode 100644 index 00000000..a810a929 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_24.png new file mode 100644 index 00000000..1040c445 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_25.png new file mode 100644 index 00000000..2cd072bd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_26.png new file mode 100644 index 00000000..1bc5319b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_27.png new file mode 100644 index 00000000..7cdb16e1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_28.png new file mode 100644 index 00000000..26687c01 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_29.png new file mode 100644 index 00000000..6e7c8664 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_3.png new file mode 100644 index 00000000..cdf5e151 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_30.png new file mode 100644 index 00000000..80c46745 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_31.png new file mode 100644 index 00000000..b719a78c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_32.png new file mode 100644 index 00000000..cce2cdca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_33.png new file mode 100644 index 00000000..c3593aad Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_34.png new file mode 100644 index 00000000..fad2ac77 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_35.png new file mode 100644 index 00000000..bd422460 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_38.png new file mode 100644 index 00000000..635fcb9c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_39.png new file mode 100644 index 00000000..86c7ffa2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_4.png new file mode 100644 index 00000000..c9705937 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_40.png new file mode 100644 index 00000000..1a492d93 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_41.png new file mode 100644 index 00000000..165a7fb7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_42.png new file mode 100644 index 00000000..450d7fc6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_43.png new file mode 100644 index 00000000..afb402ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_49.png new file mode 100644 index 00000000..f376f7e7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_5.png new file mode 100644 index 00000000..f137cf4c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_50.png new file mode 100644 index 00000000..bf0dc60d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_51.png new file mode 100644 index 00000000..36d2e122 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_52.png new file mode 100644 index 00000000..170fe5d2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_53.png new file mode 100644 index 00000000..3de4192b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_54.png new file mode 100644 index 00000000..d2e01f67 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_55.png new file mode 100644 index 00000000..358eafd0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_56.png new file mode 100644 index 00000000..60c236d5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_57.png new file mode 100644 index 00000000..dffabdf9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_6.png new file mode 100644 index 00000000..6a2b1622 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_7.png new file mode 100644 index 00000000..77b25693 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_8.png new file mode 100644 index 00000000..c41202a5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/18_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/18_9.png new file mode 100644 index 00000000..1ef876b9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/18_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_10.png new file mode 100644 index 00000000..06036806 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_13.png new file mode 100644 index 00000000..daa9434d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_14.png new file mode 100644 index 00000000..9e8c80f2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_15.png new file mode 100644 index 00000000..c07ac8c3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_16.png new file mode 100644 index 00000000..289da388 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_17.png new file mode 100644 index 00000000..51f510f9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_18.png new file mode 100644 index 00000000..f614376f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_19.png new file mode 100644 index 00000000..9cc88263 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_20.png new file mode 100644 index 00000000..cdea7580 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_21.png new file mode 100644 index 00000000..422b39a7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_22.png new file mode 100644 index 00000000..cce1e4e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_23.png new file mode 100644 index 00000000..c585169d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_24.png new file mode 100644 index 00000000..a7f16e5d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_27.png new file mode 100644 index 00000000..1a19816e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_28.png new file mode 100644 index 00000000..5d1d60fa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_29.png new file mode 100644 index 00000000..b3ca4ccd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_3.png new file mode 100644 index 00000000..e5eea030 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_30.png new file mode 100644 index 00000000..e5f3c76a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_31.png new file mode 100644 index 00000000..d4390388 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_32.png new file mode 100644 index 00000000..06084597 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_33.png new file mode 100644 index 00000000..93aa20c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_34.png new file mode 100644 index 00000000..993a6259 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_35.png new file mode 100644 index 00000000..92185a6c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_36.png new file mode 100644 index 00000000..41069779 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_37.png new file mode 100644 index 00000000..cca74c37 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_38.png new file mode 100644 index 00000000..478f27e1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_39.png new file mode 100644 index 00000000..90fce2a7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_4.png new file mode 100644 index 00000000..d818b803 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_40.png new file mode 100644 index 00000000..3586ca55 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_41.png new file mode 100644 index 00000000..a8837f05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_42.png new file mode 100644 index 00000000..ea428b84 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_43.png new file mode 100644 index 00000000..33a2a9e3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_44.png new file mode 100644 index 00000000..e0ae9262 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_48.png new file mode 100644 index 00000000..2446c56a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_49.png new file mode 100644 index 00000000..59b62a43 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_5.png new file mode 100644 index 00000000..96549155 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_50.png new file mode 100644 index 00000000..7d7e2518 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_51.png new file mode 100644 index 00000000..30b1e6de Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_52.png new file mode 100644 index 00000000..af860325 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_53.png new file mode 100644 index 00000000..d7d93061 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_54.png new file mode 100644 index 00000000..39d5e98f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_55.png new file mode 100644 index 00000000..3de2ab0c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_56.png new file mode 100644 index 00000000..69cd2dd7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_57.png new file mode 100644 index 00000000..c92da5c4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_58.png new file mode 100644 index 00000000..36df0ebc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_6.png new file mode 100644 index 00000000..0e950a40 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_7.png new file mode 100644 index 00000000..1a1b6687 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_8.png new file mode 100644 index 00000000..3aa8e053 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/19_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/19_9.png new file mode 100644 index 00000000..a195a676 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/19_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_15.png new file mode 100644 index 00000000..a69b0fc9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_16.png new file mode 100644 index 00000000..31d8a4f0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_17.png new file mode 100644 index 00000000..cd382b22 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_18.png new file mode 100644 index 00000000..4a9fc14c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_19.png new file mode 100644 index 00000000..4d7f8e8a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_20.png new file mode 100644 index 00000000..6016f15e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_21.png new file mode 100644 index 00000000..97333fc2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_27.png new file mode 100644 index 00000000..07520d0e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_28.png new file mode 100644 index 00000000..eb6d4611 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_29.png new file mode 100644 index 00000000..62c29f2c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_32.png new file mode 100644 index 00000000..8431e880 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_33.png new file mode 100644 index 00000000..40626228 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_34.png new file mode 100644 index 00000000..2ecda0a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_35.png new file mode 100644 index 00000000..c6002ec5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_54.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_55.png new file mode 100644 index 00000000..ce215bb8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_60.png new file mode 100644 index 00000000..ce1abf24 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_61.png new file mode 100644 index 00000000..0f51f78f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_62.png new file mode 100644 index 00000000..52bb84b9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_63.png new file mode 100644 index 00000000..a111ac3f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/1_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/1_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/1_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_10.png new file mode 100644 index 00000000..9261bea0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_11.png new file mode 100644 index 00000000..6db68cdd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_14.png new file mode 100644 index 00000000..e6ab5775 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_15.png new file mode 100644 index 00000000..87fb6963 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_16.png new file mode 100644 index 00000000..fb67ea87 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_17.png new file mode 100644 index 00000000..fe5c9195 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_18.png new file mode 100644 index 00000000..0335b548 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_19.png new file mode 100644 index 00000000..f4f5a63d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_20.png new file mode 100644 index 00000000..008b2fce Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_21.png new file mode 100644 index 00000000..5d808db3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_22.png new file mode 100644 index 00000000..b8c675b3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_23.png new file mode 100644 index 00000000..8a71a7ae Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_25.png new file mode 100644 index 00000000..dc51d9d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_28.png new file mode 100644 index 00000000..0e5b4c0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_29.png new file mode 100644 index 00000000..3459b9fc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_3.png new file mode 100644 index 00000000..c97ac5d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_30.png new file mode 100644 index 00000000..44575e57 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_31.png new file mode 100644 index 00000000..a357b94c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_32.png new file mode 100644 index 00000000..0d6e6e53 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_33.png new file mode 100644 index 00000000..57e70d4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_34.png new file mode 100644 index 00000000..ee0a4a51 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_35.png new file mode 100644 index 00000000..7b6c1018 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_36.png new file mode 100644 index 00000000..64bb0934 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_37.png new file mode 100644 index 00000000..a6998e61 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_38.png new file mode 100644 index 00000000..40ec7445 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_39.png new file mode 100644 index 00000000..dedaaa6b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_4.png new file mode 100644 index 00000000..e99552d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_40.png new file mode 100644 index 00000000..441083b4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_41.png new file mode 100644 index 00000000..1e896336 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_42.png new file mode 100644 index 00000000..a54fec1d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_43.png new file mode 100644 index 00000000..5e3f34b5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_44.png new file mode 100644 index 00000000..b429052b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_46.png new file mode 100644 index 00000000..663c54ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_47.png new file mode 100644 index 00000000..150dfdc0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_48.png new file mode 100644 index 00000000..dad95b1b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_49.png new file mode 100644 index 00000000..31f60b17 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_5.png new file mode 100644 index 00000000..24500466 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_50.png new file mode 100644 index 00000000..383c179b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_51.png new file mode 100644 index 00000000..d68903fc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_52.png new file mode 100644 index 00000000..264831ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_53.png new file mode 100644 index 00000000..bf87c67b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_55.png new file mode 100644 index 00000000..c16d68c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_56.png new file mode 100644 index 00000000..8a30a2d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_57.png new file mode 100644 index 00000000..7a332006 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_58.png new file mode 100644 index 00000000..07c46b54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_59.png new file mode 100644 index 00000000..596d2419 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_6.png new file mode 100644 index 00000000..8b9b8c20 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_60.png new file mode 100644 index 00000000..d723beb0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_62.png new file mode 100644 index 00000000..128600c3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_63.png new file mode 100644 index 00000000..e0870078 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_7.png new file mode 100644 index 00000000..553c7237 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_8.png new file mode 100644 index 00000000..881ea344 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/20_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/20_9.png new file mode 100644 index 00000000..d85744b6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/20_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_10.png new file mode 100644 index 00000000..feb692cb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_11.png new file mode 100644 index 00000000..168df0a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_12.png new file mode 100644 index 00000000..a9866b4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_13.png new file mode 100644 index 00000000..96450fd6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_15.png new file mode 100644 index 00000000..76ac15c1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_16.png new file mode 100644 index 00000000..a7e243e9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_19.png new file mode 100644 index 00000000..b09d2883 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_20.png new file mode 100644 index 00000000..4efd8e2f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_21.png new file mode 100644 index 00000000..ce6ddcd5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_22.png new file mode 100644 index 00000000..d955442e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_23.png new file mode 100644 index 00000000..18a6d97c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_28.png new file mode 100644 index 00000000..1f60d70f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_29.png new file mode 100644 index 00000000..dbf8b156 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_3.png new file mode 100644 index 00000000..6a98f7e9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_30.png new file mode 100644 index 00000000..634af6ea Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_31.png new file mode 100644 index 00000000..acd29161 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_32.png new file mode 100644 index 00000000..f67cc230 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_33.png new file mode 100644 index 00000000..c4a94ab8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_34.png new file mode 100644 index 00000000..024995e4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_35.png new file mode 100644 index 00000000..4dfc826d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_36.png new file mode 100644 index 00000000..a0115bf8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_37.png new file mode 100644 index 00000000..9d2f41d8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_38.png new file mode 100644 index 00000000..3e930dd4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_39.png new file mode 100644 index 00000000..9dce3d81 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_4.png new file mode 100644 index 00000000..1ef14dcf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_42.png new file mode 100644 index 00000000..a3dc73ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_43.png new file mode 100644 index 00000000..8648c410 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_46.png new file mode 100644 index 00000000..05236274 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_47.png new file mode 100644 index 00000000..b51775dc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_48.png new file mode 100644 index 00000000..ccd8ad7c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_49.png new file mode 100644 index 00000000..7548fcf0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_5.png new file mode 100644 index 00000000..5d9fb809 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_50.png new file mode 100644 index 00000000..40059e79 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_51.png new file mode 100644 index 00000000..eaf89b7a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_52.png new file mode 100644 index 00000000..f20dfb8d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_53.png new file mode 100644 index 00000000..8e1d0c54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_56.png new file mode 100644 index 00000000..65306e3c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_57.png new file mode 100644 index 00000000..5813da43 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_59.png new file mode 100644 index 00000000..1b6cf70b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_6.png new file mode 100644 index 00000000..4775ca92 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_60.png new file mode 100644 index 00000000..0a24b334 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_61.png new file mode 100644 index 00000000..79bdc1cc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_62.png new file mode 100644 index 00000000..899eca8d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_7.png new file mode 100644 index 00000000..f4173cab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_8.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/21_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/21_9.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/21_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_10.png new file mode 100644 index 00000000..0cbfbb4a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_11.png new file mode 100644 index 00000000..cc5759b6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_12.png new file mode 100644 index 00000000..5b8b6fba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_13.png new file mode 100644 index 00000000..b6cc33a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_14.png new file mode 100644 index 00000000..ad6e7753 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_15.png new file mode 100644 index 00000000..0888bec5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_16.png new file mode 100644 index 00000000..01efaafd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_17.png new file mode 100644 index 00000000..eb50579e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_20.png new file mode 100644 index 00000000..0dfa7d29 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_21.png new file mode 100644 index 00000000..7bfc32c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_22.png new file mode 100644 index 00000000..ea571748 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_3.png new file mode 100644 index 00000000..1da7b72a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_30.png new file mode 100644 index 00000000..900f5c0d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_31.png new file mode 100644 index 00000000..9c744a9f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_32.png new file mode 100644 index 00000000..223fdb6e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_33.png new file mode 100644 index 00000000..ebfa600b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_34.png new file mode 100644 index 00000000..39b889f4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_35.png new file mode 100644 index 00000000..3bdc96f6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_36.png new file mode 100644 index 00000000..a201f491 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_37.png new file mode 100644 index 00000000..11eab8d5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_38.png new file mode 100644 index 00000000..c01142cc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_4.png new file mode 100644 index 00000000..b3430b8b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_45.png new file mode 100644 index 00000000..0ae5994f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_46.png new file mode 100644 index 00000000..042ff8fd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_5.png new file mode 100644 index 00000000..fde6e355 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_53.png new file mode 100644 index 00000000..fc497d79 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_54.png new file mode 100644 index 00000000..a442f620 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_56.png new file mode 100644 index 00000000..d961045a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_57.png new file mode 100644 index 00000000..5e4876aa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_59.png new file mode 100644 index 00000000..ef0893ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_6.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_60.png new file mode 100644 index 00000000..e2daf587 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_61.png new file mode 100644 index 00000000..5066fd96 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_62.png new file mode 100644 index 00000000..7d014dc7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_7.png new file mode 100644 index 00000000..2ff6f8e8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_8.png new file mode 100644 index 00000000..4b1df3fe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/22_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/22_9.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/22_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_10.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_11.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_12.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_13.png new file mode 100644 index 00000000..be68ec9b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_14.png new file mode 100644 index 00000000..3e9fb5c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_15.png new file mode 100644 index 00000000..a484b3a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_16.png new file mode 100644 index 00000000..dc572356 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_17.png new file mode 100644 index 00000000..3766d039 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_18.png new file mode 100644 index 00000000..a394900c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_2.png new file mode 100644 index 00000000..bbd2da26 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_3.png new file mode 100644 index 00000000..3a93cc61 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_31.png new file mode 100644 index 00000000..48d88c2f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_32.png new file mode 100644 index 00000000..26822530 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_33.png new file mode 100644 index 00000000..5ca433d0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_34.png new file mode 100644 index 00000000..bb4a3e2c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_35.png new file mode 100644 index 00000000..d7410755 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_36.png new file mode 100644 index 00000000..f3cd6fa3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_37.png new file mode 100644 index 00000000..dea72d6b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_4.png new file mode 100644 index 00000000..fadd3473 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_45.png new file mode 100644 index 00000000..168bb735 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_5.png new file mode 100644 index 00000000..345a0fe3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_54.png new file mode 100644 index 00000000..97ba0b59 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_55.png new file mode 100644 index 00000000..8e54c684 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_56.png new file mode 100644 index 00000000..1d025584 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_57.png new file mode 100644 index 00000000..17e98393 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_58.png new file mode 100644 index 00000000..00b73f50 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_59.png new file mode 100644 index 00000000..2f135bb9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_6.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_60.png new file mode 100644 index 00000000..3d8413e0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_61.png new file mode 100644 index 00000000..002e9fc5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_7.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_8.png new file mode 100644 index 00000000..5daae520 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/23_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/23_9.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/23_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_10.png new file mode 100644 index 00000000..5991d046 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_11.png new file mode 100644 index 00000000..5991d046 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_12.png new file mode 100644 index 00000000..5991d046 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_13.png new file mode 100644 index 00000000..1ccd0461 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_14.png new file mode 100644 index 00000000..cb6ea1e1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_15.png new file mode 100644 index 00000000..740beb15 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_16.png new file mode 100644 index 00000000..efc5342e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_17.png new file mode 100644 index 00000000..5e296576 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_18.png new file mode 100644 index 00000000..e62aec05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_2.png new file mode 100644 index 00000000..f3335e4b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_3.png new file mode 100644 index 00000000..8ce7465c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_32.png new file mode 100644 index 00000000..2bca7e8e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_33.png new file mode 100644 index 00000000..aba3bab5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_34.png new file mode 100644 index 00000000..ca624df4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_35.png new file mode 100644 index 00000000..ec9bc785 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_36.png new file mode 100644 index 00000000..1bd4e96a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_4.png new file mode 100644 index 00000000..036a5d32 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_43.png new file mode 100644 index 00000000..82ab8eb3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_45.png new file mode 100644 index 00000000..fd06c9a4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_5.png new file mode 100644 index 00000000..36ed91c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_54.png new file mode 100644 index 00000000..c76919e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_55.png new file mode 100644 index 00000000..1e0df145 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_56.png new file mode 100644 index 00000000..71271288 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_57.png new file mode 100644 index 00000000..fa0fb453 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_58.png new file mode 100644 index 00000000..ef9cb2d2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_59.png new file mode 100644 index 00000000..b1f21f5d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_6.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_7.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_8.png new file mode 100644 index 00000000..c27af9a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/24_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/24_9.png new file mode 100644 index 00000000..06ec4a8e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/24_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_10.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_11.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_12.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_13.png new file mode 100644 index 00000000..31ab53ff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_14.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_15.png new file mode 100644 index 00000000..f436e684 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_16.png new file mode 100644 index 00000000..be012ad5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_2.png new file mode 100644 index 00000000..ca152afe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_3.png new file mode 100644 index 00000000..0df967af Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_32.png new file mode 100644 index 00000000..d54d9f5a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_33.png new file mode 100644 index 00000000..bce7f465 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_34.png new file mode 100644 index 00000000..85c9ab81 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_35.png new file mode 100644 index 00000000..47792e0c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_4.png new file mode 100644 index 00000000..d50ec5c3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_43.png new file mode 100644 index 00000000..b9c65e38 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_5.png new file mode 100644 index 00000000..1bb1c464 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_54.png new file mode 100644 index 00000000..c992037d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_55.png new file mode 100644 index 00000000..28ca994c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_57.png new file mode 100644 index 00000000..3e62ca63 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_6.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_7.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_8.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/25_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/25_9.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/25_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_10.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_11.png new file mode 100644 index 00000000..d4cc1396 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_12.png new file mode 100644 index 00000000..b733dc6c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_13.png new file mode 100644 index 00000000..751fc162 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_14.png new file mode 100644 index 00000000..09e06418 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_15.png new file mode 100644 index 00000000..0d52e608 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_2.png new file mode 100644 index 00000000..947d8247 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_24.png new file mode 100644 index 00000000..d0d1a3f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_3.png new file mode 100644 index 00000000..57e03f96 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_31.png new file mode 100644 index 00000000..a5239858 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_32.png new file mode 100644 index 00000000..74701674 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_35.png new file mode 100644 index 00000000..fd40e21b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_4.png new file mode 100644 index 00000000..03020d88 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_44.png new file mode 100644 index 00000000..0c657b92 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_5.png new file mode 100644 index 00000000..b52bb1ff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_53.png new file mode 100644 index 00000000..947b2e5a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_54.png new file mode 100644 index 00000000..515b2de5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_55.png new file mode 100644 index 00000000..2ee5697d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_56.png new file mode 100644 index 00000000..93b2cd76 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_57.png new file mode 100644 index 00000000..0035c716 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_6.png new file mode 100644 index 00000000..ab007b5a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_7.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_8.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/26_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/26_9.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/26_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_10.png new file mode 100644 index 00000000..ad33b56a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_11.png new file mode 100644 index 00000000..ab593aff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_12.png new file mode 100644 index 00000000..34171bb5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_13.png new file mode 100644 index 00000000..6e48a419 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_14.png new file mode 100644 index 00000000..57545a15 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_15.png new file mode 100644 index 00000000..ac01fd77 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_16.png new file mode 100644 index 00000000..2823818b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_17.png new file mode 100644 index 00000000..7567c839 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_2.png new file mode 100644 index 00000000..3a5c3017 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_24.png new file mode 100644 index 00000000..ff67e262 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_28.png new file mode 100644 index 00000000..afd61305 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_29.png new file mode 100644 index 00000000..53aad4b7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_3.png new file mode 100644 index 00000000..74199989 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_4.png new file mode 100644 index 00000000..102ad48d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_44.png new file mode 100644 index 00000000..e2815f0c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_45.png new file mode 100644 index 00000000..81030e2b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_5.png new file mode 100644 index 00000000..6a118d51 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_51.png new file mode 100644 index 00000000..d098a51a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_52.png new file mode 100644 index 00000000..560db11b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_53.png new file mode 100644 index 00000000..a04e93c3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_55.png new file mode 100644 index 00000000..51ef2fb4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_56.png new file mode 100644 index 00000000..871f0c08 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_57.png new file mode 100644 index 00000000..78f75689 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_6.png new file mode 100644 index 00000000..0456426a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_7.png new file mode 100644 index 00000000..1d52ec1a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_8.png new file mode 100644 index 00000000..4920a5eb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/27_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/27_9.png new file mode 100644 index 00000000..631e5396 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/27_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_10.png new file mode 100644 index 00000000..c1c7f627 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_11.png new file mode 100644 index 00000000..0f57d6f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_12.png new file mode 100644 index 00000000..409ee30f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_13.png new file mode 100644 index 00000000..9a1dc9d2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_14.png new file mode 100644 index 00000000..6ae4d6db Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_15.png new file mode 100644 index 00000000..02796dc2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_16.png new file mode 100644 index 00000000..f44ce24d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_17.png new file mode 100644 index 00000000..0d383b88 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_25.png new file mode 100644 index 00000000..164140e7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_26.png new file mode 100644 index 00000000..4a09d858 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_27.png new file mode 100644 index 00000000..0fdece78 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_28.png new file mode 100644 index 00000000..6d12f566 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_29.png new file mode 100644 index 00000000..0e8043d0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_3.png new file mode 100644 index 00000000..48a969e5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_4.png new file mode 100644 index 00000000..3d209f35 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_5.png new file mode 100644 index 00000000..e8155d52 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_51.png new file mode 100644 index 00000000..5c0c1fd4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_52.png new file mode 100644 index 00000000..6ce06d13 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_53.png new file mode 100644 index 00000000..4a71df03 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_57.png new file mode 100644 index 00000000..b13dba42 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_6.png new file mode 100644 index 00000000..07c6b155 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_7.png new file mode 100644 index 00000000..3feac99e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_8.png new file mode 100644 index 00000000..0c74a922 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/28_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/28_9.png new file mode 100644 index 00000000..64d5c444 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/28_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_11.png new file mode 100644 index 00000000..a48ad2cf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_15.png new file mode 100644 index 00000000..2545ab9c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_16.png new file mode 100644 index 00000000..2fdce226 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_17.png new file mode 100644 index 00000000..16caa99a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_19.png new file mode 100644 index 00000000..6084ec87 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_25.png new file mode 100644 index 00000000..5bb97775 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_26.png new file mode 100644 index 00000000..1a54a6d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_27.png new file mode 100644 index 00000000..8b2748e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_28.png new file mode 100644 index 00000000..61f57b56 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_29.png new file mode 100644 index 00000000..a2229377 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_30.png new file mode 100644 index 00000000..60f44f5c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_33.png new file mode 100644 index 00000000..a527d9f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_39.png new file mode 100644 index 00000000..3d98372e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_4.png new file mode 100644 index 00000000..20c2c398 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_5.png new file mode 100644 index 00000000..d3ce0059 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_50.png new file mode 100644 index 00000000..3509718b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_51.png new file mode 100644 index 00000000..a2d39b49 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_52.png new file mode 100644 index 00000000..9461e066 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_6.png new file mode 100644 index 00000000..76ab1317 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_7.png new file mode 100644 index 00000000..d051ca69 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_8.png new file mode 100644 index 00000000..4f0c3e49 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/29_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/29_9.png new file mode 100644 index 00000000..e44fcc65 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/29_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_14.png new file mode 100644 index 00000000..645b2a2f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_15.png new file mode 100644 index 00000000..ed7ba56f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_16.png new file mode 100644 index 00000000..ffca69d8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_17.png new file mode 100644 index 00000000..6dbf46cf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_18.png new file mode 100644 index 00000000..80f61d09 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_20.png new file mode 100644 index 00000000..563f1aba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_27.png new file mode 100644 index 00000000..cd1e5a51 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_33.png new file mode 100644 index 00000000..4fd75082 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_34.png new file mode 100644 index 00000000..08d488c5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_35.png new file mode 100644 index 00000000..f52664fd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_54.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_55.png new file mode 100644 index 00000000..5a0de708 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_56.png new file mode 100644 index 00000000..8de5e625 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_58.png new file mode 100644 index 00000000..5336fb64 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_60.png new file mode 100644 index 00000000..c6096079 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_61.png new file mode 100644 index 00000000..2d81d892 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_62.png new file mode 100644 index 00000000..86d12fe1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_63.png new file mode 100644 index 00000000..164babee Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/2_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/2_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/2_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_13.png new file mode 100644 index 00000000..ca084a0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_17.png new file mode 100644 index 00000000..9c83bd94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_18.png new file mode 100644 index 00000000..ef007c58 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_19.png new file mode 100644 index 00000000..c0703265 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_20.png new file mode 100644 index 00000000..21fdefb1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_21.png new file mode 100644 index 00000000..d979739f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_23.png new file mode 100644 index 00000000..18af4205 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_24.png new file mode 100644 index 00000000..c6edd022 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_25.png new file mode 100644 index 00000000..0f57a586 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_26.png new file mode 100644 index 00000000..65e592e0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_27.png new file mode 100644 index 00000000..3f1fed94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_28.png new file mode 100644 index 00000000..c6aab851 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_29.png new file mode 100644 index 00000000..ca8aca1c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_30.png new file mode 100644 index 00000000..c3b30fa0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_31.png new file mode 100644 index 00000000..555144b5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_34.png new file mode 100644 index 00000000..75309bd1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_39.png new file mode 100644 index 00000000..6b5ae920 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_49.png new file mode 100644 index 00000000..609c25dc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_5.png new file mode 100644 index 00000000..ea43d30a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_50.png new file mode 100644 index 00000000..f0ac68d2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_52.png new file mode 100644 index 00000000..e367972e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_6.png new file mode 100644 index 00000000..189b69ef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/30_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/30_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/30_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_17.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_18.png new file mode 100644 index 00000000..7b4a5025 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_19.png new file mode 100644 index 00000000..10cfd01b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_20.png new file mode 100644 index 00000000..d10fbd50 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_21.png new file mode 100644 index 00000000..2118e49f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_22.png new file mode 100644 index 00000000..adb66c36 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_23.png new file mode 100644 index 00000000..62a04df0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_24.png new file mode 100644 index 00000000..d1a76bcb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_25.png new file mode 100644 index 00000000..41b46932 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_26.png new file mode 100644 index 00000000..70835727 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_27.png new file mode 100644 index 00000000..7acceb77 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_28.png new file mode 100644 index 00000000..7ca1008b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_29.png new file mode 100644 index 00000000..78877349 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_30.png new file mode 100644 index 00000000..dbd78db8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_31.png new file mode 100644 index 00000000..29622be5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_34.png new file mode 100644 index 00000000..bfd166d1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_49.png new file mode 100644 index 00000000..3641a81e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_50.png new file mode 100644 index 00000000..1fcf7d93 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_51.png new file mode 100644 index 00000000..84e89682 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/31_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/31_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/31_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_16.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_17.png new file mode 100644 index 00000000..11b515ad Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_18.png new file mode 100644 index 00000000..f28fec92 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_19.png new file mode 100644 index 00000000..ad6d271c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_20.png new file mode 100644 index 00000000..f93b1bbe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_21.png new file mode 100644 index 00000000..385e7c3b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_22.png new file mode 100644 index 00000000..ea1fabf0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_23.png new file mode 100644 index 00000000..1bc47538 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_24.png new file mode 100644 index 00000000..8651dc5a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_25.png new file mode 100644 index 00000000..1fc18eaf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_26.png new file mode 100644 index 00000000..f1ed3205 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_27.png new file mode 100644 index 00000000..a92ebffc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_28.png new file mode 100644 index 00000000..2d6dce07 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_29.png new file mode 100644 index 00000000..17f3e96d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_30.png new file mode 100644 index 00000000..65808d81 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_31.png new file mode 100644 index 00000000..eca570ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_32.png new file mode 100644 index 00000000..2ab86f07 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_43.png new file mode 100644 index 00000000..9982c96f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_49.png new file mode 100644 index 00000000..25ce4446 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_50.png new file mode 100644 index 00000000..49de0804 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_51.png new file mode 100644 index 00000000..bfd47082 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/32_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/32_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/32_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_14.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_15.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_16.png new file mode 100644 index 00000000..10f247e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_17.png new file mode 100644 index 00000000..63508d58 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_18.png new file mode 100644 index 00000000..41350361 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_19.png new file mode 100644 index 00000000..57fce035 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_20.png new file mode 100644 index 00000000..d3d745bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_21.png new file mode 100644 index 00000000..dd746b64 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_22.png new file mode 100644 index 00000000..942249fc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_23.png new file mode 100644 index 00000000..f45ae2c8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_24.png new file mode 100644 index 00000000..b549c732 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_25.png new file mode 100644 index 00000000..a11b1134 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_26.png new file mode 100644 index 00000000..a0978940 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_27.png new file mode 100644 index 00000000..c8c0b3f8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_28.png new file mode 100644 index 00000000..b9b68142 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_29.png new file mode 100644 index 00000000..614b9c55 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_30.png new file mode 100644 index 00000000..119a31a9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_31.png new file mode 100644 index 00000000..20c801cf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_32.png new file mode 100644 index 00000000..57f846c8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_49.png new file mode 100644 index 00000000..fff4f51a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_50.png new file mode 100644 index 00000000..371a8193 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_7.png new file mode 100644 index 00000000..071d7da0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_8.png new file mode 100644 index 00000000..7826f346 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/33_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/33_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/33_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_10.png new file mode 100644 index 00000000..ac7aa24c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_14.png new file mode 100644 index 00000000..f51056c7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_15.png new file mode 100644 index 00000000..6047015d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_16.png new file mode 100644 index 00000000..8daf5e48 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_17.png new file mode 100644 index 00000000..ff748f04 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_18.png new file mode 100644 index 00000000..83ec27f1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_19.png new file mode 100644 index 00000000..0b643e57 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_20.png new file mode 100644 index 00000000..923db4e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_21.png new file mode 100644 index 00000000..9253ae9f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_22.png new file mode 100644 index 00000000..0eb3abb3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_23.png new file mode 100644 index 00000000..ddacfdfc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_24.png new file mode 100644 index 00000000..6169f793 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_25.png new file mode 100644 index 00000000..4097b133 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_26.png new file mode 100644 index 00000000..c6e9e558 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_27.png new file mode 100644 index 00000000..d69dccd6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_28.png new file mode 100644 index 00000000..5e53226d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_29.png new file mode 100644 index 00000000..aa99288c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_30.png new file mode 100644 index 00000000..bd64d6b1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_31.png new file mode 100644 index 00000000..8295347f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_32.png new file mode 100644 index 00000000..2aaef323 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_33.png new file mode 100644 index 00000000..00e44794 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_34.png new file mode 100644 index 00000000..d229cc12 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_35.png new file mode 100644 index 00000000..32cbe1de Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_36.png new file mode 100644 index 00000000..226748df Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_37.png new file mode 100644 index 00000000..6d89998a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_49.png new file mode 100644 index 00000000..cb9340e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_50.png new file mode 100644 index 00000000..e7878e84 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_6.png new file mode 100644 index 00000000..6b65a89d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_7.png new file mode 100644 index 00000000..e6167693 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_8.png new file mode 100644 index 00000000..84fe38be Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/34_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/34_9.png new file mode 100644 index 00000000..cc9c39c8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/34_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_10.png new file mode 100644 index 00000000..4e58c053 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_11.png new file mode 100644 index 00000000..faada46e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_13.png new file mode 100644 index 00000000..f6e87bcf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_14.png new file mode 100644 index 00000000..31d3a3e7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_15.png new file mode 100644 index 00000000..5fb2f63f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_16.png new file mode 100644 index 00000000..1a868a7e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_17.png new file mode 100644 index 00000000..1a52437e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_18.png new file mode 100644 index 00000000..42ece9ff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_19.png new file mode 100644 index 00000000..ec941cec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_20.png new file mode 100644 index 00000000..bbba8049 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_21.png new file mode 100644 index 00000000..eb1a5990 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_22.png new file mode 100644 index 00000000..daf7e46f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_23.png new file mode 100644 index 00000000..e5ceb237 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_24.png new file mode 100644 index 00000000..ed17f92e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_25.png new file mode 100644 index 00000000..ad04cfbf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_26.png new file mode 100644 index 00000000..b743a130 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_27.png new file mode 100644 index 00000000..12bb569f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_28.png new file mode 100644 index 00000000..0cf0c551 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_29.png new file mode 100644 index 00000000..26b643d5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_30.png new file mode 100644 index 00000000..d023bcc1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_31.png new file mode 100644 index 00000000..0ec56413 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_32.png new file mode 100644 index 00000000..e85f20f7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_33.png new file mode 100644 index 00000000..91a1f495 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_34.png new file mode 100644 index 00000000..488ae8f4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_35.png new file mode 100644 index 00000000..b04e58ad Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_36.png new file mode 100644 index 00000000..c0b5b482 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_37.png new file mode 100644 index 00000000..58b792ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_38.png new file mode 100644 index 00000000..bea60bba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_49.png new file mode 100644 index 00000000..3cb5c37d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_50.png new file mode 100644 index 00000000..223e9235 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_6.png new file mode 100644 index 00000000..943932e4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_7.png new file mode 100644 index 00000000..b1108416 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_8.png new file mode 100644 index 00000000..b56a9249 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/35_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/35_9.png new file mode 100644 index 00000000..06709bb6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/35_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_10.png new file mode 100644 index 00000000..e269dc05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_13.png new file mode 100644 index 00000000..cfa18bc5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_14.png new file mode 100644 index 00000000..0f8258a7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_15.png new file mode 100644 index 00000000..96da254a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_16.png new file mode 100644 index 00000000..296df219 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_17.png new file mode 100644 index 00000000..776fe5b2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_18.png new file mode 100644 index 00000000..53530f97 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_19.png new file mode 100644 index 00000000..0396d4bd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_20.png new file mode 100644 index 00000000..aabf782a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_21.png new file mode 100644 index 00000000..bf62d777 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_22.png new file mode 100644 index 00000000..80352604 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_23.png new file mode 100644 index 00000000..4a6dd8e7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_24.png new file mode 100644 index 00000000..b3171de4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_25.png new file mode 100644 index 00000000..d922e13d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_26.png new file mode 100644 index 00000000..c8c31d8d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_27.png new file mode 100644 index 00000000..372d6a4e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_28.png new file mode 100644 index 00000000..fb64e361 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_29.png new file mode 100644 index 00000000..780634ee Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_30.png new file mode 100644 index 00000000..106a2435 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_31.png new file mode 100644 index 00000000..7cdc72ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_32.png new file mode 100644 index 00000000..4cffe527 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_33.png new file mode 100644 index 00000000..6657cbaf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_34.png new file mode 100644 index 00000000..7cf96732 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_35.png new file mode 100644 index 00000000..eb1cbf6a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_36.png new file mode 100644 index 00000000..2791e24c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_37.png new file mode 100644 index 00000000..1ab82908 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_38.png new file mode 100644 index 00000000..f1317d86 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_49.png new file mode 100644 index 00000000..bcde4087 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_50.png new file mode 100644 index 00000000..507f6149 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_51.png new file mode 100644 index 00000000..6a4c0429 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_6.png new file mode 100644 index 00000000..e7ae6016 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_7.png new file mode 100644 index 00000000..5638cdcb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_8.png new file mode 100644 index 00000000..d424e18c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/36_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/36_9.png new file mode 100644 index 00000000..9568ae57 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/36_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_13.png new file mode 100644 index 00000000..d5ca4511 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_14.png new file mode 100644 index 00000000..ddcfe2c7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_15.png new file mode 100644 index 00000000..bb672359 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_16.png new file mode 100644 index 00000000..e40c29bb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_17.png new file mode 100644 index 00000000..243fa0c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_18.png new file mode 100644 index 00000000..a5f275b5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_19.png new file mode 100644 index 00000000..196860da Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_20.png new file mode 100644 index 00000000..b4f95764 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_21.png new file mode 100644 index 00000000..5f0bccfc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_22.png new file mode 100644 index 00000000..cf163d24 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_23.png new file mode 100644 index 00000000..708b6a07 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_24.png new file mode 100644 index 00000000..ccc5553a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_25.png new file mode 100644 index 00000000..6b081214 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_26.png new file mode 100644 index 00000000..c066b46c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_27.png new file mode 100644 index 00000000..44890592 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_28.png new file mode 100644 index 00000000..a8fb5566 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_29.png new file mode 100644 index 00000000..ad9567b7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_30.png new file mode 100644 index 00000000..6c522cc6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_31.png new file mode 100644 index 00000000..fd778656 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_32.png new file mode 100644 index 00000000..4922fb45 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_33.png new file mode 100644 index 00000000..ac5ee68e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_34.png new file mode 100644 index 00000000..0e864a90 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_35.png new file mode 100644 index 00000000..994e9580 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_36.png new file mode 100644 index 00000000..ac3e28a5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_37.png new file mode 100644 index 00000000..7f093290 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_38.png new file mode 100644 index 00000000..8fd6a80f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_49.png new file mode 100644 index 00000000..10d7e8f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_50.png new file mode 100644 index 00000000..6d87e13a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_51.png new file mode 100644 index 00000000..f1677f0b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_6.png new file mode 100644 index 00000000..6c265c6f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_7.png new file mode 100644 index 00000000..b1f97951 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_8.png new file mode 100644 index 00000000..2bc54555 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/37_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/37_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/37_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_14.png new file mode 100644 index 00000000..25dd959d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_15.png new file mode 100644 index 00000000..8e8d6d23 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_16.png new file mode 100644 index 00000000..7feabfa5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_17.png new file mode 100644 index 00000000..34e13d3a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_18.png new file mode 100644 index 00000000..12b31094 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_19.png new file mode 100644 index 00000000..6b14ad9f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_20.png new file mode 100644 index 00000000..6f6ef14e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_21.png new file mode 100644 index 00000000..07f9b13c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_22.png new file mode 100644 index 00000000..152c5e38 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_23.png new file mode 100644 index 00000000..7f20d518 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_24.png new file mode 100644 index 00000000..36d47033 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_25.png new file mode 100644 index 00000000..6f3e4cea Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_26.png new file mode 100644 index 00000000..3b21b665 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_27.png new file mode 100644 index 00000000..11b9f6ba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_28.png new file mode 100644 index 00000000..74d4799f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_29.png new file mode 100644 index 00000000..c188dd5c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_30.png new file mode 100644 index 00000000..1b4feaf8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_31.png new file mode 100644 index 00000000..16713c46 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_32.png new file mode 100644 index 00000000..918af087 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_33.png new file mode 100644 index 00000000..e8660765 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_34.png new file mode 100644 index 00000000..85a612ca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_35.png new file mode 100644 index 00000000..0068e69f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_36.png new file mode 100644 index 00000000..81f6ee89 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_41.png new file mode 100644 index 00000000..f0076cbb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_49.png new file mode 100644 index 00000000..012fb821 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_50.png new file mode 100644 index 00000000..d28d56f0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_6.png new file mode 100644 index 00000000..d072d7f6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_7.png new file mode 100644 index 00000000..445a4719 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/38_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/38_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/38_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_14.png new file mode 100644 index 00000000..44c763bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_15.png new file mode 100644 index 00000000..47d7e053 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_16.png new file mode 100644 index 00000000..cdca73b2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_17.png new file mode 100644 index 00000000..ba524f54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_18.png new file mode 100644 index 00000000..309f4059 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_19.png new file mode 100644 index 00000000..addcfa5b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_20.png new file mode 100644 index 00000000..4629ccc7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_21.png new file mode 100644 index 00000000..625fe0a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_22.png new file mode 100644 index 00000000..4e94fe04 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_23.png new file mode 100644 index 00000000..b220f72c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_24.png new file mode 100644 index 00000000..58a36017 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_25.png new file mode 100644 index 00000000..3a190127 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_26.png new file mode 100644 index 00000000..e7c9c969 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_27.png new file mode 100644 index 00000000..7c41981d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_28.png new file mode 100644 index 00000000..db835956 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_29.png new file mode 100644 index 00000000..ba03ac93 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_30.png new file mode 100644 index 00000000..af2c2d09 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_31.png new file mode 100644 index 00000000..684542eb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_32.png new file mode 100644 index 00000000..0482d413 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_33.png new file mode 100644 index 00000000..8adfde1d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_34.png new file mode 100644 index 00000000..953345b9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_35.png new file mode 100644 index 00000000..12901177 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_36.png new file mode 100644 index 00000000..a54c6150 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_48.png new file mode 100644 index 00000000..db116803 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_49.png new file mode 100644 index 00000000..ef814fb7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_6.png new file mode 100644 index 00000000..f5611c33 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/39_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/39_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/39_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_13.png new file mode 100644 index 00000000..8c620e63 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_14.png new file mode 100644 index 00000000..0406bec4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_15.png new file mode 100644 index 00000000..d72826a5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_16.png new file mode 100644 index 00000000..329aa742 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_17.png new file mode 100644 index 00000000..19ff5424 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_18.png new file mode 100644 index 00000000..bbf4ea26 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_19.png new file mode 100644 index 00000000..a7916aee Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_20.png new file mode 100644 index 00000000..66164477 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_27.png new file mode 100644 index 00000000..98171e8b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_28.png new file mode 100644 index 00000000..804bb5ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_30.png new file mode 100644 index 00000000..142e0107 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_31.png new file mode 100644 index 00000000..4ef6b147 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_32.png new file mode 100644 index 00000000..9e78e143 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_33.png new file mode 100644 index 00000000..7e93bc74 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_34.png new file mode 100644 index 00000000..02ec1f19 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_35.png new file mode 100644 index 00000000..5f21c04b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_36.png new file mode 100644 index 00000000..48ab2260 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_54.png new file mode 100644 index 00000000..a995d524 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_55.png new file mode 100644 index 00000000..cd8b8797 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_56.png new file mode 100644 index 00000000..68b3f2a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_58.png new file mode 100644 index 00000000..768ce105 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_59.png new file mode 100644 index 00000000..e8a58cef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_60.png new file mode 100644 index 00000000..442875f1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_61.png new file mode 100644 index 00000000..34acc81c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_63.png new file mode 100644 index 00000000..fc7d28e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/3_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/3_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/3_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_14.png new file mode 100644 index 00000000..228589fb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_15.png new file mode 100644 index 00000000..6616c29e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_16.png new file mode 100644 index 00000000..a4835452 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_17.png new file mode 100644 index 00000000..c9b99789 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_18.png new file mode 100644 index 00000000..f59f6eff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_19.png new file mode 100644 index 00000000..9c9d4e99 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_20.png new file mode 100644 index 00000000..ee4e36fe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_21.png new file mode 100644 index 00000000..19ee3089 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_22.png new file mode 100644 index 00000000..7189ef6f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_23.png new file mode 100644 index 00000000..f1a7f9ef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_24.png new file mode 100644 index 00000000..d02f5eaf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_25.png new file mode 100644 index 00000000..2bf3689c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_26.png new file mode 100644 index 00000000..7bc26d3c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_27.png new file mode 100644 index 00000000..74bf2269 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_28.png new file mode 100644 index 00000000..15a0f42a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_29.png new file mode 100644 index 00000000..83467625 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_30.png new file mode 100644 index 00000000..c133387b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_31.png new file mode 100644 index 00000000..8af6106f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_33.png new file mode 100644 index 00000000..03412f2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_34.png new file mode 100644 index 00000000..958b35bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_35.png new file mode 100644 index 00000000..867994e5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_36.png new file mode 100644 index 00000000..14a805ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_41.png new file mode 100644 index 00000000..e5fafc16 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_47.png new file mode 100644 index 00000000..22adc991 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_48.png new file mode 100644 index 00000000..728210b2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_5.png new file mode 100644 index 00000000..3efd9a54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_6.png new file mode 100644 index 00000000..3e4bc6b0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_7.png new file mode 100644 index 00000000..ea74e13b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/40_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/40_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/40_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_11.png new file mode 100644 index 00000000..34062b03 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_12.png new file mode 100644 index 00000000..904ddda0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_13.png new file mode 100644 index 00000000..0ed44931 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_14.png new file mode 100644 index 00000000..9b2ae769 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_15.png new file mode 100644 index 00000000..81fd6d87 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_16.png new file mode 100644 index 00000000..a6d2bf85 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_17.png new file mode 100644 index 00000000..247041e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_18.png new file mode 100644 index 00000000..6c6f4491 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_19.png new file mode 100644 index 00000000..e3d681c3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_20.png new file mode 100644 index 00000000..d08b3229 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_21.png new file mode 100644 index 00000000..cd3820cc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_22.png new file mode 100644 index 00000000..a0657a3e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_23.png new file mode 100644 index 00000000..f3910d62 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_24.png new file mode 100644 index 00000000..84afca7d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_25.png new file mode 100644 index 00000000..4a7fb71d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_26.png new file mode 100644 index 00000000..9a670c94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_27.png new file mode 100644 index 00000000..a8e8ae1c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_28.png new file mode 100644 index 00000000..a62d72dc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_29.png new file mode 100644 index 00000000..96a4463c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_30.png new file mode 100644 index 00000000..ac7d22b6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_32.png new file mode 100644 index 00000000..41291a02 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_33.png new file mode 100644 index 00000000..4f75af8f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_34.png new file mode 100644 index 00000000..19a36c29 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_35.png new file mode 100644 index 00000000..56afa808 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_41.png new file mode 100644 index 00000000..3bb8dd36 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_47.png new file mode 100644 index 00000000..e6a301b1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_48.png new file mode 100644 index 00000000..4dfbb752 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_5.png new file mode 100644 index 00000000..06f684df Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_6.png new file mode 100644 index 00000000..95dfb007 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_7.png new file mode 100644 index 00000000..b970c7bb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/41_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/41_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/41_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_10.png new file mode 100644 index 00000000..7dd4ba2c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_11.png new file mode 100644 index 00000000..f5826c0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_12.png new file mode 100644 index 00000000..dbf17b17 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_13.png new file mode 100644 index 00000000..e57fc19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_14.png new file mode 100644 index 00000000..22b3948f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_15.png new file mode 100644 index 00000000..19a458ae Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_16.png new file mode 100644 index 00000000..77e45198 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_17.png new file mode 100644 index 00000000..f8dd5f69 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_18.png new file mode 100644 index 00000000..b4fd2423 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_19.png new file mode 100644 index 00000000..10ec0f3a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_20.png new file mode 100644 index 00000000..b9a46a3a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_21.png new file mode 100644 index 00000000..6476c74f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_22.png new file mode 100644 index 00000000..31674667 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_23.png new file mode 100644 index 00000000..f118b626 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_24.png new file mode 100644 index 00000000..d6ed6e08 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_25.png new file mode 100644 index 00000000..3b590151 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_26.png new file mode 100644 index 00000000..f3fc5571 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_27.png new file mode 100644 index 00000000..67a6b291 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_28.png new file mode 100644 index 00000000..90ee9b86 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_33.png new file mode 100644 index 00000000..67189f69 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_34.png new file mode 100644 index 00000000..f165244d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_35.png new file mode 100644 index 00000000..35475a61 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_4.png new file mode 100644 index 00000000..1a53166c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_47.png new file mode 100644 index 00000000..3514631f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_48.png new file mode 100644 index 00000000..41d79f37 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_5.png new file mode 100644 index 00000000..faed7860 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_51.png new file mode 100644 index 00000000..17935a89 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_6.png new file mode 100644 index 00000000..ed3a8205 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_7.png new file mode 100644 index 00000000..c92692fc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/42_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/42_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/42_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_10.png new file mode 100644 index 00000000..035296e4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_11.png new file mode 100644 index 00000000..1f0b2c84 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_13.png new file mode 100644 index 00000000..afde3ace Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_14.png new file mode 100644 index 00000000..87b187a9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_15.png new file mode 100644 index 00000000..1526ba74 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_16.png new file mode 100644 index 00000000..851345bd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_17.png new file mode 100644 index 00000000..0dff6a0d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_18.png new file mode 100644 index 00000000..a375f722 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_19.png new file mode 100644 index 00000000..15dc33b0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_20.png new file mode 100644 index 00000000..8068ccff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_21.png new file mode 100644 index 00000000..074d2a81 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_22.png new file mode 100644 index 00000000..ea43c08d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_23.png new file mode 100644 index 00000000..f41a4edf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_24.png new file mode 100644 index 00000000..289ed7e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_25.png new file mode 100644 index 00000000..c2f3ee02 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_26.png new file mode 100644 index 00000000..d8162f13 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_27.png new file mode 100644 index 00000000..bccf01b9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_35.png new file mode 100644 index 00000000..d8e87fca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_48.png new file mode 100644 index 00000000..5feecd39 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_49.png new file mode 100644 index 00000000..4c2afd4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_5.png new file mode 100644 index 00000000..cf41c83c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_50.png new file mode 100644 index 00000000..40072b7b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_51.png new file mode 100644 index 00000000..198b30da Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_52.png new file mode 100644 index 00000000..f1a7a1e1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_6.png new file mode 100644 index 00000000..6cb35e36 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/43_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/43_9.png new file mode 100644 index 00000000..1f37557d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/43_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_10.png new file mode 100644 index 00000000..925b1549 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_12.png new file mode 100644 index 00000000..6342adca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_13.png new file mode 100644 index 00000000..683df927 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_14.png new file mode 100644 index 00000000..b88e277e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_15.png new file mode 100644 index 00000000..c9275b21 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_16.png new file mode 100644 index 00000000..64a5b4d7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_17.png new file mode 100644 index 00000000..62be4499 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_18.png new file mode 100644 index 00000000..d616f78c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_19.png new file mode 100644 index 00000000..f289a7da Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_20.png new file mode 100644 index 00000000..f59b7be6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_21.png new file mode 100644 index 00000000..b7660a26 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_22.png new file mode 100644 index 00000000..54b9e423 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_23.png new file mode 100644 index 00000000..07018eb9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_24.png new file mode 100644 index 00000000..ed275fb9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_25.png new file mode 100644 index 00000000..dbacfb38 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_26.png new file mode 100644 index 00000000..5df17abb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_27.png new file mode 100644 index 00000000..1e19838d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_28.png new file mode 100644 index 00000000..07d3b359 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_29.png new file mode 100644 index 00000000..8a8cb5e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_30.png new file mode 100644 index 00000000..a6c0c782 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_31.png new file mode 100644 index 00000000..6671e732 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_32.png new file mode 100644 index 00000000..29e767ad Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_33.png new file mode 100644 index 00000000..f71fadc1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_41.png new file mode 100644 index 00000000..33503d08 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_42.png new file mode 100644 index 00000000..a61946bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_43.png new file mode 100644 index 00000000..cce21d93 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_48.png new file mode 100644 index 00000000..636e87e0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_49.png new file mode 100644 index 00000000..f9359ac3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_50.png new file mode 100644 index 00000000..818879cc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_51.png new file mode 100644 index 00000000..e5f4c006 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_52.png new file mode 100644 index 00000000..44ba3393 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/44_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/44_9.png new file mode 100644 index 00000000..bfa756f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/44_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_11.png new file mode 100644 index 00000000..3229f219 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_12.png new file mode 100644 index 00000000..6684eb91 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_13.png new file mode 100644 index 00000000..11d21225 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_14.png new file mode 100644 index 00000000..3ab6d97a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_15.png new file mode 100644 index 00000000..28ecaa83 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_16.png new file mode 100644 index 00000000..742927e3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_17.png new file mode 100644 index 00000000..e5d6cf3b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_18.png new file mode 100644 index 00000000..a6061663 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_19.png new file mode 100644 index 00000000..805fa51c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_20.png new file mode 100644 index 00000000..b2d170fe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_21.png new file mode 100644 index 00000000..e347040b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_22.png new file mode 100644 index 00000000..2431c261 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_23.png new file mode 100644 index 00000000..a1f56f89 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_24.png new file mode 100644 index 00000000..93ec636f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_25.png new file mode 100644 index 00000000..725bf927 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_26.png new file mode 100644 index 00000000..5c0cd628 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_27.png new file mode 100644 index 00000000..35046e0d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_28.png new file mode 100644 index 00000000..59fadf9d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_29.png new file mode 100644 index 00000000..2d266117 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_30.png new file mode 100644 index 00000000..9292c7a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_31.png new file mode 100644 index 00000000..31066a80 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_32.png new file mode 100644 index 00000000..ffa7e405 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_39.png new file mode 100644 index 00000000..95044d99 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_43.png new file mode 100644 index 00000000..b5f30463 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_48.png new file mode 100644 index 00000000..5e4b48d1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_49.png new file mode 100644 index 00000000..18700e30 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_51.png new file mode 100644 index 00000000..f661d265 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_6.png new file mode 100644 index 00000000..f8f87ae6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_7.png new file mode 100644 index 00000000..19ac49dc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/45_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/45_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/45_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_10.png new file mode 100644 index 00000000..f3b75014 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_11.png new file mode 100644 index 00000000..fcf98053 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_12.png new file mode 100644 index 00000000..63720b0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_13.png new file mode 100644 index 00000000..01aaea47 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_14.png new file mode 100644 index 00000000..a0008645 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_15.png new file mode 100644 index 00000000..d25d9ba7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_16.png new file mode 100644 index 00000000..dbba8fa1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_17.png new file mode 100644 index 00000000..8b28ac8f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_18.png new file mode 100644 index 00000000..d4d70cdc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_19.png new file mode 100644 index 00000000..8bb9eced Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_20.png new file mode 100644 index 00000000..9f5932da Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_21.png new file mode 100644 index 00000000..978b04f0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_22.png new file mode 100644 index 00000000..f5e36417 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_23.png new file mode 100644 index 00000000..b0bc3ab5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_24.png new file mode 100644 index 00000000..5cfe2c5d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_25.png new file mode 100644 index 00000000..b2aafee8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_26.png new file mode 100644 index 00000000..5f14f758 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_27.png new file mode 100644 index 00000000..6ba8944f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_28.png new file mode 100644 index 00000000..b45f2e94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_29.png new file mode 100644 index 00000000..a794152e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_30.png new file mode 100644 index 00000000..be71453c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_48.png new file mode 100644 index 00000000..defe3746 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_5.png new file mode 100644 index 00000000..c8b65b92 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_6.png new file mode 100644 index 00000000..e71ceb30 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/46_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/46_9.png new file mode 100644 index 00000000..c6766128 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/46_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_10.png new file mode 100644 index 00000000..59b67805 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_11.png new file mode 100644 index 00000000..e147641e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_12.png new file mode 100644 index 00000000..b330569c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_13.png new file mode 100644 index 00000000..47d5534c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_14.png new file mode 100644 index 00000000..23b5e824 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_15.png new file mode 100644 index 00000000..65c90e33 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_16.png new file mode 100644 index 00000000..b32b0b15 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_17.png new file mode 100644 index 00000000..c1507808 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_18.png new file mode 100644 index 00000000..632b45d1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_19.png new file mode 100644 index 00000000..f652096f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_20.png new file mode 100644 index 00000000..d3d1470c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_21.png new file mode 100644 index 00000000..cc901cc4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_22.png new file mode 100644 index 00000000..3554feff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_23.png new file mode 100644 index 00000000..099278c5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_24.png new file mode 100644 index 00000000..c59a3d8a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_25.png new file mode 100644 index 00000000..87690048 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_26.png new file mode 100644 index 00000000..11c33d9e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_27.png new file mode 100644 index 00000000..6fdf409e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_28.png new file mode 100644 index 00000000..9f17a1f7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_47.png new file mode 100644 index 00000000..d10865f4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_48.png new file mode 100644 index 00000000..33d7e0ed Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_49.png new file mode 100644 index 00000000..0c257cbe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_5.png new file mode 100644 index 00000000..5658056f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_6.png new file mode 100644 index 00000000..742b1b00 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_7.png new file mode 100644 index 00000000..ffaf542f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/47_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/47_9.png new file mode 100644 index 00000000..0976fcee Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/47_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_10.png new file mode 100644 index 00000000..2fd68423 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_11.png new file mode 100644 index 00000000..b8b6e2ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_12.png new file mode 100644 index 00000000..179df02f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_13.png new file mode 100644 index 00000000..ff3092cf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_14.png new file mode 100644 index 00000000..56eb5e10 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_15.png new file mode 100644 index 00000000..3f6fa383 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_16.png new file mode 100644 index 00000000..75586ae1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_17.png new file mode 100644 index 00000000..1b235945 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_18.png new file mode 100644 index 00000000..009e1f75 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_19.png new file mode 100644 index 00000000..95d26e27 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_20.png new file mode 100644 index 00000000..b7722736 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_21.png new file mode 100644 index 00000000..42fd3174 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_22.png new file mode 100644 index 00000000..3f3980cd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_23.png new file mode 100644 index 00000000..f502d309 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_24.png new file mode 100644 index 00000000..25c68dd8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_25.png new file mode 100644 index 00000000..faeff70d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_26.png new file mode 100644 index 00000000..41fad79d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_27.png new file mode 100644 index 00000000..4dce538a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_28.png new file mode 100644 index 00000000..a334e244 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_29.png new file mode 100644 index 00000000..03e09e08 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_30.png new file mode 100644 index 00000000..f27f0122 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_31.png new file mode 100644 index 00000000..65f7f159 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_47.png new file mode 100644 index 00000000..8d07ed42 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_48.png new file mode 100644 index 00000000..eb33f808 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_5.png new file mode 100644 index 00000000..2ec08bc2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_6.png new file mode 100644 index 00000000..18b8baa8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_7.png new file mode 100644 index 00000000..a025986f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_8.png new file mode 100644 index 00000000..64263bc2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/48_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/48_9.png new file mode 100644 index 00000000..52851164 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/48_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_10.png new file mode 100644 index 00000000..b8c3144f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_11.png new file mode 100644 index 00000000..90125dbe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_12.png new file mode 100644 index 00000000..576fabb6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_13.png new file mode 100644 index 00000000..30640aa3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_14.png new file mode 100644 index 00000000..ca3639a2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_15.png new file mode 100644 index 00000000..2c6833c7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_16.png new file mode 100644 index 00000000..8eff1a43 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_17.png new file mode 100644 index 00000000..0a7c483f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_18.png new file mode 100644 index 00000000..b847ccaa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_19.png new file mode 100644 index 00000000..a2f78fc5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_20.png new file mode 100644 index 00000000..e2525474 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_21.png new file mode 100644 index 00000000..4c3cad9b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_22.png new file mode 100644 index 00000000..acfbbfff Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_23.png new file mode 100644 index 00000000..2327d476 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_24.png new file mode 100644 index 00000000..b9f14c5c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_25.png new file mode 100644 index 00000000..54dc6d0f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_26.png new file mode 100644 index 00000000..f5f2ff01 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_27.png new file mode 100644 index 00000000..288b27ca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_28.png new file mode 100644 index 00000000..3728a7e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_29.png new file mode 100644 index 00000000..8269e7b1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_30.png new file mode 100644 index 00000000..720bec2b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_31.png new file mode 100644 index 00000000..95ead0e0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_32.png new file mode 100644 index 00000000..d28e250b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_34.png new file mode 100644 index 00000000..131b3958 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_47.png new file mode 100644 index 00000000..991cc560 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_48.png new file mode 100644 index 00000000..47f7eeb5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_5.png new file mode 100644 index 00000000..13559c34 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_6.png new file mode 100644 index 00000000..8003a7f8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_7.png new file mode 100644 index 00000000..87643824 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_8.png new file mode 100644 index 00000000..79e322a5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/49_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/49_9.png new file mode 100644 index 00000000..0422cf71 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/49_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_13.png new file mode 100644 index 00000000..0b4d5a2e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_14.png new file mode 100644 index 00000000..2cca5830 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_15.png new file mode 100644 index 00000000..cd467b6f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_16.png new file mode 100644 index 00000000..303b1eb9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_17.png new file mode 100644 index 00000000..279777dd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_18.png new file mode 100644 index 00000000..e1f407d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_19.png new file mode 100644 index 00000000..e61a35f7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_20.png new file mode 100644 index 00000000..b213a8f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_28.png new file mode 100644 index 00000000..e75c88e1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_31.png new file mode 100644 index 00000000..93e40477 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_32.png new file mode 100644 index 00000000..b3e03330 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_33.png new file mode 100644 index 00000000..9f6eccf8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_34.png new file mode 100644 index 00000000..22963da4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_35.png new file mode 100644 index 00000000..bb9f7148 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_36.png new file mode 100644 index 00000000..15ce67bc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_54.png new file mode 100644 index 00000000..6fcf1a39 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_55.png new file mode 100644 index 00000000..73323bb1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_56.png new file mode 100644 index 00000000..91a41667 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_57.png new file mode 100644 index 00000000..5aae309c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_58.png new file mode 100644 index 00000000..177fd403 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_59.png new file mode 100644 index 00000000..564a2cbc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_60.png new file mode 100644 index 00000000..d87f0126 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_63.png new file mode 100644 index 00000000..c7bec4d6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/4_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/4_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/4_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_10.png new file mode 100644 index 00000000..0e77cc5f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_11.png new file mode 100644 index 00000000..121ad83f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_12.png new file mode 100644 index 00000000..4e08cb0b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_13.png new file mode 100644 index 00000000..fa031fc7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_14.png new file mode 100644 index 00000000..504c6884 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_15.png new file mode 100644 index 00000000..9fef7c57 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_16.png new file mode 100644 index 00000000..a9c0b104 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_17.png new file mode 100644 index 00000000..765c9bac Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_18.png new file mode 100644 index 00000000..5ba66efc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_19.png new file mode 100644 index 00000000..98f00e51 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_20.png new file mode 100644 index 00000000..39d8ac3f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_21.png new file mode 100644 index 00000000..d99b450a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_22.png new file mode 100644 index 00000000..b91fbabe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_23.png new file mode 100644 index 00000000..dc726bd8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_24.png new file mode 100644 index 00000000..edfbe52b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_25.png new file mode 100644 index 00000000..34757375 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_26.png new file mode 100644 index 00000000..f9d280d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_27.png new file mode 100644 index 00000000..e831e9ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_28.png new file mode 100644 index 00000000..5754dfa7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_29.png new file mode 100644 index 00000000..2d8924d4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_30.png new file mode 100644 index 00000000..cf82391a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_31.png new file mode 100644 index 00000000..0ac49791 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_32.png new file mode 100644 index 00000000..d68516e2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_33.png new file mode 100644 index 00000000..68119eba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_47.png new file mode 100644 index 00000000..30b2aebe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_48.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_7.png new file mode 100644 index 00000000..e24767a9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_8.png new file mode 100644 index 00000000..30d44371 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/50_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/50_9.png new file mode 100644 index 00000000..eb223dfe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/50_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_10.png new file mode 100644 index 00000000..6ba75955 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_11.png new file mode 100644 index 00000000..f4a58af0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_12.png new file mode 100644 index 00000000..8aa6b13b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_13.png new file mode 100644 index 00000000..5871b2ca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_14.png new file mode 100644 index 00000000..c7077e7e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_15.png new file mode 100644 index 00000000..fcf60da1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_16.png new file mode 100644 index 00000000..6958da19 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_17.png new file mode 100644 index 00000000..87d4c595 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_18.png new file mode 100644 index 00000000..7f8df683 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_19.png new file mode 100644 index 00000000..3877ef48 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_20.png new file mode 100644 index 00000000..c3fdb25e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_21.png new file mode 100644 index 00000000..7d6f3e7c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_22.png new file mode 100644 index 00000000..2474a480 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_23.png new file mode 100644 index 00000000..43102f02 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_24.png new file mode 100644 index 00000000..00ba891b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_25.png new file mode 100644 index 00000000..c58ccd78 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_26.png new file mode 100644 index 00000000..0fdd7e39 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_27.png new file mode 100644 index 00000000..685735c0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_28.png new file mode 100644 index 00000000..28686526 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_29.png new file mode 100644 index 00000000..6075cde3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_30.png new file mode 100644 index 00000000..1a946142 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_31.png new file mode 100644 index 00000000..544eb7e5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_32.png new file mode 100644 index 00000000..2994d180 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_33.png new file mode 100644 index 00000000..5f3fa9a8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_47.png new file mode 100644 index 00000000..12cdc945 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_48.png new file mode 100644 index 00000000..df607f2f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_8.png new file mode 100644 index 00000000..84982969 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/51_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/51_9.png new file mode 100644 index 00000000..04e29f57 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/51_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_10.png new file mode 100644 index 00000000..50ec3075 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_11.png new file mode 100644 index 00000000..fbe1cec9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_12.png new file mode 100644 index 00000000..1ba59534 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_13.png new file mode 100644 index 00000000..44d59e55 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_14.png new file mode 100644 index 00000000..1b31bdd5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_15.png new file mode 100644 index 00000000..06690da7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_16.png new file mode 100644 index 00000000..9e92c981 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_17.png new file mode 100644 index 00000000..60a1d7a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_18.png new file mode 100644 index 00000000..671684de Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_19.png new file mode 100644 index 00000000..453b4e8c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_20.png new file mode 100644 index 00000000..214cc2a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_21.png new file mode 100644 index 00000000..1b025858 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_22.png new file mode 100644 index 00000000..164c7c3b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_23.png new file mode 100644 index 00000000..f804bba5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_24.png new file mode 100644 index 00000000..d1dd3bfc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_25.png new file mode 100644 index 00000000..7d3012f9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_26.png new file mode 100644 index 00000000..2f588ce3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_27.png new file mode 100644 index 00000000..d0d7142b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_28.png new file mode 100644 index 00000000..d5388f3e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_29.png new file mode 100644 index 00000000..429d2105 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_30.png new file mode 100644 index 00000000..82b338d1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_31.png new file mode 100644 index 00000000..8747a9a0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_32.png new file mode 100644 index 00000000..0ccfba88 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_33.png new file mode 100644 index 00000000..d3af7de9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_35.png new file mode 100644 index 00000000..caef4497 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_36.png new file mode 100644 index 00000000..325c2f76 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_37.png new file mode 100644 index 00000000..a64a6573 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_38.png new file mode 100644 index 00000000..667c023f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_47.png new file mode 100644 index 00000000..0f1a7054 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_48.png new file mode 100644 index 00000000..7eb8e05b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/52_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/52_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/52_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_11.png new file mode 100644 index 00000000..4ded6afa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_12.png new file mode 100644 index 00000000..6bb08d4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_13.png new file mode 100644 index 00000000..47367bde Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_14.png new file mode 100644 index 00000000..774127b6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_15.png new file mode 100644 index 00000000..9c26bb04 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_16.png new file mode 100644 index 00000000..a65ee479 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_17.png new file mode 100644 index 00000000..bf15c488 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_18.png new file mode 100644 index 00000000..0930d68e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_19.png new file mode 100644 index 00000000..4edfa0fb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_20.png new file mode 100644 index 00000000..dbd073bb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_21.png new file mode 100644 index 00000000..83ef5f9b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_22.png new file mode 100644 index 00000000..2647b5e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_23.png new file mode 100644 index 00000000..f5f134cc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_24.png new file mode 100644 index 00000000..d10d59a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_25.png new file mode 100644 index 00000000..20811055 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_26.png new file mode 100644 index 00000000..81fbf26f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_27.png new file mode 100644 index 00000000..46d9e3b8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_28.png new file mode 100644 index 00000000..da390bbe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_29.png new file mode 100644 index 00000000..1915d9a1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_30.png new file mode 100644 index 00000000..9c2c43df Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_31.png new file mode 100644 index 00000000..ce954918 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_32.png new file mode 100644 index 00000000..20b5ad6f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_33.png new file mode 100644 index 00000000..2d41bdf6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_34.png new file mode 100644 index 00000000..311ddcfd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_35.png new file mode 100644 index 00000000..d5d7958b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_36.png new file mode 100644 index 00000000..d8ee78c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_37.png new file mode 100644 index 00000000..6ce9a276 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_38.png new file mode 100644 index 00000000..8181091d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_48.png new file mode 100644 index 00000000..ddbddcba Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/53_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/53_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/53_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_11.png new file mode 100644 index 00000000..4277a3e5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_12.png new file mode 100644 index 00000000..9eefd789 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_13.png new file mode 100644 index 00000000..871dbda7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_14.png new file mode 100644 index 00000000..c6e9a557 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_15.png new file mode 100644 index 00000000..2a05003c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_16.png new file mode 100644 index 00000000..2aac5a7e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_17.png new file mode 100644 index 00000000..15a51897 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_18.png new file mode 100644 index 00000000..7d9706a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_19.png new file mode 100644 index 00000000..4c84f56b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_20.png new file mode 100644 index 00000000..f646b5fd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_21.png new file mode 100644 index 00000000..1c45e5e7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_22.png new file mode 100644 index 00000000..8b081b79 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_23.png new file mode 100644 index 00000000..41c49057 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_24.png new file mode 100644 index 00000000..6987365a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_25.png new file mode 100644 index 00000000..48edd49c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_26.png new file mode 100644 index 00000000..014c41f0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_27.png new file mode 100644 index 00000000..8531c12a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_29.png new file mode 100644 index 00000000..920d6a7a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_30.png new file mode 100644 index 00000000..4cda2e6b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_31.png new file mode 100644 index 00000000..d06299b9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_32.png new file mode 100644 index 00000000..99459582 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_33.png new file mode 100644 index 00000000..330a5b82 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_34.png new file mode 100644 index 00000000..7e398df6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_35.png new file mode 100644 index 00000000..0cf9d95d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_36.png new file mode 100644 index 00000000..2d7c53ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_37.png new file mode 100644 index 00000000..50b7af91 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_38.png new file mode 100644 index 00000000..056f0418 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_47.png new file mode 100644 index 00000000..f5e111ce Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_48.png new file mode 100644 index 00000000..0926d4ec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/54_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/54_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/54_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_10.png new file mode 100644 index 00000000..e210eb42 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_11.png new file mode 100644 index 00000000..8d29cb30 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_12.png new file mode 100644 index 00000000..4e06b633 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_13.png new file mode 100644 index 00000000..d258c9d0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_14.png new file mode 100644 index 00000000..d938648f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_15.png new file mode 100644 index 00000000..608cdd64 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_16.png new file mode 100644 index 00000000..d5940b94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_17.png new file mode 100644 index 00000000..06195ebf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_18.png new file mode 100644 index 00000000..c5a65c05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_19.png new file mode 100644 index 00000000..1fd30508 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_20.png new file mode 100644 index 00000000..e5fda587 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_21.png new file mode 100644 index 00000000..ac342f30 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_22.png new file mode 100644 index 00000000..1603a09d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_23.png new file mode 100644 index 00000000..d821c912 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_24.png new file mode 100644 index 00000000..b5d87c1e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_25.png new file mode 100644 index 00000000..2cffe971 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_26.png new file mode 100644 index 00000000..41718a7e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_27.png new file mode 100644 index 00000000..442fdb14 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_30.png new file mode 100644 index 00000000..99c299eb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_31.png new file mode 100644 index 00000000..686e3084 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_32.png new file mode 100644 index 00000000..2ed87d8c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_33.png new file mode 100644 index 00000000..bc20108a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_34.png new file mode 100644 index 00000000..8f979f5b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_35.png new file mode 100644 index 00000000..dd40130c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_36.png new file mode 100644 index 00000000..0c2611cf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_37.png new file mode 100644 index 00000000..93536b6b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_38.png new file mode 100644 index 00000000..37f4b3d3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_47.png new file mode 100644 index 00000000..282f86e4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_48.png new file mode 100644 index 00000000..94ac5e81 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/55_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/55_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/55_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_10.png new file mode 100644 index 00000000..4805cd99 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_11.png new file mode 100644 index 00000000..9784bc83 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_12.png new file mode 100644 index 00000000..0e7b876d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_13.png new file mode 100644 index 00000000..9d958a37 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_14.png new file mode 100644 index 00000000..a2157c0b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_15.png new file mode 100644 index 00000000..1cf7801a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_16.png new file mode 100644 index 00000000..f887c63a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_17.png new file mode 100644 index 00000000..33f4d0aa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_18.png new file mode 100644 index 00000000..4967de56 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_19.png new file mode 100644 index 00000000..4cea6109 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_20.png new file mode 100644 index 00000000..92531c1c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_21.png new file mode 100644 index 00000000..efcc641f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_22.png new file mode 100644 index 00000000..2d968ad6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_23.png new file mode 100644 index 00000000..20808763 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_24.png new file mode 100644 index 00000000..1b652a98 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_25.png new file mode 100644 index 00000000..61e2868e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_26.png new file mode 100644 index 00000000..900c4dad Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_28.png new file mode 100644 index 00000000..37b548f8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_30.png new file mode 100644 index 00000000..60df223d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_31.png new file mode 100644 index 00000000..5ed23306 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_32.png new file mode 100644 index 00000000..3024c4a8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_33.png new file mode 100644 index 00000000..2b77e621 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_34.png new file mode 100644 index 00000000..a19074bf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_35.png new file mode 100644 index 00000000..99791ff2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_36.png new file mode 100644 index 00000000..3002336a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_37.png new file mode 100644 index 00000000..46df8c80 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_38.png new file mode 100644 index 00000000..7dd82468 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_39.png new file mode 100644 index 00000000..a01ef9ef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_47.png new file mode 100644 index 00000000..120bc37d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_48.png new file mode 100644 index 00000000..cb979dbb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/56_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/56_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/56_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_10.png new file mode 100644 index 00000000..4becac94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_11.png new file mode 100644 index 00000000..16ce9368 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_12.png new file mode 100644 index 00000000..4f024eaf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_13.png new file mode 100644 index 00000000..b80b21f9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_14.png new file mode 100644 index 00000000..e0d91962 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_15.png new file mode 100644 index 00000000..19000bca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_16.png new file mode 100644 index 00000000..fe0347bd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_17.png new file mode 100644 index 00000000..a23e2795 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_18.png new file mode 100644 index 00000000..6d5603cf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_19.png new file mode 100644 index 00000000..9bf84447 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_20.png new file mode 100644 index 00000000..9b41429f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_21.png new file mode 100644 index 00000000..73f98ddb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_22.png new file mode 100644 index 00000000..4a4b6b40 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_23.png new file mode 100644 index 00000000..09642380 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_24.png new file mode 100644 index 00000000..9d398675 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_25.png new file mode 100644 index 00000000..ae90b55c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_26.png new file mode 100644 index 00000000..cf094977 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_27.png new file mode 100644 index 00000000..4abea3bb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_28.png new file mode 100644 index 00000000..e48a3ff0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_29.png new file mode 100644 index 00000000..c1c574a8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_30.png new file mode 100644 index 00000000..7fe19682 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_32.png new file mode 100644 index 00000000..5219eb9f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_33.png new file mode 100644 index 00000000..19645c31 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_34.png new file mode 100644 index 00000000..4afda824 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_35.png new file mode 100644 index 00000000..d236c851 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_36.png new file mode 100644 index 00000000..da7465d5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_37.png new file mode 100644 index 00000000..16b6acc0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_38.png new file mode 100644 index 00000000..6b2938d8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_39.png new file mode 100644 index 00000000..748db3f5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_40.png new file mode 100644 index 00000000..de704c0c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_48.png new file mode 100644 index 00000000..e7ee61ce Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_49.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/57_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/57_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/57_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_10.png new file mode 100644 index 00000000..67fdcd1e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_11.png new file mode 100644 index 00000000..06a78b47 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_12.png new file mode 100644 index 00000000..77621b9a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_13.png new file mode 100644 index 00000000..a73aa384 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_14.png new file mode 100644 index 00000000..5215b413 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_15.png new file mode 100644 index 00000000..6c0da8ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_16.png new file mode 100644 index 00000000..997de796 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_17.png new file mode 100644 index 00000000..58c063a0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_18.png new file mode 100644 index 00000000..f1368556 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_19.png new file mode 100644 index 00000000..22d6cdd6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_22.png new file mode 100644 index 00000000..12041cbf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_23.png new file mode 100644 index 00000000..632d99a4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_30.png new file mode 100644 index 00000000..1945c74e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_32.png new file mode 100644 index 00000000..123a176a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_33.png new file mode 100644 index 00000000..20653f7d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_34.png new file mode 100644 index 00000000..889ccae7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_35.png new file mode 100644 index 00000000..4db9777b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_36.png new file mode 100644 index 00000000..678b1caf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_37.png new file mode 100644 index 00000000..11505d1d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_38.png new file mode 100644 index 00000000..61ff0bd3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_39.png new file mode 100644 index 00000000..62e7cb42 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_40.png new file mode 100644 index 00000000..6efec852 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_48.png new file mode 100644 index 00000000..1aecc5da Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_49.png new file mode 100644 index 00000000..7193fe59 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/58_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/58_9.png new file mode 100644 index 00000000..d7bbec2b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/58_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_10.png new file mode 100644 index 00000000..319d2b4e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_13.png new file mode 100644 index 00000000..a650f0d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_14.png new file mode 100644 index 00000000..5927bfea Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_15.png new file mode 100644 index 00000000..ae590193 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_16.png new file mode 100644 index 00000000..5851b1f4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_17.png new file mode 100644 index 00000000..fe69c3c6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_18.png new file mode 100644 index 00000000..e700b37f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_19.png new file mode 100644 index 00000000..2a811595 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_20.png new file mode 100644 index 00000000..b7d85622 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_21.png new file mode 100644 index 00000000..b6e82c94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_22.png new file mode 100644 index 00000000..5798c838 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_27.png new file mode 100644 index 00000000..3fa81bf2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_30.png new file mode 100644 index 00000000..a4266ddf Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_31.png new file mode 100644 index 00000000..332690fa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_32.png new file mode 100644 index 00000000..29274511 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_33.png new file mode 100644 index 00000000..6cc6cf15 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_34.png new file mode 100644 index 00000000..c213fcf3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_35.png new file mode 100644 index 00000000..e8cef261 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_36.png new file mode 100644 index 00000000..5f2ed3a3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_37.png new file mode 100644 index 00000000..1c76bf28 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_38.png new file mode 100644 index 00000000..0ff431ea Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_48.png new file mode 100644 index 00000000..d271d481 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_49.png new file mode 100644 index 00000000..21570fd8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_50.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_51.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_52.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_53.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_55.png new file mode 100644 index 00000000..8bbdaf39 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_56.png new file mode 100644 index 00000000..b54e5887 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_57.png new file mode 100644 index 00000000..1a6c4593 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_58.png new file mode 100644 index 00000000..8f3cf445 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_59.png new file mode 100644 index 00000000..9eb99f8a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_60.png new file mode 100644 index 00000000..df1c0503 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_61.png new file mode 100644 index 00000000..2face2e6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/59_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/59_9.png new file mode 100644 index 00000000..ff3a97cb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/59_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_13.png new file mode 100644 index 00000000..047eb400 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_14.png new file mode 100644 index 00000000..c3120ef5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_15.png new file mode 100644 index 00000000..fc2fc408 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_16.png new file mode 100644 index 00000000..983647ae Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_17.png new file mode 100644 index 00000000..54f0fae0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_18.png new file mode 100644 index 00000000..08691de0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_19.png new file mode 100644 index 00000000..a848a2e9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_33.png new file mode 100644 index 00000000..2bf90fb3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_34.png new file mode 100644 index 00000000..29bc2d95 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_35.png new file mode 100644 index 00000000..04b1245d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_36.png new file mode 100644 index 00000000..a9089655 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_53.png new file mode 100644 index 00000000..f55fc599 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_54.png new file mode 100644 index 00000000..86310cbe Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_56.png new file mode 100644 index 00000000..67525d93 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_57.png new file mode 100644 index 00000000..f220ba94 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_58.png new file mode 100644 index 00000000..bc296417 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_63.png new file mode 100644 index 00000000..280baf68 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/5_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/5_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/5_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_10.png new file mode 100644 index 00000000..42dfc3d9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_13.png new file mode 100644 index 00000000..160fc3fa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_14.png new file mode 100644 index 00000000..e3eb309e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_15.png new file mode 100644 index 00000000..1c78efcd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_16.png new file mode 100644 index 00000000..f6bb200d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_17.png new file mode 100644 index 00000000..92bd544e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_18.png new file mode 100644 index 00000000..a9fbb0aa Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_19.png new file mode 100644 index 00000000..2f43622c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_20.png new file mode 100644 index 00000000..04c0cfc3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_21.png new file mode 100644 index 00000000..be180ffb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_29.png new file mode 100644 index 00000000..c6ab1736 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_30.png new file mode 100644 index 00000000..54fdfab1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_31.png new file mode 100644 index 00000000..adaeece2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_32.png new file mode 100644 index 00000000..621d4bee Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_33.png new file mode 100644 index 00000000..944aea05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_34.png new file mode 100644 index 00000000..86f46022 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_35.png new file mode 100644 index 00000000..62c95391 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_36.png new file mode 100644 index 00000000..b939c846 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_37.png new file mode 100644 index 00000000..33e1adeb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_38.png new file mode 100644 index 00000000..db76e880 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_43.png new file mode 100644 index 00000000..4ce5af91 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_47.png new file mode 100644 index 00000000..d014f85f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_49.png new file mode 100644 index 00000000..a594d0ca Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_50.png new file mode 100644 index 00000000..7b1c54ef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_51.png new file mode 100644 index 00000000..21540df7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_52.png new file mode 100644 index 00000000..38d46b8d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_53.png new file mode 100644 index 00000000..0c3ba96b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_54.png new file mode 100644 index 00000000..3f8d6259 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_55.png new file mode 100644 index 00000000..a4bbe1c3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_56.png new file mode 100644 index 00000000..20b59e8e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_57.png new file mode 100644 index 00000000..45a002e8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_58.png new file mode 100644 index 00000000..e4cad468 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_59.png new file mode 100644 index 00000000..b3898b67 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_60.png new file mode 100644 index 00000000..2720c4a4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_61.png new file mode 100644 index 00000000..70ef580b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_62.png new file mode 100644 index 00000000..5dd09a1a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_63.png new file mode 100644 index 00000000..6f14dcc2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/60_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/60_9.png new file mode 100644 index 00000000..2de1dde2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/60_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_14.png new file mode 100644 index 00000000..8c529b1e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_15.png new file mode 100644 index 00000000..812c6af7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_16.png new file mode 100644 index 00000000..b669fa05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_17.png new file mode 100644 index 00000000..0616c40c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_18.png new file mode 100644 index 00000000..746e8c71 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_19.png new file mode 100644 index 00000000..04a0ec9e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_20.png new file mode 100644 index 00000000..9b081784 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_28.png new file mode 100644 index 00000000..55127898 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_29.png new file mode 100644 index 00000000..7d63bc91 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_30.png new file mode 100644 index 00000000..f751b571 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_31.png new file mode 100644 index 00000000..20151d86 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_32.png new file mode 100644 index 00000000..693c48cd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_33.png new file mode 100644 index 00000000..d9f17be7 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_34.png new file mode 100644 index 00000000..c0f7dc9a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_35.png new file mode 100644 index 00000000..3561d179 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_36.png new file mode 100644 index 00000000..40e9e084 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_37.png new file mode 100644 index 00000000..a15ab545 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_40.png new file mode 100644 index 00000000..2701797b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_41.png new file mode 100644 index 00000000..a1487f6d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_42.png new file mode 100644 index 00000000..2df8ae73 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_43.png new file mode 100644 index 00000000..48ec8af5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_48.png new file mode 100644 index 00000000..485b4a95 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_49.png new file mode 100644 index 00000000..1e51aa4f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_50.png new file mode 100644 index 00000000..1876fe31 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_51.png new file mode 100644 index 00000000..2cb0ef48 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_52.png new file mode 100644 index 00000000..46b3f4b5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_53.png new file mode 100644 index 00000000..a9cae282 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_54.png new file mode 100644 index 00000000..fab56307 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_55.png new file mode 100644 index 00000000..f4211f57 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_59.png new file mode 100644 index 00000000..eb421f0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_60.png new file mode 100644 index 00000000..04a8fc27 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_61.png new file mode 100644 index 00000000..92a7c80b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_62.png new file mode 100644 index 00000000..e1bd3bbd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_63.png new file mode 100644 index 00000000..446fae1b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/61_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/61_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/61_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_14.png new file mode 100644 index 00000000..0e2a4cf2 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_15.png new file mode 100644 index 00000000..2294a9a0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_16.png new file mode 100644 index 00000000..f9593fa4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_17.png new file mode 100644 index 00000000..9267c7fd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_18.png new file mode 100644 index 00000000..508a2515 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_20.png new file mode 100644 index 00000000..3fdf1ae4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_21.png new file mode 100644 index 00000000..af96c1e8 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_29.png new file mode 100644 index 00000000..c259e56d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_30.png new file mode 100644 index 00000000..d41c4828 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_31.png new file mode 100644 index 00000000..f96512e3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_32.png new file mode 100644 index 00000000..557ad4f5 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_34.png new file mode 100644 index 00000000..62c8f72f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_35.png new file mode 100644 index 00000000..68b7b0fd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_36.png new file mode 100644 index 00000000..bf6b3c7d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_38.png new file mode 100644 index 00000000..df833c5d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_39.png new file mode 100644 index 00000000..c793f50f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_40.png new file mode 100644 index 00000000..61531758 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_41.png new file mode 100644 index 00000000..a7e3a7a9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_42.png new file mode 100644 index 00000000..ab1c9c6c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_43.png new file mode 100644 index 00000000..3afa3814 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_50.png new file mode 100644 index 00000000..ea3aa814 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_51.png new file mode 100644 index 00000000..cb9a014a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_54.png new file mode 100644 index 00000000..7180147c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_60.png new file mode 100644 index 00000000..f5383bf9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_61.png new file mode 100644 index 00000000..6e2ba3ec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_62.png new file mode 100644 index 00000000..ac509be6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_63.png new file mode 100644 index 00000000..b9541b4d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/62_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/62_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/62_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_13.png new file mode 100644 index 00000000..c289a586 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_14.png new file mode 100644 index 00000000..6e564ca4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_15.png new file mode 100644 index 00000000..124f1b25 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_16.png new file mode 100644 index 00000000..281750dc Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_17.png new file mode 100644 index 00000000..060a49f6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_18.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_20.png new file mode 100644 index 00000000..693b3142 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_21.png new file mode 100644 index 00000000..54eb405e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_32.png new file mode 100644 index 00000000..38e6a892 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_33.png new file mode 100644 index 00000000..a77f374c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_34.png new file mode 100644 index 00000000..6665d698 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_35.png new file mode 100644 index 00000000..1a776e28 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_38.png new file mode 100644 index 00000000..47104723 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_39.png new file mode 100644 index 00000000..7a214c9a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_40.png new file mode 100644 index 00000000..db226142 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_41.png new file mode 100644 index 00000000..23a08d3f Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_42.png new file mode 100644 index 00000000..09e2dcc9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_52.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_53.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_54.png new file mode 100644 index 00000000..7dfca1f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_61.png new file mode 100644 index 00000000..ec6bcb21 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_62.png new file mode 100644 index 00000000..39f84975 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_63.png new file mode 100644 index 00000000..fa00daef Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/63_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/63_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/63_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_14.png new file mode 100644 index 00000000..9b9148c1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_15.png new file mode 100644 index 00000000..31562ae0 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_16.png new file mode 100644 index 00000000..e9526152 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_17.png new file mode 100644 index 00000000..9bd76d7e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_18.png new file mode 100644 index 00000000..b4601600 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_19.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_33.png new file mode 100644 index 00000000..ab360c36 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_34.png new file mode 100644 index 00000000..87afc36e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_35.png new file mode 100644 index 00000000..77a5db80 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_36.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_37.png new file mode 100644 index 00000000..0cad9ab1 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_52.png new file mode 100644 index 00000000..995cbe54 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_53.png new file mode 100644 index 00000000..11b05834 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_54.png new file mode 100644 index 00000000..808f069c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/6_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/6_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/6_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_14.png new file mode 100644 index 00000000..06947c5b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_15.png new file mode 100644 index 00000000..f3860ca4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_16.png new file mode 100644 index 00000000..07ff3ab3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_17.png new file mode 100644 index 00000000..7d2b62fd Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_18.png new file mode 100644 index 00000000..06e708ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_19.png new file mode 100644 index 00000000..81257cb4 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_20.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_21.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_33.png new file mode 100644 index 00000000..2d69fdec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_34.png new file mode 100644 index 00000000..6b051419 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_35.png new file mode 100644 index 00000000..98e449db Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_36.png new file mode 100644 index 00000000..41c54977 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_52.png new file mode 100644 index 00000000..e7691c3d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_53.png new file mode 100644 index 00000000..7a2e06ab Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/7_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/7_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/7_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_10.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_11.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_12.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_13.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_14.png new file mode 100644 index 00000000..93f17598 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_15.png new file mode 100644 index 00000000..90cd7a71 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_16.png new file mode 100644 index 00000000..651e3d14 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_17.png new file mode 100644 index 00000000..a73a2d19 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_18.png new file mode 100644 index 00000000..14397d17 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_19.png new file mode 100644 index 00000000..9f47b007 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_20.png new file mode 100644 index 00000000..bd0889a6 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_21.png new file mode 100644 index 00000000..8efeaadb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_22.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_23.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_24.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_36.png new file mode 100644 index 00000000..5c51640e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_51.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_52.png new file mode 100644 index 00000000..e76b8164 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_53.png new file mode 100644 index 00000000..35ca84ec Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_54.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/8_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/8_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/8_9.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_0.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_0.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_0.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_1.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_1.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_1.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_10.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_10.png new file mode 100644 index 00000000..2dfea499 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_10.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_11.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_11.png new file mode 100644 index 00000000..6a5e8056 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_11.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_12.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_12.png new file mode 100644 index 00000000..38252e6d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_12.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_13.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_13.png new file mode 100644 index 00000000..78c03d05 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_13.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_14.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_14.png new file mode 100644 index 00000000..b8b8465a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_14.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_15.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_15.png new file mode 100644 index 00000000..c414cdea Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_15.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_16.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_16.png new file mode 100644 index 00000000..ed250c4b Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_16.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_17.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_17.png new file mode 100644 index 00000000..96b7b7c9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_17.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_18.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_18.png new file mode 100644 index 00000000..33a41714 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_18.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_19.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_19.png new file mode 100644 index 00000000..c7a42f1c Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_19.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_2.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_2.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_2.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_20.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_20.png new file mode 100644 index 00000000..8d753d56 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_20.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_21.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_21.png new file mode 100644 index 00000000..67a22f14 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_21.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_22.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_22.png new file mode 100644 index 00000000..90e3aca9 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_22.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_23.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_23.png new file mode 100644 index 00000000..3b062188 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_23.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_24.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_24.png new file mode 100644 index 00000000..a9265fbb Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_24.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_25.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_25.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_25.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_26.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_26.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_26.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_27.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_27.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_27.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_28.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_28.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_28.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_29.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_29.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_29.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_3.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_3.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_3.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_30.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_30.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_30.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_31.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_31.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_31.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_32.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_32.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_32.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_33.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_33.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_33.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_34.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_34.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_34.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_35.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_35.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_35.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_36.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_36.png new file mode 100644 index 00000000..1878f753 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_36.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_37.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_37.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_37.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_38.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_38.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_38.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_39.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_39.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_39.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_4.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_4.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_4.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_40.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_40.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_40.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_41.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_41.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_41.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_42.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_42.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_42.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_43.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_43.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_43.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_44.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_44.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_44.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_45.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_45.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_45.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_46.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_46.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_46.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_47.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_47.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_47.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_48.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_48.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_48.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_49.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_49.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_49.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_5.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_5.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_5.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_50.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_50.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_50.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_51.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_51.png new file mode 100644 index 00000000..3eba440d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_51.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_52.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_52.png new file mode 100644 index 00000000..958ab9f3 Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_52.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_53.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_53.png new file mode 100644 index 00000000..7fc6289e Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_53.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_54.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_54.png new file mode 100644 index 00000000..98b2c6ac Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_54.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_55.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_55.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_55.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_56.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_56.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_56.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_57.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_57.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_57.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_58.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_58.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_58.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_59.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_59.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_59.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_6.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_6.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_6.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_60.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_60.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_60.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_61.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_61.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_61.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_62.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_62.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_62.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_63.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_63.png new file mode 100644 index 00000000..0305d19d Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_63.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_7.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_7.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_7.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_8.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_8.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_8.png differ diff --git a/nodejs-project/nodejs-project/src/maps/tiles/6/9_9.png b/nodejs-project/nodejs-project/src/maps/tiles/6/9_9.png new file mode 100644 index 00000000..f607ae0a Binary files /dev/null and b/nodejs-project/nodejs-project/src/maps/tiles/6/9_9.png differ diff --git a/nodejs-project/nodejs-project/src/models/agenda_model.js b/nodejs-project/nodejs-project/src/models/agenda_model.js index e6f01f4e..b2c62954 100644 --- a/nodejs-project/nodejs-project/src/models/agenda_model.js +++ b/nodejs-project/nodejs-project/src/models/agenda_model.js @@ -140,7 +140,7 @@ module.exports = ({ cooler }) => { const ssbClient = await openSsb(); const userId = ssbClient.id; - const [tasksAll, eventsAll, transfersAll, tribesAll, marketAll, reportsAll, jobsAll, projectsAll] = await Promise.all([ + const [tasksAll, eventsAll, transfersAll, tribesAll, marketAll, reportsAll, jobsAll, projectsAll, calendarsAll] = await Promise.all([ fetchItems('task'), fetchItems('event'), fetchItems('transfer'), @@ -148,7 +148,8 @@ module.exports = ({ cooler }) => { fetchItems('market'), fetchItems('report'), fetchItems('job'), - fetchItems('project') + fetchItems('project'), + fetchItems('calendar') ]); const tasks = tasksAll.filter(c => Array.isArray(c.assignees) && c.assignees.includes(userId)).map(t => ({ ...t, type: 'task' })); @@ -161,6 +162,9 @@ module.exports = ({ cooler }) => { const reports = reportsAll.filter(c => c.author === userId || (Array.isArray(c.confirmations) && c.confirmations.includes(userId))).map(r => ({ ...r, type: 'report' })); const jobs = jobsAll.filter(c => c.author === userId || (Array.isArray(c.subscribers) && c.subscribers.includes(userId))).map(j => ({ ...j, type: 'job', title: j.title })); const projects = projectsAll.map(p => ({ ...p, type: 'project' })); + const calendars = calendarsAll + .filter(c => c.author === userId || (Array.isArray(c.participants) && c.participants.includes(userId))) + .map(c => ({ ...c, type: 'calendar' })); let combined = [ ...tasks, @@ -170,7 +174,8 @@ module.exports = ({ cooler }) => { ...marketItems, ...reports, ...jobs, - ...projects + ...projects, + ...calendars ]; let filtered; @@ -188,6 +193,7 @@ module.exports = ({ cooler }) => { else if (filter === 'closed') filtered = filtered.filter(i => String(i.status).toUpperCase() === 'CLOSED'); else if (filter === 'jobs') filtered = filtered.filter(i => i.type === 'job'); else if (filter === 'projects') filtered = filtered.filter(i => i.type === 'project'); + else if (filter === 'calendars') filtered = filtered.filter(i => i.type === 'calendar'); } filtered.sort((a, b) => { @@ -213,6 +219,7 @@ module.exports = ({ cooler }) => { reports: mainItems.filter(i => i.type === 'report').length, jobs: mainItems.filter(i => i.type === 'job').length, projects: mainItems.filter(i => i.type === 'project').length, + calendars: mainItems.filter(i => i.type === 'calendar').length, discarded: discarded.length } }; diff --git a/nodejs-project/nodejs-project/src/models/audios_model.js b/nodejs-project/nodejs-project/src/models/audios_model.js index fd770fb7..e26437c5 100644 --- a/nodejs-project/nodejs-project/src/models/audios_model.js +++ b/nodejs-project/nodejs-project/src/models/audios_model.js @@ -104,6 +104,7 @@ module.exports = ({ cooler }) => { author: c.author, title: c.title || "", description: c.description || "", + mapUrl: c.mapUrl || "", opinions: c.opinions || {}, opinions_inhabitants: voters, hasVoted: viewerId ? voters.includes(viewerId) : false @@ -138,7 +139,7 @@ module.exports = ({ cooler }) => { return root; }, - async createAudio(blobMarkdown, tagsRaw, title, description) { + async createAudio(blobMarkdown, tagsRaw, title, description, mapUrl) { const ssbClient = await openSsb(); const blobId = parseBlobId(blobMarkdown); const tags = normalizeTags(tagsRaw) || []; @@ -153,6 +154,7 @@ module.exports = ({ cooler }) => { tags, title: title || "", description: description || "", + mapUrl: mapUrl || "", opinions: {}, opinions_inhabitants: [] }; @@ -162,7 +164,7 @@ module.exports = ({ cooler }) => { }); }, - async updateAudioById(id, blobMarkdown, tagsRaw, title, description) { + async updateAudioById(id, blobMarkdown, tagsRaw, title, description, mapUrl) { const ssbClient = await openSsb(); const userId = ssbClient.id; const tipId = await this.resolveCurrentId(id); @@ -183,6 +185,7 @@ module.exports = ({ cooler }) => { tags, title: title !== undefined ? title || "" : oldMsg.content.title || "", description: description !== undefined ? description || "" : oldMsg.content.description || "", + mapUrl: mapUrl !== undefined ? mapUrl || "" : oldMsg.content.mapUrl || "", createdAt: oldMsg.content.createdAt, updatedAt: now }; diff --git a/nodejs-project/nodejs-project/src/models/banking_model.js b/nodejs-project/nodejs-project/src/models/banking_model.js index b0362f64..1c9da5fc 100644 --- a/nodejs-project/nodejs-project/src/models/banking_model.js +++ b/nodejs-project/nodejs-project/src/models/banking_model.js @@ -7,14 +7,16 @@ const { config } = require("../server/SSB_server.js"); const clamp = (x, lo, hi) => Math.max(lo, Math.min(hi, x)); +const MAX_PENDING_EPOCHS = 12; + const DEFAULT_RULES = { - epochKind: "WEEKLY", + epochKind: "MONTHLY", alpha: 0.2, reserveMin: 500, capPerEpoch: 2000, caps: { M_max: 3, T_max: 1.5, P_max: 2, cap_user_epoch: 50, w_min: 0.2, w_max: 6 }, coeffs: { a1: 0.6, a2: 0.4, a3: 0.3, a4: 0.5, b1: 0.5, b2: 1.0 }, - graceDays: 14 + graceDays: 30 }; const STORAGE_DIR = path.join(__dirname, "..", "configs"); @@ -31,13 +33,9 @@ function ensureStoreFiles() { function epochIdNow() { const d = new Date(); - const tmp = new Date(Date.UTC(d.getFullYear(), d.getMonth(), d.getDate())); - const dayNum = tmp.getUTCDay() || 7; - tmp.setUTCDate(tmp.getUTCDate() + 4 - dayNum); - const yearStart = new Date(Date.UTC(tmp.getUTCFullYear(), 0, 1)); - const weekNo = Math.ceil((((tmp - yearStart) / 86400000) + 1) / 7); - const yyyy = tmp.getUTCFullYear(); - return `${yyyy}-${String(weekNo).padStart(2, "0")}`; + const yyyy = d.getUTCFullYear(); + const mm = String(d.getUTCMonth() + 1).padStart(2, "0"); + return `${yyyy}-${mm}`; } async function getAnyWalletAddress() { @@ -108,7 +106,7 @@ function writeJson(p, v) { async function rpcCall(method, params, kind = "user") { const cfg = getWalletCfg(kind); if (!cfg?.url) { - return null; + return null; } const headers = { "Content-Type": "application/json", @@ -132,9 +130,9 @@ async function rpcCall(method, params, kind = "user") { } const data = await res.json(); if (data.error) { - return null; + return null; } - return data.result; + return data.result; } catch (err) { return null; } @@ -171,11 +169,22 @@ function isValidEcoinAddress(addr) { function getWalletCfg(kind) { const cfg = getConfig() || {}; if (kind === "pub") { - return cfg.walletPub || cfg.pubWallet || (cfg.pub && cfg.pub.wallet) || null; + if (!isPubNode()) return null; + return cfg.wallet || null; } return cfg.wallet || null; } +function isPubNode() { + const pubId = (getConfig() || {}).walletPub?.pubId || ""; + const myId = config?.keys?.id || ""; + return !!pubId && !!myId && pubId === myId; +} + +function getConfiguredPubId() { + return (getConfig() || {}).walletPub?.pubId || ""; +} + function resolveUserId(maybeId) { const s = String(maybeId || "").trim(); if (s) return s; @@ -216,17 +225,21 @@ module.exports = ({ services } = {}) => { return ssbInstance; } - async function getWalletFromSSB(userId) { + async function scanLogStream() { const ssb = await openSsb(); - if (!ssb) return null; - const msgs = await new Promise((resolve, reject) => + if (!ssb) return []; + return new Promise((resolve, reject) => pull( - ssb.createLogStream({ limit: getLogLimit() }), + ssb.createLogStream({ limit: getLogLimit(), reverse: true }), pull.collect((err, arr) => err ? reject(err) : resolve(arr)) ) ); - for (let i = msgs.length - 1; i >= 0; i--) { - const v = msgs[i].value || {}; + } + + async function getWalletFromSSB(userId) { + const msgs = await scanLogStream(); + for (const m of msgs) { + const v = m.value || {}; const c = v.content || {}; if (v.author === userId && c && c.type === "wallet" && c.coin === "ECO" && typeof c.address === "string") { return c.address; @@ -236,17 +249,10 @@ module.exports = ({ services } = {}) => { } async function scanAllWalletsSSB() { - const ssb = await openSsb(); - if (!ssb) return {}; const latest = {}; - const msgs = await new Promise((resolve, reject) => - pull( - ssb.createLogStream({ limit: getLogLimit() }), - pull.collect((err, arr) => err ? reject(err) : resolve(arr)) - ) - ); - for (let i = msgs.length - 1; i >= 0; i--) { - const v = msgs[i].value || {}; + const msgs = await scanLogStream(); + for (const m of msgs) { + const v = m.value || {}; const c = v.content || {}; if (c && c.type === "wallet" && c.coin === "ECO" && typeof c.address === "string") { if (!latest[v.author]) latest[v.author] = c.address; @@ -338,6 +344,7 @@ module.exports = ({ services } = {}) => { if (c.vote) return "vote"; if (c.votes) return "votes"; if (c.address && c.coin === "ECO" && c.type === "wallet") return "bankWallet"; + if (c.type === "ubiClaimResult" && c.txid && c.epochId) return "ubiClaimResult"; if (typeof c.amount !== "undefined" && c.epochId && c.allocationId) return "bankClaim"; if (typeof c.item_type !== "undefined" && typeof c.status !== "undefined") return "market"; if (typeof c.goal !== "undefined" && typeof c.progress !== "undefined") return "project"; @@ -428,12 +435,7 @@ module.exports = ({ services } = {}) => { FEED_SRC = "none"; return []; } - const msgs = await new Promise((resolve, reject) => - pull( - ssb.createLogStream({ limit: getLogLimit() }), - pull.collect((err, arr) => err ? reject(err) : resolve(arr)) - ) - ); + const msgs = await scanLogStream(); FEED_SRC = "ssb.createLogStream"; return msgs.map(m => { const v = m.value || {}; @@ -483,57 +485,60 @@ async function fetchUserActions(userId) { }); } -// karma scoring table function scoreFromActions(actions) { let score = 0; + const nowMs = Date.now(); for (const action of actions) { const t = normalizeType(action); const c = action.content || {}; const rawType = String(c.type || "").toLowerCase(); - if (t === "post") score += 10; - else if (t === "comment") score += 5; - else if (t === "like") score += 2; - else if (t === "image") score += 8; - else if (t === "video") score += 12; - else if (t === "audio") score += 8; - else if (t === "document") score += 6; - else if (t === "bookmark") score += 2; - else if (t === "feed") score += 6; - else if (t === "forum") score += c.root ? 5 : 10; - else if (t === "vote") score += 3 + calculateOpinionScore(c); - else if (t === "votes") score += Math.min(10, Number(c.totalVotes || 0)); - else if (t === "market") score += scoreMarket(c); - else if (t === "project") score += scoreProject(c); - else if (t === "tribe") score += 6 + Math.min(10, Array.isArray(c.members) ? c.members.length * 0.5 : 0); - else if (t === "event") score += 4 + Math.min(10, Array.isArray(c.attendees) ? c.attendees.length : 0); - else if (t === "task") score += 3 + priorityBump(c.priority); - else if (t === "report") score += 4 + (Array.isArray(c.confirmations) ? c.confirmations.length : 0) + severityBump(c.severity); - else if (t === "curriculum") score += 5; - else if (t === "aiexchange") score += Array.isArray(c.ctx) ? Math.min(10, c.ctx.length) : 0; - else if (t === "job") score += 4 + (Array.isArray(c.subscribers) ? c.subscribers.length : 0); - else if (t === "bankclaim") score += Math.min(20, Math.log(1 + Math.max(0, Number(c.amount) || 0)) * 5); - else if (t === "bankwallet") score += 2; - else if (t === "transfer") score += 1; - else if (t === "about") score += 1; - else if (t === "contact") score += 1; - else if (t === "pub") score += 1; - else if (t === "parliamentcandidature" || rawType === "parliamentcandidature") score += 12; - else if (t === "parliamentterm" || rawType === "parliamentterm") score += 25; - else if (t === "parliamentproposal" || rawType === "parliamentproposal") score += 8; - else if (t === "parliamentlaw" || rawType === "parliamentlaw") score += 16; - else if (t === "parliamentrevocation" || rawType === "parliamentrevocation") score += 10; - else if (t === "courts_case" || t === "courtscase" || rawType === "courts_case") score += 4; - else if (t === "courts_evidence" || t === "courtsevidence" || rawType === "courts_evidence") score += 3; - else if (t === "courts_answer" || t === "courtsanswer" || rawType === "courts_answer") score += 4; - else if (t === "courts_verdict" || t === "courtsverdict" || rawType === "courts_verdict") score += 10; - else if (t === "courts_settlement" || t === "courtssettlement" || rawType === "courts_settlement") score += 8; - else if (t === "courts_nomination" || t === "courtsnomination" || rawType === "courts_nomination") score += 6; - else if (t === "courts_nom_vote" || t === "courtsnomvote" || rawType === "courts_nom_vote") score += 3; - else if (t === "courts_public_pref" || t === "courtspublicpref" || rawType === "courts_public_pref") score += 1; - else if (t === "courts_mediators" || t === "courtsmediators" || rawType === "courts_mediators") score += 6; - else if (t === "courts_open_support" || t === "courtsopensupport" || rawType === "courts_open_support") score += 2; - else if (t === "courts_verdict_vote" || t === "courtsverdictvote" || rawType === "courts_verdict_vote") score += 3; - else if (t === "courts_judge_assign" || t === "courtsjudgeassign" || rawType === "courts_judge_assign") score += 5; + const ts = action.value?.timestamp; + const ageDays = ts ? (nowMs - ts) / 86400000 : Infinity; + const decay = ageDays <= 30 ? 1.0 : ageDays <= 90 ? 0.5 : 0.25; + if (t === "post") score += 10 * decay; + else if (t === "comment") score += 5 * decay; + else if (t === "like") score += 2 * decay; + else if (t === "image") score += 8 * decay; + else if (t === "video") score += 12 * decay; + else if (t === "audio") score += 8 * decay; + else if (t === "document") score += 6 * decay; + else if (t === "bookmark") score += 2 * decay; + else if (t === "feed") score += 6 * decay; + else if (t === "forum") score += (c.root ? 5 : 10) * decay; + else if (t === "vote") score += (3 + calculateOpinionScore(c)) * decay; + else if (t === "votes") score += Math.min(10, Number(c.totalVotes || 0)) * decay; + else if (t === "market") score += scoreMarket(c) * decay; + else if (t === "project") score += scoreProject(c) * decay; + else if (t === "tribe") score += (6 + Math.min(10, Array.isArray(c.members) ? c.members.length * 0.5 : 0)) * decay; + else if (t === "event") score += (4 + Math.min(10, Array.isArray(c.attendees) ? c.attendees.length : 0)) * decay; + else if (t === "task") score += (3 + priorityBump(c.priority)) * decay; + else if (t === "report") score += (4 + (Array.isArray(c.confirmations) ? c.confirmations.length : 0) + severityBump(c.severity)) * decay; + else if (t === "curriculum") score += 5 * decay; + else if (t === "aiexchange") score += (Array.isArray(c.ctx) ? Math.min(10, c.ctx.length) : 0) * decay; + else if (t === "job") score += (4 + (Array.isArray(c.subscribers) ? c.subscribers.length : 0)) * decay; + else if (t === "bankclaim") score += Math.min(20, Math.log(1 + Math.max(0, Number(c.amount) || 0)) * 5) * decay; + else if (t === "bankwallet") score += 2 * decay; + else if (t === "transfer") score += 1 * decay; + else if (t === "about") score += 1 * decay; + else if (t === "contact") score += 1 * decay; + else if (t === "pub") score += 1 * decay; + else if (t === "parliamentcandidature" || rawType === "parliamentcandidature") score += 12 * decay; + else if (t === "parliamentterm" || rawType === "parliamentterm") score += 25 * decay; + else if (t === "parliamentproposal" || rawType === "parliamentproposal") score += 8 * decay; + else if (t === "parliamentlaw" || rawType === "parliamentlaw") score += 16 * decay; + else if (t === "parliamentrevocation" || rawType === "parliamentrevocation") score += 10 * decay; + else if (t === "courts_case" || t === "courtscase" || rawType === "courts_case") score += 4 * decay; + else if (t === "courts_evidence" || t === "courtsevidence" || rawType === "courts_evidence") score += 3 * decay; + else if (t === "courts_answer" || t === "courtsanswer" || rawType === "courts_answer") score += 4 * decay; + else if (t === "courts_verdict" || t === "courtsverdict" || rawType === "courts_verdict") score += 10 * decay; + else if (t === "courts_settlement" || t === "courtssettlement" || rawType === "courts_settlement") score += 8 * decay; + else if (t === "courts_nomination" || t === "courtsnomination" || rawType === "courts_nomination") score += 6 * decay; + else if (t === "courts_nom_vote" || t === "courtsnomvote" || rawType === "courts_nom_vote") score += 3 * decay; + else if (t === "courts_public_pref" || t === "courtspublicpref" || rawType === "courts_public_pref") score += 1 * decay; + else if (t === "courts_mediators" || t === "courtsmediators" || rawType === "courts_mediators") score += 6 * decay; + else if (t === "courts_open_support" || t === "courtsopensupport" || rawType === "courts_open_support") score += 2 * decay; + else if (t === "courts_verdict_vote" || t === "courtsverdictvote" || rawType === "courts_verdict_vote") score += 3 * decay; + else if (t === "courts_judge_assign" || t === "courtsjudgeassign" || rawType === "courts_judge_assign") score += 5 * decay; } return Math.max(0, Math.round(score)); } @@ -550,7 +555,7 @@ async function getUserEngagementScore(userId) { const isSelf = idsEqual(uid, ssb.id); const hasSSB = !!(ssb && ssb.publish); - const changed = (prev === null) || (karmaScore !== prev); + const changed = (prev === null) || (karmaScore !== prev); const nowMs = Date.now(); const lastMs = lastPublishedTimestamp ? new Date(lastPublishedTimestamp).getTime() : 0; const cooldownOk = (nowMs - lastMs) >= 24 * 60 * 60 * 1000; @@ -613,7 +618,7 @@ async function getLastPublishedTimestamp(userId) { ); }); } - + function computePoolVars(pubBal, rules) { const alphaCap = (rules.alpha || DEFAULT_RULES.alpha) * pubBal; const available = Math.max(0, pubBal - (rules.reserveMin || DEFAULT_RULES.reserveMin)); @@ -625,13 +630,24 @@ async function getLastPublishedTimestamp(userId) { async function computeEpoch({ epochId, userId, rules = DEFAULT_RULES }) { const pubBal = await safeGetBalance("pub"); const pv = computePoolVars(pubBal, rules); - const engagementScore = await getUserEngagementScore(userId); - const userWeight = 1 + engagementScore / 100; - const weights = [{ user: userId, w: userWeight }]; - const W = weights.reduce((acc, x) => acc + x.w, 0) || 1; + const addresses = await listAddressesMerged(); + const eligible = addresses.filter(a => a.address && isValidEcoinAddress(a.address)); const capUser = (rules.caps && rules.caps.cap_user_epoch) || DEFAULT_RULES.caps.cap_user_epoch; + const wMin = (rules.caps && rules.caps.w_min) || DEFAULT_RULES.caps.w_min; + const wMax = (rules.caps && rules.caps.w_max) || DEFAULT_RULES.caps.w_max; + const weights = []; + for (const entry of eligible) { + const score = await getUserEngagementScore(entry.id); + weights.push({ user: entry.id, w: clamp(1 + score / 100, wMin, wMax) }); + } + if (!weights.length && userId) { + const score = await getUserEngagementScore(userId); + weights.push({ user: userId, w: clamp(1 + score / 100, wMin, wMax) }); + } + const W = weights.reduce((acc, x) => acc + x.w, 0) || 1; + const floorUbi = 1; const allocations = weights.map(({ user, w }) => { - const amount = Math.min(pv.pool * w / W, capUser); + const amount = Math.max(floorUbi, Math.min(pv.pool * w / W, capUser)); return { id: `alloc:${epochId}:${user}`, epoch: epochId, @@ -645,23 +661,29 @@ async function getLastPublishedTimestamp(userId) { return { epoch: { id: epochId, pool: Number(pv.pool.toFixed(6)), weightsSum: Number(W.toFixed(6)), rules, hash }, allocations }; } - async function executeEpoch({ epochId, rules = DEFAULT_RULES }) { - const { epoch, allocations } = await computeEpoch({ epochId, userId: config.keys.id, rules }); + async function executeEpoch({ epochId, rules = DEFAULT_RULES } = {}) { + const eid = epochId || epochIdNow(); + await expireOldAllocations(); + const existing = await epochsRepo.get(eid); + if (existing) return { epoch: existing, allocations: await transfersRepo.listByTag(`epoch:${eid}`) }; + const { epoch, allocations } = await computeEpoch({ epochId: eid, userId: config.keys.id, rules }); await epochsRepo.save(epoch); for (const a of allocations) { if (a.amount <= 0) continue; - await transfersRepo.create({ + const record = { id: a.id, - from: "PUB", + from: config.keys.id, to: a.user, amount: a.amount, - concept: `UBI ${epochId}`, - status: "UNCONFIRMED", + concept: `UBI ${eid}`, + status: "UNCLAIMED", createdAt: new Date().toISOString(), - deadline: new Date(Date.now() + DEFAULT_RULES.graceDays * 86400000).toISOString(), - tags: ["UBI", `epoch:${epochId}`], + deadline: new Date(Date.now() + (rules.graceDays || DEFAULT_RULES.graceDays) * 86400000).toISOString(), + tags: ["UBI", `epoch:${eid}`], opinions: {} - }); + }; + await transfersRepo.create(record); + try { await publishUbiAllocation(record); } catch (_) {} } return { epoch, allocations }; } @@ -672,35 +694,174 @@ async function getLastPublishedTimestamp(userId) { return new Promise((resolve, reject) => ssbClient.publish(content, (err, res) => err ? reject(err) : resolve(res))); } - async function claimAllocation({ transferId, claimerId, pubWalletUrl, pubWalletUser, pubWalletPass }) { + async function claimAllocation({ transferId, claimerId, forcePub = false }) { const allocation = await transfersRepo.findById(transferId); - if (!allocation || allocation.status !== "UNCONFIRMED") throw new Error("Invalid allocation or already confirmed."); - if (allocation.to !== claimerId) throw new Error("This allocation is not for you."); - const txid = await rpcCall("sendtoaddress", [pubWalletUrl, allocation.amount, "UBI claim", pubWalletUser, pubWalletPass]); + if (!allocation || (allocation.status !== "UNCLAIMED" && allocation.status !== "UNCONFIRMED")) throw new Error("Invalid allocation or already claimed."); + if (claimerId && allocation.to !== claimerId) throw new Error("This allocation is not for you."); + const addr = await getUserAddress(allocation.to); + if (!addr || !isValidEcoinAddress(addr)) throw new Error("No valid ECOin address registered."); + const txid = await rpcCall("sendtoaddress", [addr, allocation.amount, `UBI ${allocation.concept || "claim"}`], "pub"); + if (!txid) throw new Error("RPC sendtoaddress failed. Check PUB wallet configuration."); + await transfersRepo.markClosed(transferId, txid); return { txid }; } + async function claimUBI(userId) { + const uid = resolveUserId(userId); + const epochId = epochIdNow(); + const pubId = getConfiguredPubId(); + if (!pubId) throw new Error("no_pub_configured"); + const alreadyClaimed = await hasClaimedThisMonth(uid); + if (alreadyClaimed) throw new Error("already_claimed"); + const karmaScore = await getUserEngagementScore(uid); + const wMin = DEFAULT_RULES.caps.w_min; + const wMax = DEFAULT_RULES.caps.w_max; + const capUser = DEFAULT_RULES.caps.cap_user_epoch; + const userW = clamp(1 + karmaScore / 100, wMin, wMax); + const amount = Number(Math.max(1, Math.min(capUser * (userW / wMax), capUser)).toFixed(6)); + const ssb = await openSsb(); + if (!ssb || !ssb.publish) throw new Error("ssb_unavailable"); + const now = new Date().toISOString(); + const transferContent = { + type: "transfer", + from: pubId, + to: uid, + concept: `UBI ${epochId} ${uid}`, + amount: String(amount), + createdAt: now, + updatedAt: now, + deadline: null, + confirmedBy: [pubId], + status: "UNCONFIRMED", + tags: ["UBI", "PENDING"], + opinions: {}, + opinions_inhabitants: [] + }; + const transferRes = await new Promise((resolve, reject) => ssb.publish(transferContent, (err, res) => err ? reject(err) : resolve(res))); + const transferId = transferRes?.key || ""; + const claimContent = { type: "ubiClaim", pubId, amount, epochId, claimedAt: now, transferId }; + await new Promise((resolve, reject) => ssb.publish(claimContent, (err, res) => err ? reject(err) : resolve(res))); + return { status: "claimed_pending", amount, epochId }; + } + async function updateAllocationStatus(allocationId, status, txid) { - const all = await transfersRepo.listAll(); + if (status === "CLOSED") { + await transfersRepo.markClosed(allocationId, txid); + return; + } + ensureStoreFiles(); + const all = readJson(TRANSFERS_PATH, []); const idx = all.findIndex(t => t.id === allocationId); if (idx >= 0) { all[idx].status = status; - all[idx].txid = txid; - await transfersRepo.create(all[idx]); + if (txid) all[idx].txid = txid; + writeJson(TRANSFERS_PATH, all); } } + async function hasClaimedThisMonth(userId) { + const epochId = epochIdNow(); + const msgs = await scanLogStream(); + for (const m of msgs) { + const v = m.value || {}; + const c = v.content || {}; + if (c.type === "ubiClaimResult" && c.userId === userId && c.epochId === epochId) return true; + if (c.type === "ubiClaim" && v.author === userId && c.epochId === epochId) return true; + } + return false; + } + + async function getUbiClaimHistory(userId) { + const msgs = await scanLogStream(); + let lastClaimedDate = null; + let totalClaimed = 0; + let claimCount = 0; + for (const m of msgs) { + const v = m.value || {}; + const c = v.content || {}; + if (c.type === "ubiClaimResult" && c.userId === userId) { + totalClaimed += Number(c.amount) || 0; + claimCount += 1; + const d = c.processedAt || null; + if (d && (!lastClaimedDate || d > lastClaimedDate)) lastClaimedDate = d; + } + } + return { lastClaimedDate, totalClaimed: Number(totalClaimed.toFixed(6)), claimCount }; + } + + async function getUbiAllocationsFromSSB() { + const pubId = getConfiguredPubId(); + if (!pubId) return []; + const msgs = await scanLogStream(); + const out = []; + for (const m of msgs) { + const v = m.value || {}; + const c = v.content || {}; + if (v.author === pubId && c && c.type === "ubiAllocation") { + out.push({ + id: c.allocationId, + from: pubId, + to: c.to, + amount: c.amount, + concept: c.concept, + epochId: c.epochId, + status: c.status || "UNCLAIMED", + createdAt: c.createdAt || new Date().toISOString() + }); + } + } + return out; + } + + async function publishPubAvailability() { + if (!isPubNode()) return; + const balance = await safeGetBalance("pub"); + const floor = Math.max(1, DEFAULT_RULES?.caps?.floor_user || 1); + const available = Number(balance) >= floor; + const ssb = await openSsb(); + if (!ssb || !ssb.publish) return; + const content = { type: "pubAvailability", available, coin: "ECO", timestamp: Date.now() }; + await new Promise((resolve, reject) => ssb.publish(content, (err, res) => err ? reject(err) : resolve(res))); + return available; + } + + async function getPubAvailabilityFromSSB() { + const pubId = getConfiguredPubId(); + if (!pubId) return false; + const msgs = await scanLogStream(); + let latest = null; + for (const m of msgs) { + const v = m.value || {}; + const c = v.content || {}; + if (v.author === pubId && c && c.type === "pubAvailability" && c.coin === "ECO") { + if (!latest || (Number(c.timestamp) || 0) > (Number(latest.timestamp) || 0)) latest = c; + } + } + return !!(latest && latest.available); + } + async function listBanking(filter = "overview", userId) { const uid = resolveUserId(userId); const epochId = epochIdNow(); - const pubBalance = await safeGetBalance("pub"); + let pubBalance = 0; + let ubiAvailable = false; + let allocations; + if (isPubNode()) { + pubBalance = await safeGetBalance("pub"); + const floor = Math.max(1, DEFAULT_RULES?.caps?.floor_user || 1); + ubiAvailable = Number(pubBalance) >= floor; + try { await publishPubAvailability(); } catch (_) {} + const all = await transfersRepo.listByTag("UBI"); + allocations = all.map(t => ({ + id: t.id, concept: t.concept, from: t.from, to: t.to, amount: t.amount, status: t.status, + createdAt: t.createdAt || t.deadline || new Date().toISOString(), txid: t.txid + })); + } else { + ubiAvailable = await getPubAvailabilityFromSSB(); + allocations = await getUbiAllocationsFromSSB(); + } const userBalance = await safeGetBalance("user"); const epochs = await epochsRepo.list(); - const all = await transfersRepo.listByTag("UBI"); - const allocations = all.map(t => ({ - id: t.id, concept: t.concept, from: t.from, to: t.to, amount: t.amount, status: t.status, - createdAt: t.createdAt || t.deadline || new Date().toISOString(), txid: t.txid - })); let computed = null; try { computed = await computeEpoch({ epochId, userId: uid, rules: DEFAULT_RULES }); } catch {} const pv = computePoolVars(pubBalance, DEFAULT_RULES); @@ -709,14 +870,22 @@ async function getLastPublishedTimestamp(userId) { const poolForEpoch = computed?.epoch?.pool || pv.pool || 0; const futureUBI = Number(((engagementScore / 100) * poolForEpoch).toFixed(6)); const addresses = await listAddressesMerged(); + const alreadyClaimed = await hasClaimedThisMonth(uid); + const pubId = getConfiguredPubId(); + const userAddress = await getUserAddress(uid); + const userWalletCfg = getWalletCfg("user") || {}; + const hasValidWallet = !!(userAddress && isValidEcoinAddress(userAddress) && userWalletCfg.url); const summary = { userBalance, - pubBalance, epochId, pool: poolForEpoch, weightsSum: computed?.epoch?.weightsSum || 0, userEngagementScore: engagementScore, - futureUBI + futureUBI, + alreadyClaimed, + pubId, + hasValidWallet, + ubiAvailability: ubiAvailable ? "OK" : "NO_FUNDS" }; const exchange = await calculateEcoinValue(); return { summary, allocations, epochs, rules: DEFAULT_RULES, addresses, exchange }; @@ -743,87 +912,214 @@ async function getLastPublishedTimestamp(userId) { id: t.id, concept: t.concept, from: t.from, to: t.to, amount: t.amount, status: t.status, createdAt: t.createdAt || new Date().toISOString(), txid: t.txid })); } - - async function calculateEcoinValue() { - let isSynced = false; - let circulatingSupply = 0; + + let genesisTimeCache = null; + + async function getAvgBlockSeconds(blocks) { + if (!blocks || blocks < 2) return 0; try { - circulatingSupply = await getCirculatingSupply(); - isSynced = circulatingSupply > 0; - } catch (error) { - circulatingSupply = 0; - isSynced = false; - } + if (!genesisTimeCache) { + const h1 = await rpcCall("getblockhash", [1]); + if (!h1) return 0; + const b1 = await rpcCall("getblock", [h1]); + genesisTimeCache = b1?.time || null; + if (!genesisTimeCache) return 0; + } + const hCur = await rpcCall("getblockhash", [blocks]); + if (!hCur) return 0; + const bCur = await rpcCall("getblock", [hCur]); + const curTime = bCur?.time || 0; + if (!curTime) return 0; + const elapsed = curTime - genesisTimeCache; + return elapsed > 0 ? elapsed / (blocks - 1) : 0; + } catch (_) { return 0; } + } + + async function calculateEcoinValue() { const totalSupply = 25500000; - const ecoValuePerHour = await calculateEcoValuePerHour(circulatingSupply); - const ecoInHours = calculateEcoinHours(circulatingSupply, ecoValuePerHour); - const inflationFactor = await calculateInflationFactor(circulatingSupply, totalSupply); + let circulatingSupply = 0; + let blocks = 0; + let blockValueEco = 0; + let isSynced = false; + try { + const info = await rpcCall("getinfo", []); + circulatingSupply = info?.moneysupply || 0; + blocks = info?.blocks || 0; + isSynced = circulatingSupply > 0; + const mining = await rpcCall("getmininginfo", []); + blockValueEco = (mining?.blockvalue || 0) / 1e8; + } catch (_) {} + const avgSec = await getAvgBlockSeconds(blocks); + const ecoValuePerHour = avgSec > 0 ? (3600 / avgSec) * blockValueEco : 0; + const maturity = totalSupply > 0 ? circulatingSupply / totalSupply : 0; + const ecoTimeMs = maturity * 3600 * 1000; + const annualIssuance = ecoValuePerHour * 24 * 365; + const inflationFactor = circulatingSupply > 0 ? (annualIssuance / circulatingSupply) * 100 : 0; + const inflationMonthly = inflationFactor / 12; return { - ecoValue: ecoValuePerHour, - ecoInHours: Number(ecoInHours.toFixed(2)), - totalSupply: totalSupply, - inflationFactor: inflationFactor ? Number(inflationFactor.toFixed(2)) : 0, + ecoValue: Number(ecoValuePerHour.toFixed(6)), + ecoTimeMs: Number(ecoTimeMs.toFixed(3)), + totalSupply, + inflationFactor: Number(inflationFactor.toFixed(2)), + inflationMonthly: Number(inflationMonthly.toFixed(2)), currentSupply: circulatingSupply, - isSynced: isSynced + isSynced }; } - async function calculateEcoValuePerHour(circulatingSupply) { - const issuanceRate = await getIssuanceRate(); - const inflation = await calculateInflationFactor(circulatingSupply, 25500000); - const ecoValuePerHour = (circulatingSupply / 100000) * (1 + inflation / 100); - return ecoValuePerHour; - } - - function calculateEcoinHours(circulatingSupply, ecoValuePerHour) { - const ecoInHours = circulatingSupply / ecoValuePerHour; - return ecoInHours; - } - - async function calculateInflationFactor(circulatingSupply, totalSupply) { - const issuanceRate = await getIssuanceRate(); - if (circulatingSupply > 0) { - const inflationRate = (issuanceRate / circulatingSupply) * 100; - return inflationRate; - } - return 0; - } - - async function getIssuanceRate() { - try { - const result = await rpcCall("getmininginfo", []); - const blockValue = result?.blockvalue || 0; - const blocks = result?.blocks || 0; - return (blockValue / 1e8) * blocks; - } catch (error) { - return 0.02; - } - } - - async function getCirculatingSupply() { - try { - const result = await rpcCall("getinfo", []); - return result?.moneysupply || 0; - } catch (error) { - return 0; - } - } - async function getBankingData(userId) { const ecoValue = await calculateEcoinValue(); const karmaScore = await getUserEngagementScore(userId); + let estimatedUBI = 0; + try { + const pubBal = isPubNode() ? await safeGetBalance("pub") : 0; + const pv = computePoolVars(pubBal, DEFAULT_RULES); + const pool = pv.pool || 0; + const addresses = await listAddressesMerged(); + const eligible = addresses.filter(a => a.address && isValidEcoinAddress(a.address)); + const totalW = eligible.length > 0 ? eligible.length + eligible.length * (karmaScore / 100) : 1; + const userW = 1 + karmaScore / 100; + const cap = DEFAULT_RULES.caps?.cap_user_epoch ?? 50; + estimatedUBI = Math.min(pool * (userW / Math.max(1, totalW)), cap); + } catch (_) {} + const claimHistory = await getUbiClaimHistory(userId).catch(() => ({ lastClaimedDate: null, totalClaimed: 0 })); return { ecoValue, karmaScore, + estimatedUBI, + lastClaimedDate: claimHistory.lastClaimedDate, + totalClaimed: claimHistory.totalClaimed }; } + async function expireOldAllocations() { + const cutoffMs = MAX_PENDING_EPOCHS * 30 * 86400000; + const now = Date.now(); + const allocs = await transfersRepo.listAll(); + for (const a of allocs) { + if ((a.status === "UNCLAIMED" || a.status === "UNCONFIRMED") && + (now - new Date(a.createdAt).getTime()) > cutoffMs) { + await updateAllocationStatus(a.id, "EXPIRED"); + } + } + } + + async function publishUbiAllocation(allocation) { + const ssb = await openSsb(); + if (!ssb) return; + const epochTag = (allocation.tags || []).find(t => t.startsWith("epoch:")); + const content = { + type: "ubiAllocation", + allocationId: allocation.id, + to: allocation.to, + amount: allocation.amount, + concept: allocation.concept, + epochId: epochTag ? epochTag.slice(6) : "", + status: "UNCLAIMED", + createdAt: allocation.createdAt + }; + return new Promise((resolve, reject) => ssb.publish(content, (err, res) => err ? reject(err) : resolve(res))); + } + + async function publishUbiClaim(allocationId, epochId) { + const ssb = await openSsb(); + if (!ssb) return; + const content = { type: "ubiClaim", allocationId, epochId, claimedAt: new Date().toISOString() }; + return new Promise((resolve, reject) => ssb.publish(content, (err, res) => err ? reject(err) : resolve(res))); + } + + async function publishUbiClaimResult(allocationId, epochId, txid, userId, amount) { + const ssb = await openSsb(); + if (!ssb) return; + const content = { type: "ubiClaimResult", allocationId, epochId, txid, userId, amount, processedAt: new Date().toISOString() }; + return new Promise((resolve, reject) => ssb.publish(content, (err, res) => err ? reject(err) : resolve(res))); + } + + async function processPendingClaims() { + if (!isPubNode()) return; + const ssb = await openSsb(); + if (!ssb) return; + const claims = []; + const results = []; + await new Promise((resolve, reject) => { + pull(ssb.messagesByType({ type: "ubiClaim", reverse: false }), + pull.drain(msg => { + if (msg.value?.content?.type === "ubiClaim") { + claims.push({ ...msg.value.content, _author: msg.value.author }); + } + }, + err => err ? reject(err) : resolve())); + }); + await new Promise((resolve, reject) => { + pull(ssb.messagesByType({ type: "ubiClaimResult", reverse: false }), + pull.drain(msg => { if (msg.value?.content?.type === "ubiClaimResult") results.push(msg.value.content); }, + err => err ? reject(err) : resolve())); + }); + const processedEpochUser = new Set(results.map(r => `${r.epochId}:${r.userId}`)); + const epochId = epochIdNow(); + for (const claim of claims) { + const claimantId = claim._author; + if (!claimantId) continue; + const claimEpoch = claim.epochId || epochId; + if (processedEpochUser.has(`${claimEpoch}:${claimantId}`)) continue; + try { + const addr = await getUserAddress(claimantId); + if (!addr || !isValidEcoinAddress(addr)) continue; + const pubBal = await safeGetBalance("pub"); + if (pubBal <= 0) continue; + const pv = computePoolVars(pubBal, DEFAULT_RULES); + const addresses = await listAddressesMerged(); + const eligible = addresses.filter(a => a.address && isValidEcoinAddress(a.address)); + const karmaScore = await getUserEngagementScore(claimantId); + const wMin = DEFAULT_RULES.caps.w_min; + const wMax = DEFAULT_RULES.caps.w_max; + const capUser = DEFAULT_RULES.caps.cap_user_epoch; + const userW = clamp(1 + karmaScore / 100, wMin, wMax); + const totalW = eligible.reduce((acc) => acc + clamp(1, wMin, wMax), 0) || 1; + const amount = Number(Math.max(1, Math.min(pv.pool * userW / totalW, capUser)).toFixed(6)); + const txid = await rpcCall("sendtoaddress", [addr, amount, `UBI ${claimEpoch}`], "pub"); + if (!txid) continue; + await publishUbiClaimResult(claim.allocationId || `claim:${claimEpoch}:${claimantId}`, claimEpoch, txid, claimantId, amount); + await publishBankClaim({ amount, epochId: claimEpoch, allocationId: claim.allocationId || `claim:${claimEpoch}:${claimantId}`, txid }); + const now = new Date().toISOString(); + await new Promise((resolve, reject) => ssb.publish({ + type: "transfer", + from: config.keys.id, + to: claimantId, + concept: `UBI ${claimEpoch} ${claimantId}`, + amount: String(amount), + createdAt: now, + updatedAt: now, + deadline: null, + confirmedBy: [config.keys.id], + status: "UNCONFIRMED", + tags: ["UBI"], + opinions: {}, + opinions_inhabitants: [], + txid + }, (err, msg) => err ? reject(err) : resolve(msg))); + } catch (_) {} + } + } + return { DEFAULT_RULES, + isPubNode, + getConfiguredPubId, computeEpoch, executeEpoch, getUserEngagementScore, publishBankClaim, + publishUbiAllocation, + publishUbiClaim, + publishUbiClaimResult, + publishPubAvailability, + getPubAvailabilityFromSSB, + hasClaimedThisMonth, + getUbiClaimHistory, + claimUBI, + processPendingClaims, + expireOldAllocations, claimAllocation, listBanking, getAllocationById, @@ -839,4 +1135,3 @@ async function getLastPublishedTimestamp(userId) { getBankingData }; }; - diff --git a/nodejs-project/nodejs-project/src/models/calendars_model.js b/nodejs-project/nodejs-project/src/models/calendars_model.js new file mode 100644 index 00000000..01448ac6 --- /dev/null +++ b/nodejs-project/nodejs-project/src/models/calendars_model.js @@ -0,0 +1,536 @@ +const pull = require("../server/node_modules/pull-stream") +const { getConfig } = require("../configs/config-manager.js") +const logLimit = getConfig().ssbLogStream?.limit || 1000 + +const safeText = (v) => String(v || "").trim() +const normalizeTags = (raw) => { + if (!raw) return [] + if (Array.isArray(raw)) return raw.map(t => String(t || "").trim()).filter(Boolean) + return String(raw).split(",").map(t => t.trim()).filter(Boolean) +} +const hasAnyInterval = (w, m, y) => !!(w || m || y) +const expandRecurrence = (firstDate, deadline, weekly, monthly, yearly) => { + const start = new Date(firstDate) + const out = [start] + if (!deadline || !hasAnyInterval(weekly, monthly, yearly)) return out + const end = new Date(deadline).getTime() + const seen = new Set([start.getTime()]) + const walk = (mutate) => { + const n = new Date(start) + mutate(n) + while (n.getTime() <= end) { + const t = n.getTime() + if (!seen.has(t)) { seen.add(t); out.push(new Date(n)) } + mutate(n) + } + } + if (weekly) walk((d) => d.setDate(d.getDate() + 7)) + if (monthly) walk((d) => d.setMonth(d.getMonth() + 1)) + if (yearly) walk((d) => d.setFullYear(d.getFullYear() + 1)) + return out.sort((a, b) => a.getTime() - b.getTime()) +} + +module.exports = ({ cooler, pmModel }) => { + let ssb + const openSsb = async () => { if (!ssb) ssb = await cooler.open(); return ssb } + + const readAll = async (ssbClient) => + new Promise((resolve, reject) => + pull(ssbClient.createLogStream({ limit: logLimit }), pull.collect((err, msgs) => err ? reject(err) : resolve(msgs))) + ) + + const buildIndex = (messages) => { + const tomb = new Set() + const nodes = new Map() + const parent = new Map() + const child = new Map() + + for (const m of messages) { + const k = m.key + const v = m.value || {} + const c = v.content + if (!c) continue + if (c.type === "tombstone" && c.target) { tomb.add(c.target); continue } + if (c.type === "calendar") { + nodes.set(k, { key: k, ts: v.timestamp || m.timestamp || 0, c, author: v.author }) + if (c.replaces) { parent.set(k, c.replaces); child.set(c.replaces, k) } + } + } + + const rootOf = (id) => { let cur = id; while (parent.has(cur)) cur = parent.get(cur); return cur } + const tipOf = (id) => { let cur = id; while (child.has(cur)) cur = child.get(cur); return cur } + + const roots = new Set() + for (const id of nodes.keys()) roots.add(rootOf(id)) + const tipByRoot = new Map() + for (const r of roots) tipByRoot.set(r, tipOf(r)) + + return { tomb, nodes, parent, child, rootOf, tipOf, tipByRoot } + } + + const buildCalendar = (node, rootId) => { + const c = node.c || {} + if (c.type !== "calendar") return null + return { + key: node.key, + rootId, + title: safeText(c.title), + status: c.status || "OPEN", + deadline: c.deadline || "", + tags: Array.isArray(c.tags) ? c.tags : [], + author: c.author || node.author, + participants: Array.isArray(c.participants) ? c.participants : [], + createdAt: c.createdAt || new Date(node.ts).toISOString(), + updatedAt: c.updatedAt || null, + tribeId: c.tribeId || null + } + } + + const isClosed = (calendar) => { + if (calendar.status === "CLOSED") return true + if (!calendar.deadline) return false + return new Date(calendar.deadline).getTime() <= Date.now() + } + + return { + type: "calendar", + + async resolveRootId(id) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + let tip = id + while (idx.child.has(tip)) tip = idx.child.get(tip) + if (idx.tomb.has(tip)) throw new Error("Not found") + let root = tip + while (idx.parent.has(root)) root = idx.parent.get(root) + return root + }, + + async resolveCurrentId(id) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + let tip = id + while (idx.child.has(tip)) tip = idx.child.get(tip) + if (idx.tomb.has(tip)) throw new Error("Not found") + return tip + }, + + async createCalendar({ title, status, deadline, tags, firstDate, firstDateLabel, firstNote, intervalWeekly, intervalMonthly, intervalYearly, tribeId }) { + const ssbClient = await openSsb() + const userId = ssbClient.id + const now = new Date().toISOString() + const validStatus = ["OPEN", "CLOSED"].includes(String(status).toUpperCase()) ? String(status).toUpperCase() : "OPEN" + + if (deadline && new Date(deadline).getTime() <= Date.now()) throw new Error("Deadline must be in the future") + if (!firstDate || new Date(firstDate).getTime() <= Date.now()) throw new Error("First date must be in the future") + + const content = { + type: "calendar", + title: safeText(title), + status: validStatus, + deadline: deadline || "", + tags: normalizeTags(tags), + author: userId, + participants: [userId], + createdAt: now, + updatedAt: now, + ...(tribeId ? { tribeId } : {}) + } + + const calMsg = await new Promise((resolve, reject) => { + ssbClient.publish(content, (err, msg) => err ? reject(err) : resolve(msg)) + }) + + const calendarId = calMsg.key + const dates = expandRecurrence(firstDate, deadline, intervalWeekly, intervalMonthly, intervalYearly) + + const allDateMsgs = [] + for (const d of dates) { + const dateMsg = await new Promise((resolve, reject) => { + ssbClient.publish({ + type: "calendarDate", + calendarId, + date: d.toISOString(), + label: safeText(firstDateLabel), + author: userId, + createdAt: new Date().toISOString() + }, (err, msg) => err ? reject(err) : resolve(msg)) + }) + allDateMsgs.push(dateMsg) + } + + if (firstNote && safeText(firstNote) && allDateMsgs.length > 0) { + for (const dateMsg of allDateMsgs) { + await new Promise((resolve, reject) => { + ssbClient.publish({ + type: "calendarNote", + calendarId, + dateId: dateMsg.key, + text: safeText(firstNote), + author: userId, + createdAt: new Date().toISOString() + }, (err, msg) => err ? reject(err) : resolve(msg)) + }) + } + } + + return calMsg + }, + + async updateCalendarById(id, data) { + const tipId = await this.resolveCurrentId(id) + const ssbClient = await openSsb() + const userId = ssbClient.id + + return new Promise((resolve, reject) => { + ssbClient.get(tipId, (err, item) => { + if (err || !item?.content) return reject(new Error("Calendar not found")) + if (item.content.author !== userId) return reject(new Error("Not the author")) + const c = item.content + const updated = { + ...c, + title: data.title !== undefined ? safeText(data.title) : c.title, + status: data.status !== undefined ? (["OPEN","CLOSED"].includes(String(data.status).toUpperCase()) ? String(data.status).toUpperCase() : c.status) : c.status, + deadline: data.deadline !== undefined ? data.deadline : c.deadline, + tags: data.tags !== undefined ? normalizeTags(data.tags) : c.tags, + updatedAt: new Date().toISOString(), + replaces: tipId + } + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId } + ssbClient.publish(tombstone, (e1) => { + if (e1) return reject(e1) + ssbClient.publish(updated, (e2, res) => e2 ? reject(e2) : resolve(res)) + }) + }) + }) + }, + + async deleteCalendarById(id) { + const tipId = await this.resolveCurrentId(id) + const ssbClient = await openSsb() + const userId = ssbClient.id + return new Promise((resolve, reject) => { + ssbClient.get(tipId, (err, item) => { + if (err || !item?.content) return reject(new Error("Calendar not found")) + if (item.content.author !== userId) return reject(new Error("Not the author")) + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId } + ssbClient.publish(tombstone, (e) => e ? reject(e) : resolve()) + }) + }) + }, + + async joinCalendar(calendarId) { + const tipId = await this.resolveCurrentId(calendarId) + const ssbClient = await openSsb() + const userId = ssbClient.id + + return new Promise((resolve, reject) => { + ssbClient.get(tipId, (err, item) => { + if (err || !item?.content) return reject(new Error("Calendar not found")) + const c = item.content + const participants = Array.isArray(c.participants) ? c.participants : [] + if (participants.includes(userId)) return resolve() + const updated = { ...c, participants: [...participants, userId], updatedAt: new Date().toISOString(), replaces: tipId } + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId } + ssbClient.publish(tombstone, (e1) => { + if (e1) return reject(e1) + ssbClient.publish(updated, (e2, res) => e2 ? reject(e2) : resolve(res)) + }) + }) + }) + }, + + async leaveCalendar(calendarId) { + const tipId = await this.resolveCurrentId(calendarId) + const ssbClient = await openSsb() + const userId = ssbClient.id + return new Promise((resolve, reject) => { + ssbClient.get(tipId, (err, item) => { + if (err || !item?.content) return reject(new Error("Calendar not found")) + const c = item.content + if (c.author === userId) return reject(new Error("Author cannot leave")) + const participants = Array.isArray(c.participants) ? c.participants : [] + if (!participants.includes(userId)) return resolve() + const updated = { ...c, participants: participants.filter(p => p !== userId), updatedAt: new Date().toISOString(), replaces: tipId } + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId } + ssbClient.publish(tombstone, (e1) => { + if (e1) return reject(e1) + ssbClient.publish(updated, (e2, res) => e2 ? reject(e2) : resolve(res)) + }) + }) + }) + }, + + async getCalendarById(id) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + let tip = id + while (idx.child.has(tip)) tip = idx.child.get(tip) + if (idx.tomb.has(tip)) return null + const node = idx.nodes.get(tip) + if (!node || node.c.type !== "calendar") return null + let root = tip + while (idx.parent.has(root)) root = idx.parent.get(root) + const cal = buildCalendar(node, root) + if (!cal) return null + cal.isClosed = isClosed(cal) + return cal + }, + + async listAll({ filter = "all", viewerId } = {}) { + const ssbClient = await openSsb() + const uid = viewerId || ssbClient.id + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + const items = [] + for (const [rootId, tipId] of idx.tipByRoot.entries()) { + if (idx.tomb.has(tipId)) continue + const node = idx.nodes.get(tipId) + if (!node || node.c.type !== "calendar") continue + const cal = buildCalendar(node, rootId) + if (!cal) continue + cal.isClosed = isClosed(cal) + items.push(cal) + } + let list = items + if (filter === "mine") list = list.filter(c => c.author === uid) + else if (filter === "recent") { + const now = Date.now() + list = list.filter(c => new Date(c.createdAt).getTime() >= now - 86400000) + } + else if (filter === "open") list = list.filter(c => !c.isClosed) + else if (filter === "closed") list = list.filter(c => c.isClosed) + return list.slice().sort((a, b) => new Date(b.createdAt) - new Date(a.createdAt)) + }, + + async addDate(calendarId, date, label, intervalWeekly, intervalMonthly, intervalYearly, intervalDeadline) { + const ssbClient = await openSsb() + const userId = ssbClient.id + const rootId = await this.resolveRootId(calendarId) + const cal = await this.getCalendarById(rootId) + if (!cal) throw new Error("Calendar not found") + if (cal.status === "CLOSED" && userId !== cal.author) throw new Error("Only the author can add dates to a CLOSED calendar") + if (!date || new Date(date).getTime() <= Date.now()) throw new Error("Date must be in the future") + + const deadlineForExpansion = (intervalDeadline && hasAnyInterval(intervalWeekly, intervalMonthly, intervalYearly)) ? intervalDeadline : cal.deadline + const dates = expandRecurrence(date, deadlineForExpansion, intervalWeekly, intervalMonthly, intervalYearly) + const allMsgs = [] + for (const d of dates) { + const msg = await new Promise((resolve, reject) => { + ssbClient.publish({ + type: "calendarDate", + calendarId: rootId, + date: d.toISOString(), + label: safeText(label), + author: userId, + createdAt: new Date().toISOString() + }, (err, m) => err ? reject(err) : resolve(m)) + }) + allMsgs.push(msg) + } + return allMsgs + }, + + async getDatesForCalendar(calendarId) { + const rootId = await this.resolveRootId(calendarId) + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const tombstoned = new Set() + for (const m of messages) { + const c = (m.value || {}).content + if (c && c.type === "tombstone" && c.target) tombstoned.add(c.target) + } + const dates = [] + for (const m of messages) { + if (tombstoned.has(m.key)) continue + const v = m.value || {} + const c = v.content + if (!c || c.type !== "calendarDate") continue + if (c.calendarId !== rootId) continue + dates.push({ + key: m.key, + calendarId: c.calendarId, + date: c.date, + label: c.label || "", + author: c.author || v.author, + createdAt: c.createdAt || new Date(v.timestamp || 0).toISOString() + }) + } + dates.sort((a, b) => new Date(a.date) - new Date(b.date)) + return dates + }, + + async deleteDate(dateId, calendarId) { + const ssbClient = await openSsb() + const userId = ssbClient.id + const rootId = await this.resolveRootId(calendarId) + const cal = await this.getCalendarById(rootId) + if (!cal) throw new Error("Calendar not found") + const messages = await readAll(ssbClient) + const tombstoned = new Set() + for (const m of messages) { + const c = (m.value || {}).content + if (c && c.type === "tombstone" && c.target) tombstoned.add(c.target) + } + let dateAuthor = null + for (const m of messages) { + if (m.key !== dateId) continue + const c = (m.value || {}).content + if (!c || c.type !== "calendarDate") continue + if (tombstoned.has(m.key)) break + dateAuthor = c.author || (m.value || {}).author + break + } + if (!dateAuthor) throw new Error("Date not found") + if (dateAuthor !== userId && cal.author !== userId) throw new Error("Not authorized") + for (const m of messages) { + const c = (m.value || {}).content + if (!c || c.type !== "calendarNote") continue + if (tombstoned.has(m.key)) continue + if (c.dateId !== dateId) continue + await new Promise((resolve, reject) => { + ssbClient.publish({ type: "tombstone", target: m.key, deletedAt: new Date().toISOString(), author: userId }, (e) => e ? reject(e) : resolve()) + }) + } + return new Promise((resolve, reject) => { + ssbClient.publish({ type: "tombstone", target: dateId, deletedAt: new Date().toISOString(), author: userId }, (e) => e ? reject(e) : resolve()) + }) + }, + + async addNote(calendarId, dateId, text) { + const ssbClient = await openSsb() + const userId = ssbClient.id + const rootId = await this.resolveRootId(calendarId) + const cal = await this.getCalendarById(rootId) + if (!cal) throw new Error("Calendar not found") + if (!cal.participants.includes(userId)) throw new Error("Only participants can add notes") + return new Promise((resolve, reject) => { + ssbClient.publish({ + type: "calendarNote", + calendarId: rootId, + dateId, + text: safeText(text), + author: userId, + createdAt: new Date().toISOString() + }, (err, msg) => err ? reject(err) : resolve(msg)) + }) + }, + + async deleteNote(noteId) { + const ssbClient = await openSsb() + const userId = ssbClient.id + return new Promise((resolve, reject) => { + ssbClient.get(noteId, (err, item) => { + if (err || !item?.content) return reject(new Error("Note not found")) + if (item.content.author !== userId) return reject(new Error("Not the author")) + ssbClient.publish({ type: "tombstone", target: noteId, deletedAt: new Date().toISOString(), author: userId }, (e, msg) => e ? reject(e) : resolve(msg)) + }) + }) + }, + + async getNotesForDate(calendarId, dateId) { + const rootId = await this.resolveRootId(calendarId) + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const tombstoned = new Set() + for (const m of messages) { + const c = (m.value || {}).content + if (c && c.type === "tombstone" && c.target) tombstoned.add(c.target) + } + const notes = [] + for (const m of messages) { + const v = m.value || {} + const c = v.content + if (!c || c.type !== "calendarNote") continue + if (tombstoned.has(m.key)) continue + if (c.calendarId !== rootId || c.dateId !== dateId) continue + notes.push({ + key: m.key, + calendarId: c.calendarId, + dateId: c.dateId, + text: c.text || "", + author: c.author || v.author, + createdAt: c.createdAt || new Date(v.timestamp || 0).toISOString() + }) + } + notes.sort((a, b) => new Date(a.createdAt) - new Date(b.createdAt)) + return notes + }, + + async checkDueReminders() { + if (!pmModel) return + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const now = Date.now() + + const sentMarkers = new Set() + for (const m of messages) { + const c = (m.value || {}).content + if (!c || c.type !== "calendarReminderSent") continue + sentMarkers.add(`${c.calendarId}::${c.dateId}`) + } + + const tombstoned = new Set() + for (const m of messages) { + const c = (m.value || {}).content + if (c && c.type === "tombstone" && c.target) tombstoned.add(c.target) + } + + const dueByCalendar = new Map() + for (const m of messages) { + if (tombstoned.has(m.key)) continue + const v = m.value || {} + const c = v.content + if (!c || c.type !== "calendarDate") continue + if (new Date(c.date).getTime() > now) continue + if (sentMarkers.has(`${c.calendarId}::${m.key}`)) continue + const entry = { key: m.key, calendarId: c.calendarId, date: c.date, label: c.label || "" } + const list = dueByCalendar.get(c.calendarId) || [] + list.push(entry) + dueByCalendar.set(c.calendarId, list) + } + + const publishMarker = (calendarId, dateId) => new Promise((resolve, reject) => { + ssbClient.publish({ + type: "calendarReminderSent", + calendarId, + dateId, + sentAt: new Date().toISOString() + }, (err) => err ? reject(err) : resolve()) + }) + + for (const [calendarId, list] of dueByCalendar.entries()) { + try { + list.sort((a, b) => new Date(b.date) - new Date(a.date)) + const primary = list[0] + const cal = await this.getCalendarById(calendarId) + if (!cal) continue + const participants = cal.participants.filter(p => typeof p === "string" && p.length > 0) + if (participants.length > 0) { + const notesForDay = await this.getNotesForDate(calendarId, primary.key) + const notesBlock = notesForDay.length > 0 + ? notesForDay.map(n => ` - ${n.text}`).join("\n\n") + : " (no notes)" + const subject = `Calendar Reminder: ${cal.title}` + const text = + `Reminder from: ${cal.author}\n` + + `Title: ${cal.title}\n` + + `Date: ${primary.label || primary.date}\n\n` + + `Notes for this day:\n\n${notesBlock}\n\n` + + `Visit Calendar: /calendars/${cal.rootId}` + const chunkSize = 6 + for (let i = 0; i < participants.length; i += chunkSize) { + await pmModel.sendMessage(participants.slice(i, i + chunkSize), subject, text) + } + } + for (const dd of list) { + try { await publishMarker(calendarId, dd.key) } catch (_) {} + } + } catch (_) {} + } + } + } +} diff --git a/nodejs-project/nodejs-project/src/models/chats_model.js b/nodejs-project/nodejs-project/src/models/chats_model.js new file mode 100644 index 00000000..fc18d773 --- /dev/null +++ b/nodejs-project/nodejs-project/src/models/chats_model.js @@ -0,0 +1,531 @@ +const pull = require("../server/node_modules/pull-stream") +const crypto = require("crypto") +const { getConfig } = require("../configs/config-manager.js") +const logLimit = getConfig().ssbLogStream?.limit || 1000 + +const safeArr = (v) => (Array.isArray(v) ? v : []) +const safeText = (v) => String(v || "").trim() +const normalizeTags = (raw) => { + if (raw === undefined || raw === null) return [] + if (Array.isArray(raw)) return raw.map(t => String(t || "").trim()).filter(Boolean) + return String(raw).split(",").map(t => t.trim()).filter(Boolean) +} + +const INVITE_CODE_BYTES = 16 +const VALID_STATUS = ["OPEN", "INVITE-ONLY", "CLOSED"] + +module.exports = ({ cooler, tribeCrypto, tribesModel }) => { + let ssb + const openSsb = async () => { if (!ssb) ssb = await cooler.open(); return ssb } + + const getTribeKeysFor = async (tribeId) => { + if (!tribeCrypto || !tribesModel || !tribeId) return [] + try { + const rootId = await tribesModel.getRootId(tribeId) + return tribeCrypto.getKeys(rootId) || [] + } catch (_) { return [] } + } + + const getTribeFirstKeyFor = async (tribeId) => { + const ks = await getTribeKeysFor(tribeId) + return ks.length ? ks[0] : null + } + + const readAll = async (ssbClient) => + new Promise((resolve, reject) => + pull(ssbClient.createLogStream({ limit: logLimit }), pull.collect((err, msgs) => err ? reject(err) : resolve(msgs))) + ) + + const buildIndex = (messages) => { + const tomb = new Set() + const nodes = new Map() + const parent = new Map() + const child = new Map() + const msgNodes = new Map() + + for (const m of messages) { + const k = m.key + const v = m.value || {} + const c = v.content + if (!c) continue + if (c.type === "tombstone" && c.target) { tomb.add(c.target); continue } + if (c.type === "chat") { + nodes.set(k, { key: k, ts: v.timestamp || m.timestamp || 0, c, author: v.author }) + if (c.replaces) { parent.set(k, c.replaces); child.set(c.replaces, k) } + } else if (c.type === "chatMessage") { + msgNodes.set(k, { key: k, ts: v.timestamp || m.timestamp || 0, c, author: v.author }) + } + } + + const rootOf = (id) => { let cur = id; while (parent.has(cur)) cur = parent.get(cur); return cur } + const tipOf = (id) => { let cur = id; while (child.has(cur)) cur = child.get(cur); return cur } + + const roots = new Set() + for (const id of nodes.keys()) roots.add(rootOf(id)) + const tipByRoot = new Map() + for (const r of roots) tipByRoot.set(r, tipOf(r)) + + return { tomb, nodes, parent, child, rootOf, tipOf, tipByRoot, msgNodes } + } + + const resolveKeyChainSets = (chatRootId) => { + if (!tribeCrypto) return [] + const keys = tribeCrypto.getKeys(chatRootId) + return keys.map(k => [k]) + } + + const buildChat = (node, rootId) => { + const rawC = node.c || {} + if (rawC.type !== "chat") return null + + let c = rawC + if (tribeCrypto && c.encryptedPayload) { + const keyChainSets = resolveKeyChainSets(rootId) + c = tribeCrypto.decryptContent(c, keyChainSets) + } + + return { + key: node.key, + rootId, + title: c.title || "", + description: c.description || "", + image: c.image || null, + category: c.category || "", + status: c.status || "OPEN", + tags: safeArr(c.tags), + members: safeArr(c.members), + invites: safeArr(c.invites), + author: c.author || node.author, + createdAt: c.createdAt || new Date(node.ts).toISOString(), + updatedAt: c.updatedAt || null, + encrypted: !!c.encrypted, + tribeId: c.tribeId || null + } + } + + const buildMessage = (node, chatRootId, tribeKeys = []) => { + const c = node.c || {} + if (c.type !== "chatMessage") return null + + let text = c.text || "" + if (tribeCrypto && c.encryptedText) { + const candidateKeys = [...tribeKeys, ...tribeCrypto.getKeys(chatRootId)] + for (const keyHex of candidateKeys) { + try { + text = tribeCrypto.decryptWithKey(c.encryptedText, keyHex) + break + } catch (_) {} + } + } + + return { + key: node.key, + chatId: c.chatId || "", + text, + image: c.image || null, + author: c.author || node.author, + createdAt: c.createdAt || new Date(node.ts).toISOString() + } + } + + const publishTombstone = async (ssbClient, tipId) => + new Promise((resolve, reject) => { + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: ssbClient.id } + ssbClient.publish(tombstone, (e) => e ? reject(e) : resolve()) + }) + + return { + type: "chat", + + async resolveRootId(id) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + let tip = id + while (idx.child.has(tip)) tip = idx.child.get(tip) + if (idx.tomb.has(tip)) throw new Error("Not found") + let root = tip + while (idx.parent.has(root)) root = idx.parent.get(root) + return root + }, + + async resolveCurrentId(id) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + let tip = id + while (idx.child.has(tip)) tip = idx.child.get(tip) + if (idx.tomb.has(tip)) throw new Error("Not found") + return tip + }, + + async createChat(title, description, image, category, status, tagsRaw, tribeId) { + const ssbClient = await openSsb() + const userId = ssbClient.id + const blobId = image ? String(image).trim() || null : null + const tags = normalizeTags(tagsRaw) + const st = VALID_STATUS.includes(String(status).toUpperCase()) ? String(status).toUpperCase() : "OPEN" + const now = new Date().toISOString() + + let content = { + type: "chat", + title: safeText(title), + description: safeText(description), + image: blobId, + category: safeText(category), + status: st, + tags, + members: [userId], + invites: [], + author: userId, + createdAt: now, + updatedAt: now, + ...(tribeId ? { tribeId } : {}) + } + + if (tribeCrypto && !tribeId) { + const chatKey = tribeCrypto.generateTribeKey() + const result = await new Promise((resolve, reject) => { + ssbClient.publish(content, (err, msg) => err ? reject(err) : resolve(msg)) + }) + tribeCrypto.setKey(result.key, chatKey, 1) + return result + } + + return new Promise((resolve, reject) => { + ssbClient.publish(content, (err, msg) => err ? reject(err) : resolve(msg)) + }) + }, + + async updateChatById(id, data, { skipAuthorCheck = false } = {}) { + const tipId = await this.resolveCurrentId(id) + const ssbClient = await openSsb() + const userId = ssbClient.id + + return new Promise((resolve, reject) => { + ssbClient.get(tipId, (err, item) => { + if (err || !item?.content) return reject(new Error("Chat not found")) + const c = item.content + + const rawAuthor = c.author || (c.encryptedPayload ? null : undefined) + if (!skipAuthorCheck && rawAuthor && rawAuthor !== userId) return reject(new Error("Not the author")) + + const rootId = tipId + const messages = [] + const node = { key: tipId, c, author: item.author, ts: item.timestamp || 0 } + const chat = buildChat(node, rootId) + if (!chat) return reject(new Error("Invalid chat")) + + const updated = { + type: "chat", + replaces: tipId, + title: data.title !== undefined ? safeText(data.title) : chat.title, + description: data.description !== undefined ? safeText(data.description) : chat.description, + image: data.image !== undefined ? (data.image ? String(data.image).trim() || null : chat.image) : chat.image, + category: data.category !== undefined ? safeText(data.category) : chat.category, + status: data.status !== undefined ? (VALID_STATUS.includes(String(data.status).toUpperCase()) ? String(data.status).toUpperCase() : chat.status) : chat.status, + tags: data.tags !== undefined ? normalizeTags(data.tags) : chat.tags, + members: data.members !== undefined ? safeArr(data.members) : chat.members, + invites: data.invites !== undefined ? safeArr(data.invites) : chat.invites, + author: chat.author, + createdAt: chat.createdAt, + updatedAt: new Date().toISOString() + } + + ssbClient.publish({ type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId }, (e1) => { + if (e1) return reject(e1) + ssbClient.publish(updated, (e2, res) => e2 ? reject(e2) : resolve(res)) + }) + }) + }) + }, + + async deleteChatById(id) { + const tipId = await this.resolveCurrentId(id) + const ssbClient = await openSsb() + const userId = ssbClient.id + + return new Promise((resolve, reject) => { + ssbClient.get(tipId, (err, item) => { + if (err || !item?.content) return reject(new Error("Chat not found")) + if (item.content.author && item.content.author !== userId) return reject(new Error("Not the author")) + ssbClient.publish({ type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId }, (e) => e ? reject(e) : resolve()) + }) + }) + }, + + async closeChatById(id) { + const ssbClient = await openSsb() + const userId = ssbClient.id + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + let tip = id + while (idx.child.has(tip)) tip = idx.child.get(tip) + if (idx.tomb.has(tip)) throw new Error("Not found") + let root = tip + while (idx.parent.has(root)) root = idx.parent.get(root) + + const node = idx.nodes.get(tip) + if (!node) throw new Error("Not found") + const chat = buildChat(node, root) + if (!chat) throw new Error("Invalid chat") + if (chat.author !== userId) throw new Error("Not the author") + + const updated = { + type: "chat", + replaces: tip, + title: chat.title, + description: chat.description, + image: chat.image, + category: chat.category, + status: "CLOSED", + tags: chat.tags, + members: chat.members, + invites: chat.invites, + author: chat.author, + createdAt: chat.createdAt, + updatedAt: new Date().toISOString() + } + + await publishTombstone(ssbClient, tip) + return new Promise((resolve, reject) => { + ssbClient.publish(updated, (e, res) => e ? reject(e) : resolve(res)) + }) + }, + + async getChatById(id) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + + let tip = id + while (idx.child.has(tip)) tip = idx.child.get(tip) + if (idx.tomb.has(tip)) return null + + const node = idx.nodes.get(tip) + if (!node || node.c.type !== "chat") return null + + let root = tip + while (idx.parent.has(root)) root = idx.parent.get(root) + + const chat = buildChat(node, root) + if (!chat) return null + return chat + }, + + async listAll({ filter = "all", q = "", sort = "recent", viewerId } = {}) { + const ssbClient = await openSsb() + const uid = viewerId || ssbClient.id + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + const now = Date.now() + + const items = [] + for (const [rootId, tipId] of idx.tipByRoot.entries()) { + if (idx.tomb.has(tipId)) continue + const node = idx.nodes.get(tipId) + if (!node || node.c.type !== "chat") continue + const chat = buildChat(node, rootId) + if (!chat) continue + items.push(chat) + } + + let list = items + + if (filter === "mine") list = list.filter(c => c.author === uid) + else if (filter === "recent") list = list.filter(c => new Date(c.createdAt).getTime() >= now - 86400000) + else if (filter === "open") list = list.filter(c => c.status === "OPEN" || c.status === "INVITE-ONLY") + else if (filter === "closed") list = list.filter(c => c.status === "CLOSED") + + if (q) { + const qq = q.toLowerCase() + list = list.filter(c => { + const t = String(c.title || "").toLowerCase() + const d = String(c.description || "").toLowerCase() + const cat = String(c.category || "").toLowerCase() + const tags = safeArr(c.tags).join(" ").toLowerCase() + return t.includes(qq) || d.includes(qq) || cat.includes(qq) || tags.includes(qq) + }) + } + + list = list.slice().sort((a, b) => new Date(b.createdAt) - new Date(a.createdAt)) + return list + }, + + async generateInvite(chatId) { + const ssbClient = await openSsb() + const userId = ssbClient.id + const chat = await this.getChatById(chatId) + if (!chat) throw new Error("Chat not found") + if (chat.author !== userId) throw new Error("Only the author can generate invites") + + const code = crypto.randomBytes(INVITE_CODE_BYTES).toString("hex") + let invite = code + + if (tribeCrypto) { + const chatKey = tribeCrypto.getKey(chat.rootId) + if (chatKey) { + const ek = tribeCrypto.encryptForInvite(chatKey, code) + invite = { code, ek, gen: tribeCrypto.getGen(chat.rootId) } + } + } + + const invites = [...chat.invites, invite] + await this.updateChatById(chatId, { invites, members: chat.members, status: chat.status, title: chat.title, description: chat.description, image: chat.image, category: chat.category, tags: chat.tags }) + return code + }, + + async joinByInvite(code) { + const ssbClient = await openSsb() + const userId = ssbClient.id + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + + let matchedChat = null + let matchedInvite = null + + for (const [rootId, tipId] of idx.tipByRoot.entries()) { + if (idx.tomb.has(tipId)) continue + const node = idx.nodes.get(tipId) + if (!node || node.c.type !== "chat") continue + const chat = buildChat(node, rootId) + if (!chat || !chat.invites.length) continue + + for (const inv of chat.invites) { + if (typeof inv === "string" && inv === code) { + matchedChat = chat; matchedInvite = inv; break + } + if (typeof inv === "object" && inv.code === code) { + matchedChat = chat; matchedInvite = inv; break + } + } + if (matchedChat) break + } + + if (!matchedChat) throw new Error("Invalid or expired invite code") + if (matchedChat.members.includes(userId)) throw new Error("Already a participant") + + if (tribeCrypto && typeof matchedInvite === "object" && matchedInvite.ek) { + const chatKey = tribeCrypto.decryptFromInvite(matchedInvite.ek, code) + tribeCrypto.setKey(matchedChat.rootId, chatKey, matchedInvite.gen || 1) + } + + const members = [...matchedChat.members, userId] + const invites = matchedChat.invites.filter(inv => { + if (typeof inv === "string") return inv !== code + return inv.code !== code + }) + + await this.updateChatById(matchedChat.key, { members, invites, status: matchedChat.status, title: matchedChat.title, description: matchedChat.description, image: matchedChat.image, category: matchedChat.category, tags: matchedChat.tags }, { skipAuthorCheck: true }) + return matchedChat.key + }, + + async joinChat(chatId) { + const ssbClient = await openSsb() + const userId = ssbClient.id + const chat = await this.getChatById(chatId) + if (!chat) throw new Error("Chat not found") + if (chat.status === "CLOSED") throw new Error("Chat is closed") + if (chat.members.includes(userId)) return chat.key + + const members = [...chat.members, userId] + + if (tribeCrypto) { + const chatKey = tribeCrypto.getKey(chat.rootId) + if (chatKey && ssbClient.keys) { + try { + tribeCrypto.boxKeyForMember(chatKey, userId, ssbClient.keys) + } catch (_) {} + } + } + + await this.updateChatById(chatId, { members, invites: chat.invites, status: chat.status, title: chat.title, description: chat.description, image: chat.image, category: chat.category, tags: chat.tags }, { skipAuthorCheck: true }) + return chat.key + }, + + async leaveChat(chatId) { + const ssbClient = await openSsb() + const userId = ssbClient.id + const chat = await this.getChatById(chatId) + if (!chat) throw new Error("Chat not found") + if (chat.author === userId) throw new Error("Author cannot leave their own chat") + const members = chat.members.filter(m => m !== userId) + await this.updateChatById(chatId, { members, invites: chat.invites, status: chat.status, title: chat.title, description: chat.description, image: chat.image, category: chat.category, tags: chat.tags }, { skipAuthorCheck: true }) + }, + + async sendMessage(chatId, text, image = null) { + const ssbClient = await openSsb() + const userId = ssbClient.id + const chat = await this.getChatById(chatId) + if (!chat) throw new Error("Chat not found") + if (chat.status === "CLOSED") throw new Error("Chat is closed") + if (!chat.members.includes(userId)) { + if (chat.status === "OPEN") await this.joinChat(chatId) + else throw new Error("Not a participant") + } + + const messages = await readAll(ssbClient) + const oneHourAgo = Date.now() - 60 * 60 * 1000 + const recentCount = messages.filter(m => { + const c = m.value?.content + return c?.type === "chatMessage" && c?.chatId === chat.rootId && m.value?.author === userId && (m.value?.timestamp || 0) >= oneHourAgo + }).length + if (recentCount >= 3) throw new Error("Rate limit: max 3 messages per hour") + + const now = new Date().toISOString() + let content = { + type: "chatMessage", + chatId: chat.rootId, + author: userId, + createdAt: now + } + if (image) content.image = image + + if (tribeCrypto) { + let encKey = null + if (chat.tribeId) encKey = await getTribeFirstKeyFor(chat.tribeId) + if (!encKey) encKey = tribeCrypto.getKey(chat.rootId) + if (encKey) { + content.encryptedText = tribeCrypto.encryptWithKey(safeText(text), encKey) + if (chat.tribeId) content.tribeId = chat.tribeId + } else { + content.text = safeText(text) + } + } else { + content.text = safeText(text) + } + + return new Promise((resolve, reject) => { + ssbClient.publish(content, (err, msg) => err ? reject(err) : resolve(msg)) + }) + }, + + async listMessages(chatRootId) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + + let tribeId = null + const tipId = idx.tipByRoot.get(chatRootId) || chatRootId + const chatNode = idx.nodes.get(tipId) || idx.nodes.get(chatRootId) + if (chatNode?.c?.tribeId) tribeId = chatNode.c.tribeId + const tribeKeys = tribeId ? await getTribeKeysFor(tribeId) : [] + + const result = [] + for (const [k, node] of idx.msgNodes.entries()) { + if (node.c.chatId !== chatRootId) continue + const msg = buildMessage(node, chatRootId, tribeKeys) + if (msg) result.push(msg) + } + + result.sort((a, b) => new Date(a.createdAt) - new Date(b.createdAt)) + return result + }, + + async getParticipants(chatRootId) { + const chat = await this.getChatById(chatRootId) + if (!chat) return [] + return chat.members + } + } +} diff --git a/nodejs-project/nodejs-project/src/models/courts_model.js b/nodejs-project/nodejs-project/src/models/courts_model.js index ce9851b3..8868cd2b 100644 --- a/nodejs-project/nodejs-project/src/models/courts_model.js +++ b/nodejs-project/nodejs-project/src/models/courts_model.js @@ -9,7 +9,13 @@ const CASE_DECISION_DAYS = 21; const POPULAR_DAYS = 14; const FEED_ID_RE = /^@.+\.ed25519$/; -module.exports = ({ cooler, services = {} }) => { +const CASE_FIELDS = ['title', 'accuser', 'respondentId', 'mediatorsAccuser', 'mediatorsRespondent']; +const EVIDENCE_FIELDS = ['text', 'link', 'imageUrl']; +const ANSWER_FIELDS = ['stance', 'text']; +const VERDICT_FIELDS = ['result', 'orders']; +const SETTLEMENT_FIELDS = ['terms']; + +module.exports = ({ cooler, services = {}, tribeCrypto }) => { let ssb; let userId; @@ -24,6 +30,45 @@ module.exports = ({ cooler, services = {} }) => { const nowISO = () => new Date().toISOString(); const ensureArray = (x) => (Array.isArray(x) ? x : x ? [x] : []); + const encryptFields = (content, keyHex, fields) => { + const payload = {}; + for (const f of fields) { + if (content[f] !== undefined) payload[f] = content[f]; + } + const enc = tribeCrypto.encryptWithKey(JSON.stringify(payload), keyHex); + const result = { ...content }; + for (const f of fields) delete result[f]; + result.encryptedPayload = enc; + return result; + }; + + const decryptFields = (content, keyHex) => { + if (!content || !content.encryptedPayload) return content; + try { + const plain = tribeCrypto.decryptWithKey(content.encryptedPayload, keyHex); + const payload = JSON.parse(plain); + const result = { ...content }; + delete result.encryptedPayload; + return { ...result, ...payload }; + } catch (e) { + return { ...content, encrypted: true }; + } + }; + + const getCaseKey = (obj) => { + if (!tribeCrypto || !obj) return null; + return tribeCrypto.getKey(obj.rootCaseId || obj.id); + }; + + const distributeKey = async (caseKey, caseRootId, recipientId) => { + if (!tribeCrypto || !recipientId) return; + const ssbClient = await openSsb(); + const ssbKeys = require('../server/node_modules/ssb-keys'); + const boxed = tribeCrypto.boxKeyForMember(caseKey, recipientId, ssbKeys); + const content = { type: 'courts-key', caseRootId, for: recipientId, memberKey: boxed }; + await new Promise((res, rej) => ssbClient.publish(content, (e) => e ? rej(e) : res())); + }; + async function readLog() { const ssbClient = await openSsb(); return new Promise((resolve, reject) => { @@ -119,14 +164,36 @@ module.exports = ({ cooler, services = {} }) => { mediatorsRespondent: [], createdAt: openedAt }; - return await new Promise((resolve, reject) => + + if (tribeCrypto) { + const initialMsg = await new Promise((res, rej) => + ssbClient.publish(content, (err, msg) => (err ? rej(err) : res(msg))) + ); + const caseRootId = initialMsg.key; + const caseKey = tribeCrypto.generateTribeKey(); + tribeCrypto.setKey(caseRootId, caseKey, 1); + const encrypted = encryptFields({ ...content, rootCaseId: caseRootId }, caseKey, CASE_FIELDS); + const update = { ...encrypted, replaces: caseRootId, updatedAt: openedAt }; + const finalMsg = await new Promise((res, rej) => + ssbClient.publish(update, (err, msg) => (err ? rej(err) : res(msg))) + ); + await distributeKey(caseKey, caseRootId, resp.id); + return finalMsg; + } + + return new Promise((resolve, reject) => ssbClient.publish(content, (err, msg) => (err ? reject(err) : resolve(msg))) ); } async function listCases(filter = 'open') { const all = await listByType('courtsCase'); - const sorted = all.sort((a, b) => { + const decrypted = all.map(c => { + if (!tribeCrypto) return c; + const key = getCaseKey(c); + return key ? decryptFields(c, key) : c; + }); + const sorted = decrypted.sort((a, b) => { const ta = new Date(a.openedAt || a.createdAt || 0).getTime(); const tb = new Date(b.openedAt || b.createdAt || 0).getTime(); return tb - ta; @@ -150,7 +217,8 @@ module.exports = ({ cooler, services = {} }) => { const all = await listByType('courtsCase'); const id = String(uid || userId || ''); const rows = []; - for (const c of all) { + for (const raw of all) { + const c = tribeCrypto ? (getCaseKey(raw) ? decryptFields(raw, getCaseKey(raw)) : raw) : raw; const isAccuser = String(c.accuser || '') === id; const isRespondent = String(c.respondentId || '') === id; const ma = ensureArray(c.mediatorsAccuser || []); @@ -190,19 +258,24 @@ module.exports = ({ cooler, services = {} }) => { const id = String(caseId || '').trim(); if (!id) return null; const all = await listByType('courtsCase'); - return all.find((c) => c.id === id) || null; + const found = all.find((c) => c.id === id) || null; + if (!found || !tribeCrypto) return found; + const caseKey = getCaseKey(found); + if (!caseKey) return found; + return decryptFields(found, caseKey); } async function upsertCase(obj) { const ssbClient = await openSsb(); const { id, ...rest } = obj; - const updated = { - ...rest, - type: 'courtsCase', - replaces: id, - updatedAt: nowISO() - }; - return await new Promise((resolve, reject) => + let updated = { ...rest, type: 'courtsCase', replaces: id, updatedAt: nowISO() }; + if (tribeCrypto) { + const caseKey = getCaseKey(updated); + if (caseKey) { + updated = encryptFields(updated, caseKey, CASE_FIELDS); + } + } + return new Promise((resolve, reject) => ssbClient.publish(updated, (err, msg) => (err ? reject(err) : resolve(msg))) ); } @@ -237,6 +310,17 @@ module.exports = ({ cooler, services = {} }) => { const clean = list.filter((id) => id !== c.accuser && id !== c.respondentId); if (side === 'accuser') c.mediatorsAccuser = clean; else c.mediatorsRespondent = clean; + + if (tribeCrypto) { + const caseKey = getCaseKey(c); + if (caseKey) { + const caseRootId = c.rootCaseId || c.id; + for (const mediatorId of clean) { + await distributeKey(caseKey, caseRootId, mediatorId); + } + } + } + await upsertCase(c); return c; } @@ -255,6 +339,14 @@ module.exports = ({ cooler, services = {} }) => { throw new Error('Judge cannot be a party of the case.'); } c.judgeId = id; + + if (tribeCrypto) { + const caseKey = getCaseKey(c); + if (caseKey) { + await distributeKey(caseKey, c.rootCaseId || c.id, id); + } + } + await upsertCase(c); return c; } @@ -273,9 +365,9 @@ module.exports = ({ cooler, services = {} }) => { } if (!t && !l && !imageUrl) throw new Error('Text, link or image is required.'); const ssbClient = await openSsb(); - const content = { + let content = { type: 'courtsEvidence', - caseId: c.id, + caseId: c.rootCaseId || c.id, author: userId, role, text: t, @@ -283,7 +375,11 @@ module.exports = ({ cooler, services = {} }) => { imageUrl, createdAt: nowISO() }; - return await new Promise((resolve, reject) => + if (tribeCrypto) { + const caseKey = getCaseKey(c); + if (caseKey) content = encryptFields(content, caseKey, EVIDENCE_FIELDS); + } + return new Promise((resolve, reject) => ssbClient.publish(content, (err, msg) => (err ? reject(err) : resolve(msg))) ); } @@ -298,14 +394,18 @@ module.exports = ({ cooler, services = {} }) => { const t = String(text || '').trim(); if (!t) throw new Error('Response text is required.'); const ssbClient = await openSsb(); - const content = { + let content = { type: 'courtsAnswer', - caseId: c.id, + caseId: c.rootCaseId || c.id, respondent: userId, stance: s, text: t, createdAt: nowISO() }; + if (tribeCrypto) { + const caseKey = getCaseKey(c); + if (caseKey) content = encryptFields(content, caseKey, ANSWER_FIELDS); + } await new Promise((resolve, reject) => ssbClient.publish(content, (err, msg) => (err ? reject(err) : resolve(msg))) ); @@ -328,14 +428,18 @@ module.exports = ({ cooler, services = {} }) => { if (!r) throw new Error('Result is required.'); const o = String(orders || '').trim(); const ssbClient = await openSsb(); - const content = { + let content = { type: 'courtsVerdict', - caseId: c.id, + caseId: c.rootCaseId || c.id, judgeId: userId, result: r, orders: o, createdAt: nowISO() }; + if (tribeCrypto) { + const caseKey = getCaseKey(c); + if (caseKey) content = encryptFields(content, caseKey, VERDICT_FIELDS); + } await new Promise((resolve, reject) => ssbClient.publish(content, (err, msg) => (err ? reject(err) : resolve(msg))) ); @@ -354,14 +458,18 @@ module.exports = ({ cooler, services = {} }) => { const t = String(terms || '').trim(); if (!t) throw new Error('Terms are required.'); const ssbClient = await openSsb(); - const content = { + let content = { type: 'courtsSettlementProposal', - caseId: c.id, + caseId: c.rootCaseId || c.id, proposer: userId, terms: t, createdAt: nowISO() }; - return await new Promise((resolve, reject) => + if (tribeCrypto) { + const caseKey = getCaseKey(c); + if (caseKey) content = encryptFields(content, caseKey, SETTLEMENT_FIELDS); + } + return new Promise((resolve, reject) => ssbClient.publish(content, (err, msg) => (err ? reject(err) : resolve(msg))) ); } @@ -374,7 +482,7 @@ module.exports = ({ cooler, services = {} }) => { const ssbClient = await openSsb(); const content = { type: 'courtsSettlementAccepted', - caseId: c.id, + caseId: c.rootCaseId || c.id, by: userId, createdAt: nowISO() }; @@ -462,7 +570,7 @@ module.exports = ({ cooler, services = {} }) => { judgeId: id, createdAt: nowISO() }; - return await new Promise((resolve, reject) => + return new Promise((resolve, reject) => ssbClient.publish(content, (err, msg) => (err ? reject(err) : resolve(msg))) ); } @@ -490,7 +598,7 @@ module.exports = ({ cooler, services = {} }) => { voter: userId, createdAt: nowISO() }; - return await new Promise((resolve, reject) => + return new Promise((resolve, reject) => ssbClient.publish(content, (err, msg) => (err ? reject(err) : resolve(msg))) ); } @@ -550,26 +658,45 @@ module.exports = ({ cooler, services = {} }) => { myPublicPreference = base.publicPrefRespondent; } const publicDetails = base.publicPrefAccuser === true && base.publicPrefRespondent === true; + + const caseKey = getCaseKey(base); + const caseRootId = base.rootCaseId || base.id; + + const matchCase = (e) => { + const eCaseId = String(e.caseId || ''); + return eCaseId === id || eCaseId === caseRootId; + }; + + const tryDecrypt = (item) => { + if (!caseKey) return item; + return decryptFields(item, caseKey); + }; + const evidencesAll = await listByType('courtsEvidence'); const answersAll = await listByType('courtsAnswer'); const settlementsAll = await listByType('courtsSettlementProposal'); const verdictsAll = await listByType('courtsVerdict'); const acceptedAll = await listByType('courtsSettlementAccepted'); + const evidences = evidencesAll - .filter((e) => String(e.caseId || '') === id) + .filter(matchCase) + .map(tryDecrypt) .sort((a, b) => new Date(a.createdAt || 0) - new Date(b.createdAt || 0)); const answers = answersAll - .filter((a) => String(a.caseId || '') === id) + .filter(matchCase) + .map(tryDecrypt) .sort((a, b) => new Date(a.createdAt || 0) - new Date(b.createdAt || 0)); const settlements = settlementsAll - .filter((s) => String(s.caseId || '') === id) + .filter(matchCase) + .map(tryDecrypt) .sort((a, b) => new Date(a.createdAt || 0) - new Date(b.createdAt || 0)); const verdicts = verdictsAll - .filter((v) => String(v.caseId || '') === id) + .filter(matchCase) + .map(tryDecrypt) .sort((a, b) => new Date(a.createdAt || 0) - new Date(b.createdAt || 0)); const verdict = verdicts.length ? verdicts[verdicts.length - 1] : null; const acceptedSettlements = acceptedAll - .filter((s) => String(s.caseId || '') === id) + .filter(matchCase) .sort((a, b) => new Date(a.createdAt || 0) - new Date(b.createdAt || 0)); const decidedAt = base.verdictAt || @@ -601,6 +728,30 @@ module.exports = ({ cooler, services = {} }) => { }; } + async function processIncomingCourtsKeys() { + if (!tribeCrypto) return; + const ssbKeys = require('../server/node_modules/ssb-keys'); + const ssbConfig = require('../server/ssb_config'); + const ssbClient = await openSsb(); + const msgs = await new Promise((res, rej) => { + pull( + ssbClient.createLogStream({ limit: logLimit }), + pull.collect((err, arr) => (err ? rej(err) : res(arr))) + ); + }); + for (const m of msgs) { + const c = m.value?.content; + if (!c || c.type !== 'courts-key') continue; + if (c.for !== ssbClient.id) continue; + if (!c.memberKey || !c.caseRootId) continue; + if (tribeCrypto.getKey(c.caseRootId)) continue; + try { + const key = tribeCrypto.unboxKeyFromMember(c.memberKey, ssbConfig.keys, ssbKeys); + if (key) tribeCrypto.setKey(c.caseRootId, key, 1); + } catch (e) {} + } + } + return { getCurrentUserId, openCase, @@ -619,7 +770,7 @@ module.exports = ({ cooler, services = {} }) => { nominateJudge, voteNomination, listNominations, - getCaseDetails + getCaseDetails, + processIncomingCourtsKeys }; }; - diff --git a/nodejs-project/nodejs-project/src/models/events_model.js b/nodejs-project/nodejs-project/src/models/events_model.js index 6c9a747c..965df25d 100644 --- a/nodejs-project/nodejs-project/src/models/events_model.js +++ b/nodejs-project/nodejs-project/src/models/events_model.js @@ -40,7 +40,7 @@ module.exports = ({ cooler }) => { return { type: 'event', - async createEvent(title, description, date, location, price = 0, url = "", attendees = [], tagsRaw = [], isPublic) { + async createEvent(title, description, date, location, price = 0, url = "", attendees = [], tagsRaw = [], isPublic, mapUrl = "") { const ssbClient = await openSsb(); const formattedDate = normalizeDate(date); @@ -67,7 +67,8 @@ module.exports = ({ cooler }) => { createdAt: new Date().toISOString(), organizer: userId, status: 'OPEN', - isPublic: normalizePrivacy(isPublic) + isPublic: normalizePrivacy(isPublic), + mapUrl: String(mapUrl || "").trim() }; return new Promise((resolve, reject) => { @@ -131,7 +132,8 @@ module.exports = ({ cooler }) => { updatedAt: c.updatedAt || new Date().toISOString(), organizer: c.organizer || '', status, - isPublic: normalizePrivacy(c.isPublic) + isPublic: normalizePrivacy(c.isPublic), + mapUrl: c.mapUrl || "" }; }, @@ -216,7 +218,8 @@ module.exports = ({ cooler }) => { createdAt: c.createdAt || new Date().toISOString(), organizer: c.organizer || '', status, - isPublic: normalizePrivacy(c.isPublic) + isPublic: normalizePrivacy(c.isPublic), + mapUrl: c.mapUrl || "" }); } } diff --git a/nodejs-project/nodejs-project/src/models/favorites_model.js b/nodejs-project/nodejs-project/src/models/favorites_model.js index cdcd5fd5..eb6a4855 100644 --- a/nodejs-project/nodejs-project/src/models/favorites_model.js +++ b/nodejs-project/nodejs-project/src/models/favorites_model.js @@ -15,7 +15,7 @@ const toTs = (d) => { return Number.isFinite(t) ? t : 0; }; -module.exports = ({ audiosModel, bookmarksModel, documentsModel, imagesModel, videosModel }) => { +module.exports = ({ audiosModel, bookmarksModel, documentsModel, imagesModel, videosModel, mapsModel, padsModel, chatsModel, calendarsModel, torrentsModel }) => { const kindConfig = { audios: { base: "/audios/", @@ -33,13 +33,33 @@ module.exports = ({ audiosModel, bookmarksModel, documentsModel, imagesModel, vi base: "/images/", getById: getFn(imagesModel, ["getImageById", "getById"]) }, + maps: { + base: "/maps/", + getById: getFn(mapsModel, ["getMapById", "getById"]) + }, videos: { base: "/videos/", getById: getFn(videosModel, ["getVideoById", "getById"]) + }, + pads: { + base: "/pads/", + getById: getFn(padsModel, ["getPadById", "getById"]) + }, + chats: { + base: "/chats/", + getById: getFn(chatsModel, ["getChatById", "getById"]) + }, + calendars: { + base: "/calendars/", + getById: getFn(calendarsModel, ["getCalendarById", "getById"]) + }, + torrents: { + base: "/torrents/", + getById: getFn(torrentsModel, ["getTorrentById", "getById"]) } }; - const kindOrder = ["audios", "bookmarks", "documents", "images", "videos"]; + const kindOrder = ["audios", "bookmarks", "calendars", "chats", "documents", "images", "maps", "pads", "torrents", "videos"]; const hydrateKind = async (kind, ids) => { const cfg = kindConfig[kind]; @@ -93,8 +113,13 @@ module.exports = ({ audiosModel, bookmarksModel, documentsModel, imagesModel, vi const counts = { audios: byKind.audios.length, bookmarks: byKind.bookmarks.length, + calendars: byKind.calendars.length, + chats: byKind.chats.length, documents: byKind.documents.length, images: byKind.images.length, + maps: byKind.maps.length, + pads: byKind.pads.length, + torrents: byKind.torrents.length, videos: byKind.videos.length, all: flat.length }; diff --git a/nodejs-project/nodejs-project/src/models/feed_model.js b/nodejs-project/nodejs-project/src/models/feed_model.js index 08670f7b..80698784 100644 --- a/nodejs-project/nodejs-project/src/models/feed_model.js +++ b/nodejs-project/nodejs-project/src/models/feed_model.js @@ -255,6 +255,8 @@ module.exports = ({ cooler }) => { const opinionsInhabitants = new Set(Array.isArray(content.opinions_inhabitants) ? content.opinions_inhabitants : []); + let commentCount = 0; + const actions = idx.actionsByRoot.get(root) || []; for (const a of actions) { const ac = a?.value?.content || {}; @@ -277,12 +279,18 @@ module.exports = ({ cooler }) => { } continue; } + + if (ac.action === "comment") { + commentCount++; + continue; + } } content.refeeds = refeeds; content.refeeds_inhabitants = Array.from(refeedsInhabitants); content.opinions = opinionsCounts; content.opinions_inhabitants = Array.from(opinionsInhabitants); + content.commentCount = commentCount; if (!Array.isArray(content.tags)) content.tags = extractTags(content.text); @@ -314,7 +322,6 @@ module.exports = ({ cooler }) => { if (filter === "TOP") { feeds.sort( (a, b) => - totalVotes(b) - totalVotes(a) || (b.value?.content?.refeeds || 0) - (a.value?.content?.refeeds || 0) || getTs(b) - getTs(a) ); @@ -325,6 +332,57 @@ module.exports = ({ cooler }) => { return feeds; }; - return { createFeed, createRefeed, addOpinion, listFeeds, resolveCurrentId }; + const getFeedById = async (feedId) => { + const ssbClient = await openSsb(); + const idx = await buildIndex(ssbClient); + const currentId = idx.resolve(feedId); + if (idx.tombstoned.has(currentId)) return null; + const msg = idx.feedsById.get(currentId); + if (!msg) return null; + const actions = idx.actionsByRoot.get(currentId) || []; + const content = msg.value?.content || {}; + const opinions = {}; + const opinionsInhabitants = []; + const refeedsInhabitants = []; + let refeeds = 0; + let commentCount = 0; + for (const a of actions) { + const ac = a?.value?.content || {}; + if (ac.type === "feed-action" && ac.action === "vote" && ac.category) { + opinions[ac.category] = (opinions[ac.category] || 0) + 1; + if (ac.author || a?.value?.author) opinionsInhabitants.push(ac.author || a.value.author); + } + if (ac.type === "feed-action" && ac.action === "refeed") { + refeeds++; + if (ac.author || a?.value?.author) refeedsInhabitants.push(ac.author || a.value.author); + } + if (ac.type === "feed-action" && ac.action === "comment") { + commentCount++; + } + } + const merged = { ...content, opinions, opinions_inhabitants: opinionsInhabitants, refeeds_inhabitants: refeedsInhabitants, refeeds, commentCount }; + return { key: currentId, value: { ...msg.value, content: merged } }; + }; + + const getComments = async (feedId) => { + const ssbClient = await openSsb(); + const idx = await buildIndex(ssbClient); + const currentId = idx.resolve(feedId); + const actions = idx.actionsByRoot.get(currentId) || []; + return actions + .filter(a => a?.value?.content?.type === "feed-action" && a?.value?.content?.action === "comment") + .sort((a, b) => (a?.value?.timestamp || 0) - (b?.value?.timestamp || 0)); + }; + + const addComment = async (feedId, text) => { + const ssbClient = await openSsb(); + const idx = await buildIndex(ssbClient); + const currentId = idx.resolve(feedId); + await new Promise((resolve, reject) => { + ssbClient.publish({ type: "feed-action", action: "comment", root: currentId, text: cleanText(text) }, (err) => (err ? reject(err) : resolve())); + }); + }; + + return { createFeed, createRefeed, addOpinion, listFeeds, resolveCurrentId, getFeedById, getComments, addComment }; }; diff --git a/nodejs-project/nodejs-project/src/models/games_model.js b/nodejs-project/nodejs-project/src/models/games_model.js new file mode 100644 index 00000000..c1482265 --- /dev/null +++ b/nodejs-project/nodejs-project/src/models/games_model.js @@ -0,0 +1,67 @@ +const pull = require('../server/node_modules/pull-stream'); +const { getConfig } = require('../configs/config-manager.js'); +const logLimit = getConfig().ssbLogStream?.limit || 5000; + +const VALID_GAMES = new Set([ + 'cocoland', 'ecoinflow', 'neoninfiltrator', 'spaceinvaders', 'arkanoid', 'pingpong', + 'asteroids', 'tiktaktoe', 'flipflop', + '8ball', 'artillery', 'labyrinth', 'cocoman', 'tetris' +]); + +module.exports = ({ cooler }) => { + let ssb; + const openSsb = async () => { + if (!ssb) ssb = await cooler.open(); + return ssb; + }; + + async function readAll(ssbClient) { + return new Promise((resolve, reject) => { + pull( + ssbClient.createLogStream({ limit: logLimit }), + pull.collect((err, results) => (err ? reject(err) : resolve(results))) + ); + }); + } + + return { + async submitScore(game, score) { + if (!VALID_GAMES.has(game)) throw new Error('invalid game'); + const n = Number(score); + if (!Number.isFinite(n) || n < 0 || n > 9999999) throw new Error('invalid score'); + const ssbClient = await openSsb(); + return new Promise((resolve, reject) => { + ssbClient.publish({ type: 'gameScore', game, score: Math.round(n) }, (err, msg) => { + if (err) reject(err); else resolve(msg); + }); + }); + }, + + async getHallOfFame() { + const ssbClient = await openSsb(); + const messages = await readAll(ssbClient); + const best = {}; + for (const m of messages) { + const c = m.value && m.value.content; + if (!c || c.type !== 'gameScore') continue; + if (!VALID_GAMES.has(c.game)) continue; + const author = m.value.author; + const score = Number(c.score); + if (!Number.isFinite(score) || score < 0) continue; + const key = `${c.game}:${author}`; + if (!best[key] || score > best[key].score) { + best[key] = { author, score, game: c.game, ts: m.value.timestamp || 0 }; + } + } + const hall = {}; + for (const game of VALID_GAMES) hall[game] = []; + for (const entry of Object.values(best)) { + if (hall[entry.game]) hall[entry.game].push(entry); + } + for (const game of VALID_GAMES) { + hall[game] = hall[game].sort((a, b) => b.score - a.score).slice(0, 10); + } + return hall; + } + }; +}; diff --git a/nodejs-project/nodejs-project/src/models/images_model.js b/nodejs-project/nodejs-project/src/models/images_model.js index a87929bb..f6deead1 100644 --- a/nodejs-project/nodejs-project/src/models/images_model.js +++ b/nodejs-project/nodejs-project/src/models/images_model.js @@ -107,6 +107,7 @@ module.exports = ({ cooler }) => { author: c.author, title: c.title || "", description: c.description || "", + mapUrl: c.mapUrl || "", meme: !!c.meme, opinions: c.opinions || {}, opinions_inhabitants: voters, @@ -142,7 +143,7 @@ module.exports = ({ cooler }) => { return root; }, - async createImage(blobMarkdown, tagsRaw, title, description, memeBool) { + async createImage(blobMarkdown, tagsRaw, title, description, memeBool, mapUrl) { const ssbClient = await openSsb(); const blobId = parseBlobId(blobMarkdown); const tags = normalizeTags(tagsRaw) || []; @@ -157,6 +158,7 @@ module.exports = ({ cooler }) => { tags, title: title || "", description: description || "", + mapUrl: mapUrl || "", meme: !!memeBool, opinions: {}, opinions_inhabitants: [] @@ -167,7 +169,7 @@ module.exports = ({ cooler }) => { }); }, - async updateImageById(id, blobMarkdown, tagsRaw, title, description, memeBool) { + async updateImageById(id, blobMarkdown, tagsRaw, title, description, memeBool, mapUrl) { const ssbClient = await openSsb(); const userId = ssbClient.id; const tipId = await this.resolveCurrentId(id); @@ -188,6 +190,7 @@ module.exports = ({ cooler }) => { tags, title: title !== undefined ? title || "" : oldMsg.content.title || "", description: description !== undefined ? description || "" : oldMsg.content.description || "", + mapUrl: mapUrl !== undefined ? mapUrl || "" : oldMsg.content.mapUrl || "", meme: typeof memeBool === "boolean" ? memeBool : !!oldMsg.content.meme, createdAt: oldMsg.content.createdAt, updatedAt: now diff --git a/nodejs-project/nodejs-project/src/models/jobs_model.js b/nodejs-project/nodejs-project/src/models/jobs_model.js index 1e1806a3..7222e010 100644 --- a/nodejs-project/nodejs-project/src/models/jobs_model.js +++ b/nodejs-project/nodejs-project/src/models/jobs_model.js @@ -33,7 +33,7 @@ const matchSearch = (job, q) => { return hay.includes(qq) } -module.exports = ({ cooler }) => { +module.exports = ({ cooler, tribeCrypto }) => { let ssb const openSsb = async () => { if (!ssb) ssb = await cooler.open(); return ssb } @@ -45,7 +45,7 @@ module.exports = ({ cooler }) => { ) ) - const buildIndex = (messages) => { + const buildIndex = (messages, ssbClient) => { const tomb = new Set() const jobNodes = new Map() const parent = new Map() @@ -110,10 +110,30 @@ module.exports = ({ cooler }) => { else set.delete(author) } + if (ssbClient) { + for (const m of messages) { + if (typeof m.value?.content !== 'string') continue + try { + const dec = ssbClient.private.unbox({ key: m.key, value: m.value, timestamp: m.value?.timestamp || m.timestamp || 0 }) + if (!dec?.value?.content) continue + const c = dec.value.content + if (c.type !== 'job_sub' || !c.jobId) continue + const author = dec.value.author + if (!author) continue + const ts = dec.value.timestamp || m.timestamp || 0 + const jobId = c.jobId + const k = `${jobId}::${author}` + const prev = jobSubLatest.get(k) + if (!prev || ts > prev.ts) jobSubLatest.set(k, { ts, value: !!c.value, author, jobId }) + } catch {} + } + } + return { tomb, jobNodes, parent, child, rootOf, tipOf, tipByRoot, subsByJob } } const buildJobObject = (node, rootId, subscribers) => { + const visibleSubs = (tribeCrypto && tribeCrypto.getKey(rootId)) || ssb?.id === (node.c?.author || node.author) ? subscribers : []; const c = node.c || {} let blobId = c.image || null if (blobId && /\(([^)]+)\)/.test(String(blobId))) blobId = String(blobId).match(/\(([^)]+)\)/)[1] @@ -141,7 +161,8 @@ module.exports = ({ cooler }) => { updatedAt: c.updatedAt || null, status: c.status || "OPEN", tags: Array.isArray(c.tags) ? c.tags : normalizeTags(c.tags), - subscribers: Array.isArray(subscribers) ? subscribers : [] + subscribers: Array.isArray(visibleSubs) ? visibleSubs : [], + mapUrl: c.mapUrl || "" } } @@ -191,16 +212,24 @@ module.exports = ({ cooler }) => { author: ssbClient.id, createdAt: new Date().toISOString(), updatedAt: new Date().toISOString(), - status: "OPEN" + status: "OPEN", + mapUrl: String(jobData.mapUrl || "").trim() } - return new Promise((res, rej) => ssbClient.publish(content, (e, m) => e ? rej(e) : res(m))) + return new Promise((res, rej) => ssbClient.publish(content, (e, m) => { + if (e) return rej(e) + if (m && m.key && tribeCrypto) { + const key = tribeCrypto.generateTribeKey() + tribeCrypto.setKey(m.key, key, 1) + } + res(m) + })) }, async resolveCurrentId(jobId) { const ssbClient = await openSsb() const messages = await readAll(ssbClient) - const { tomb, child } = buildIndex(messages) + const { tomb, child } = buildIndex(messages, ssbClient) let cur = jobId while (child.has(cur)) cur = child.get(cur) @@ -211,7 +240,7 @@ module.exports = ({ cooler }) => { async resolveRootId(jobId) { const ssbClient = await openSsb() const messages = await readAll(ssbClient) - const { tomb, parent, child } = buildIndex(messages) + const { tomb, parent, child } = buildIndex(messages, ssbClient) let tip = jobId while (child.has(tip)) tip = child.get(tip) @@ -225,7 +254,7 @@ module.exports = ({ cooler }) => { async updateJob(id, jobData) { const ssbClient = await openSsb() const messages = await readAll(ssbClient) - const idx = buildIndex(messages) + const idx = buildIndex(messages, ssbClient) const tipId = await this.resolveCurrentId(id) const node = idx.jobNodes.get(tipId) @@ -356,7 +385,8 @@ module.exports = ({ cooler }) => { createdAt: new Date().toISOString() } - return new Promise((res, rej) => ssbClient.publish(msg, (e, m) => e ? rej(e) : res(m))) + const recps = [me, job.author] + return new Promise((res, rej) => ssbClient.private.publish(msg, recps, (e, m) => e ? rej(e) : res(m))) }, async unsubscribeFromJob(id, userId) { @@ -377,7 +407,8 @@ module.exports = ({ cooler }) => { createdAt: new Date().toISOString() } - return new Promise((res, rej) => ssbClient.publish(msg, (e, m) => e ? rej(e) : res(m))) + const recps = [me, job.author] + return new Promise((res, rej) => ssbClient.private.publish(msg, recps, (e, m) => e ? rej(e) : res(m))) }, async listJobs(filter = "ALL", viewerId = null, query = {}) { @@ -386,7 +417,7 @@ module.exports = ({ cooler }) => { const viewer = viewerId || me const messages = await readAll(ssbClient) - const idx = buildIndex(messages) + const idx = buildIndex(messages, ssbClient) const jobs = [] for (const [rootId, tipId] of idx.tipByRoot.entries()) { @@ -441,7 +472,7 @@ module.exports = ({ cooler }) => { void viewerId const messages = await readAll(ssbClient) - const idx = buildIndex(messages) + const idx = buildIndex(messages, ssbClient) let tipId = id while (idx.child.has(tipId)) tipId = idx.child.get(tipId) diff --git a/nodejs-project/nodejs-project/src/models/logs_model.js b/nodejs-project/nodejs-project/src/models/logs_model.js new file mode 100644 index 00000000..ea61f866 --- /dev/null +++ b/nodejs-project/nodejs-project/src/models/logs_model.js @@ -0,0 +1,373 @@ +const pull = require('../server/node_modules/pull-stream'); +const util = require('../server/node_modules/util'); +const axios = require('../server/node_modules/axios'); +const fs = require('fs'); +const path = require('path'); +const { getConfig } = require('../configs/config-manager.js'); + +const logLimit = getConfig().ssbLogStream?.limit || 1000; +const CYCLE_PATH = path.join(__dirname, '..', 'configs', 'blockchain-cycle.json'); + +const readCycle = () => { + try { return JSON.parse(fs.readFileSync(CYCLE_PATH, 'utf8')).cycle || 0; } + catch { return 0; } +}; + +const DAY_MS = 24 * 60 * 60 * 1000; +const WEEK_MS = 7 * DAY_MS; +const MONTH_MS = 30 * DAY_MS; +const YEAR_MS = 365 * DAY_MS; + +const FILTER_WINDOWS = { + today: DAY_MS, + week: WEEK_MS, + month: MONTH_MS, + year: YEAR_MS, + always: null +}; + +const ACTION_TYPES = new Set([ + 'post', 'about', 'contact', 'feed', 'bookmark', 'image', 'audio', 'video', + 'document', 'torrent', 'event', 'task', 'taskAssignment', + 'votes', 'vote', 'report', 'tribe', 'chat', 'chatMessage', 'pad', 'padEntry', + 'forum', 'market', 'job', 'project', 'pixelia', 'map', 'mapMarker', + 'shop', 'shopProduct', 'curriculum', 'gameScore', + 'calendar', 'calendarDate', 'calendarNote', + 'transfer', 'bankClaim', 'ubiClaim', + 'parliamentCandidature', 'parliamentProposal', 'parliamentLaw', + 'parliamentTerm', 'parliamentRevocation', + 'courtsCase', 'courtsEvidence', 'courtsAnswer', 'courtsVerdict', + 'courtsNomination', 'courtsNominationVote', + 'courtsSettlementProposal', 'courtsSettlementAccepted', + 'tribeParliamentCandidature', 'tribeParliamentRule' +]); + +const ACTION_PHRASES = { + post: 'published a post', + about: 'updated profile information', + contact: 'followed or unfollowed someone', + feed: 'shared content in the feed', + bookmark: 'bookmarked a resource', + image: 'uploaded an image', + audio: 'uploaded an audio track', + video: 'uploaded a video', + document: 'uploaded a document', + torrent: 'shared a torrent', + event: 'created an event', + task: 'created a task', + taskAssignment: 'updated a task assignment', + votes: 'participated in a vote', + vote: 'cast a vote', + report: 'submitted a report', + tribe: 'interacted with a tribe', + chat: 'opened a chat room', + chatMessage: 'sent a chat message', + pad: 'worked on a collaborative pad', + padEntry: 'edited a pad entry', + market: 'posted in the market', + forum: 'posted in the forum', + job: 'posted a job opportunity', + project: 'advanced a project', + pixelia: 'placed a pixel in pixelia', + map: 'contributed to a map', + mapMarker: 'placed a marker on a map', + shop: 'updated a shop', + shopProduct: 'managed a shop product', + curriculum: 'edited the curriculum', + gameScore: 'logged a game score', + calendar: 'managed a calendar', + calendarDate: 'added a calendar date', + calendarNote: 'added a calendar note', + transfer: 'sent or confirmed a transfer', + bankClaim: 'completed a banking claim', + ubiClaim: 'claimed the UBI', + parliamentCandidature: 'published a parliamentary candidature', + parliamentProposal: 'published a parliamentary proposal', + parliamentLaw: 'participated in a parliamentary law', + parliamentTerm: 'participated in a parliamentary term', + parliamentRevocation: 'submitted a parliamentary revocation', + courtsCase: 'opened a courts case', + courtsEvidence: 'submitted courts evidence', + courtsAnswer: 'replied in a courts case', + courtsVerdict: 'reached a courts verdict', + courtsNomination: 'nominated a judge', + courtsNominationVote: 'voted on a judge nomination', + courtsSettlementProposal: 'proposed a courts settlement', + courtsSettlementAccepted: 'accepted a courts settlement', + tribeParliamentCandidature: 'stood for a tribe parliament', + tribeParliamentRule: 'contributed a tribe parliament rule' +}; + +const compact = (s, n = 200) => String(s || '').replace(/\s+/g, ' ').trim().slice(0, n); + +module.exports = ({ cooler }) => { + let ssb; + let userId; + const openSsb = async () => { + if (!ssb) { + ssb = await cooler.open(); + userId = ssb.id; + } + return ssb; + }; + + async function listAllUserActions() { + const ssbClient = await openSsb(); + const msgs = await new Promise((resolve, reject) => + pull( + ssbClient.createLogStream({ reverse: true, limit: logLimit }), + pull.collect((err, arr) => err ? reject(err) : resolve(arr)) + ) + ); + const out = []; + for (const m of msgs) { + const v = m?.value || {}; + const c = v?.content; + if (!c || typeof c !== 'object' || !c.type) continue; + if (v.author !== userId) continue; + if (c.type === 'log') continue; + if (!ACTION_TYPES.has(c.type)) continue; + const ts = v.timestamp || 0; + const summary = c.title || c.text || c.question || c.subject || c.name || c.concept || c.description || ''; + out.push({ key: m.key, ts, type: c.type, summary: compact(summary) }); + } + return out; + } + + async function callAI(prompt) { + if (!prompt) return ''; + const tryOnce = async () => { + try { + const res = await axios.post('http://localhost:4001/ai', { input: prompt, raw: true }, { timeout: 90000 }); + return String(res?.data?.answer || '').trim(); + } catch { return ''; } + }; + let out = await tryOnce(); + if (!out) { + await new Promise(r => setTimeout(r, 2000)); + out = await tryOnce(); + } + return out; + } + + function buildActionPrompt(a) { + const d = new Date(a.ts).toISOString().slice(0, 16).replace('T', ' '); + const ctx = a.summary ? ` Subject: "${compact(a.summary, 120)}".` : ''; + return `One first-person diary sentence about a "${a.type}" action at ${d}.${ctx} Vary phrasing. No IDs, hashes, quotes, lists or markdown.`; + } + + function buildFallbackSentence(a) { + const phrase = ACTION_PHRASES[a.type] || `performed a ${a.type} action`; + const d = new Date(a.ts).toISOString().slice(0, 16).replace('T', ' '); + const ctx = a.summary ? ` — ${compact(a.summary, 120)}` : ''; + return `At ${d} I ${phrase}${ctx}.`; + } + + function isAImodOn() { + try { return getConfig().modules?.aiMod === 'on'; } catch { return false; } + } + + async function publishLog({ text, label, mode, ref }) { + const ssbClient = await openSsb(); + const content = { + type: 'log', + text: String(text || '').slice(0, 8000), + label: String(label || '').slice(0, 200), + mode: mode === 'ai' ? 'ai' : 'manual', + cycle: readCycle(), + createdAt: new Date().toISOString(), + timestamp: Date.now(), + private: true + }; + if (ref) content.ref = String(ref); + const publishAsync = util.promisify(ssbClient.private.publish); + return publishAsync(content, [userId]); + } + + async function republishLog({ replaces, text, label, mode, cycle, createdAt }) { + const ssbClient = await openSsb(); + const content = { + type: 'log', + replaces, + text: String(text || '').slice(0, 8000), + label: String(label || '').slice(0, 200), + mode: mode === 'ai' ? 'ai' : 'manual', + cycle: cycle || readCycle(), + createdAt: createdAt || new Date().toISOString(), + updatedAt: new Date().toISOString(), + timestamp: Date.now(), + private: true + }; + const publishAsync = util.promisify(ssbClient.private.publish); + return publishAsync(content, [userId]); + } + + async function publishTombstone(target) { + const ssbClient = await openSsb(); + const content = { + type: 'tombstone', + target, + deletedAt: new Date().toISOString(), + author: userId, + private: true + }; + const publishAsync = util.promisify(ssbClient.private.publish); + return publishAsync(content, [userId]); + } + + async function createManual(label, text) { + await openSsb(); + const t = String(text || '').trim(); + if (!t) return { status: 'empty' }; + await publishLog({ text: t, label: String(label || '').trim(), mode: 'manual' }); + return { status: 'ok' }; + } + + function sigOf(label, text) { + return `${String(label || '').trim()}||${String(text || '').trim().slice(0, 120)}`; + } + + async function getProcessedState() { + const items = await readAllLogMessages(); + const refs = new Set(); + const sigs = new Set(); + for (const it of items) { + if (it.ref) refs.add(it.ref); + sigs.add(sigOf(it.label, it.text)); + } + return { refs, sigs }; + } + + async function createAI() { + await openSsb(); + if (!isAImodOn()) return { status: 'ai_disabled' }; + const actions = await listAllUserActions(); + if (!actions.length) return { status: 'no_actions' }; + const state = await getProcessedState(); + const pending = actions.filter(a => a.key && !state.refs.has(a.key)); + if (!pending.length) return { status: 'no_new_actions' }; + const MAX_ACTIONS = 40; + const slice = pending.slice(0, MAX_ACTIONS); + let published = 0; + let aiFails = 0; + let aiDown = false; + for (const a of slice) { + let sentence = ''; + if (!aiDown) { + sentence = await callAI(buildActionPrompt(a)); + if (!sentence) { + aiFails++; + if (aiFails >= 3) aiDown = true; + } else { + aiFails = 0; + } + } + if (!sentence) sentence = buildFallbackSentence(a); + if (!sentence) continue; + const sig = sigOf(a.type, sentence); + if (state.sigs.has(sig)) { state.refs.add(a.key); continue; } + await publishLog({ text: sentence, label: a.type, mode: 'ai', ref: a.key }); + state.refs.add(a.key); + state.sigs.add(sig); + published++; + await new Promise(r => setTimeout(r, 300)); + } + if (!published) return { status: 'no_narrative' }; + return { status: 'ok', count: published }; + } + + async function readAllLogMessages() { + const ssbClient = await openSsb(); + const raw = await new Promise((resolve, reject) => + pull( + ssbClient.createLogStream({ reverse: false, limit: logLimit }), + pull.collect((err, arr) => err ? reject(err) : resolve(arr)) + ) + ); + const items = []; + const tombstoned = new Set(); + const replaced = new Map(); + for (const m of raw) { + if (!m || !m.value) continue; + const keyIn = m.key; + const valueIn = m.value; + const tsIn = m.timestamp || valueIn?.timestamp || Date.now(); + let dec; + try { + dec = ssbClient.private.unbox({ key: keyIn, value: valueIn, timestamp: tsIn }); + } catch { continue; } + const v = dec?.value; + const c = v?.content; + if (!c) continue; + if (v.author !== userId) continue; + if (c.type === 'tombstone' && c.target) { tombstoned.add(c.target); continue; } + if (c.type !== 'log') continue; + if (c.replaces) replaced.set(c.replaces, dec.key || keyIn); + items.push({ + key: dec.key || keyIn, + author: v.author, + ts: v.timestamp || tsIn, + cycle: c.cycle || 0, + createdAt: c.createdAt || new Date(v.timestamp || tsIn).toISOString(), + text: String(c.text || ''), + label: String(c.label || ''), + mode: c.mode === 'ai' ? 'ai' : 'manual', + replaces: c.replaces || null, + ref: c.ref || null + }); + } + const survivors = items.filter(i => !tombstoned.has(i.key) && !replaced.has(i.key)); + survivors.sort((a, b) => b.ts - a.ts); + return survivors; + } + + async function listLogs(filter = 'today') { + const items = await readAllLogMessages(); + const win = FILTER_WINDOWS[filter]; + if (win === null || win === undefined) return items; + const cutoff = Date.now() - win; + return items.filter(i => i.ts >= cutoff); + } + + async function getLogById(id) { + const items = await readAllLogMessages(); + return items.find(i => i.key === id) || null; + } + + async function updateLog(id, { text, label, mode }) { + const current = await getLogById(id); + if (!current) return { status: 'not_found' }; + await republishLog({ + replaces: current.key, + text: text !== undefined ? text : current.text, + label: label !== undefined ? label : current.label, + mode: mode || current.mode, + cycle: current.cycle, + createdAt: current.createdAt + }); + return { status: 'ok' }; + } + + async function deleteLog(id) { + const current = await getLogById(id); + if (!current) return { status: 'not_found' }; + await publishTombstone(current.key); + return { status: 'ok' }; + } + + async function countLogs() { + const items = await readAllLogMessages(); + return items.length; + } + + return { + createManual, + createAI, + updateLog, + deleteLog, + getLogById, + listLogs, + countLogs, + isAImodOn + }; +}; diff --git a/nodejs-project/nodejs-project/src/models/maps_model.js b/nodejs-project/nodejs-project/src/models/maps_model.js new file mode 100644 index 00000000..0b20c3d0 --- /dev/null +++ b/nodejs-project/nodejs-project/src/models/maps_model.js @@ -0,0 +1,335 @@ +const pull = require("../server/node_modules/pull-stream"); +const { getConfig } = require("../configs/config-manager.js"); + +const logLimit = getConfig().ssbLogStream?.limit || 1000; + +const safeArr = (v) => (Array.isArray(v) ? v : []); + +const normalizeTags = (raw) => { + if (raw === undefined || raw === null) return undefined; + if (Array.isArray(raw)) return raw.map((t) => String(t || "").trim()).filter(Boolean); + return String(raw).split(",").map((t) => t.trim()).filter(Boolean); +}; + +const ALLOWED_MAP_TYPES = new Set(["OPEN", "CLOSED", "SINGLE"]); + +module.exports = ({ cooler }) => { + let ssb; + + const openSsb = async () => { + if (!ssb) ssb = await cooler.open(); + return ssb; + }; + + const getAllMessages = async (ssbClient) => + new Promise((resolve, reject) => { + pull( + ssbClient.createLogStream({ limit: logLimit }), + pull.collect((err, msgs) => (err ? reject(err) : resolve(msgs))) + ); + }); + + const getMsg = async (ssbClient, key) => + new Promise((resolve, reject) => { + ssbClient.get(key, (err, msg) => (err ? reject(err) : resolve(msg))); + }); + + const buildIndex = (messages) => { + const tomb = new Set(); + const nodes = new Map(); + const parent = new Map(); + const child = new Map(); + const markers = new Map(); + + for (const m of messages) { + const k = m.key; + const v = m.value || {}; + const c = v.content; + if (!c) continue; + + if (c.type === "tombstone" && c.target) { + tomb.add(c.target); + continue; + } + + if (c.type === "mapMarker") { + const mapId = c.mapId; + if (mapId) { + if (!markers.has(mapId)) markers.set(mapId, []); + markers.get(mapId).push({ + key: k, + lat: parseFloat(c.lat) || 0, + lng: parseFloat(c.lng) || 0, + label: c.label || "", + image: c.image || "", + author: v.author || c.author, + createdAt: c.createdAt || new Date(v.timestamp || m.timestamp || 0).toISOString() + }); + } + continue; + } + + if (c.type !== "map") continue; + + const ts = v.timestamp || m.timestamp || 0; + nodes.set(k, { key: k, ts, c }); + + if (c.replaces) { + parent.set(k, c.replaces); + child.set(c.replaces, k); + } + } + + const rootOf = (id) => { + let cur = id; + while (parent.has(cur)) cur = parent.get(cur); + return cur; + }; + + const tipOf = (id) => { + let cur = id; + while (child.has(cur)) cur = child.get(cur); + return cur; + }; + + const roots = new Set(); + for (const id of nodes.keys()) roots.add(rootOf(id)); + + const tipByRoot = new Map(); + for (const r of roots) tipByRoot.set(r, tipOf(r)); + + const forward = new Map(); + for (const [newId, oldId] of parent.entries()) forward.set(oldId, newId); + + return { tomb, nodes, parent, child, rootOf, tipOf, tipByRoot, forward, markers }; + }; + + const buildMap = (node, rootId, viewerId, markerList = []) => { + const c = node.c || {}; + return { + key: node.key, + rootId, + title: c.title || "", + lat: parseFloat(c.lat) || 0, + lng: parseFloat(c.lng) || 0, + description: c.description || "", + markerLabel: c.markerLabel || "", + image: c.image || "", + mapType: ALLOWED_MAP_TYPES.has(c.mapType) ? c.mapType : "SINGLE", + tags: safeArr(c.tags), + author: c.author, + tribeId: c.tribeId || null, + createdAt: c.createdAt || new Date(node.ts).toISOString(), + updatedAt: c.updatedAt || null, + markers: markerList.filter((mk) => !mk.tombstoned) + }; + }; + + return { + type: "map", + + async resolveCurrentId(id) { + const ssbClient = await openSsb(); + const messages = await getAllMessages(ssbClient); + const idx = buildIndex(messages); + + let tip = id; + while (idx.forward.has(tip)) tip = idx.forward.get(tip); + if (idx.tomb.has(tip)) throw new Error("Map not found"); + return tip; + }, + + async resolveRootId(id) { + const ssbClient = await openSsb(); + const messages = await getAllMessages(ssbClient); + const idx = buildIndex(messages); + + let tip = id; + while (idx.forward.has(tip)) tip = idx.forward.get(tip); + if (idx.tomb.has(tip)) throw new Error("Map not found"); + + let root = tip; + while (idx.parent.has(root)) root = idx.parent.get(root); + return root; + }, + + async createMap(lat, lng, description, mapType, tagsRaw, title, tribeId, markerLabel, image) { + const ssbClient = await openSsb(); + const tags = normalizeTags(tagsRaw) || []; + const now = new Date().toISOString(); + const mType = ALLOWED_MAP_TYPES.has(mapType) ? mapType : "SINGLE"; + + const content = { + type: "map", + title: title || "", + lat: parseFloat(lat) || 0, + lng: parseFloat(lng) || 0, + description: description || "", + markerLabel: markerLabel || "", + mapType: mType, + author: ssbClient.id, + tags, + ...(tribeId ? { tribeId } : {}), + ...(image ? { image } : {}), + createdAt: now, + updatedAt: now + }; + + return new Promise((resolve, reject) => { + ssbClient.publish(content, (err, res) => (err ? reject(err) : resolve(res))); + }); + }, + + async updateMapById(id, lat, lng, description, mapType, tagsRaw, title, image) { + const ssbClient = await openSsb(); + const userId = ssbClient.id; + const tipId = await this.resolveCurrentId(id); + const oldMsg = await getMsg(ssbClient, tipId); + + if (!oldMsg || oldMsg.content?.type !== "map") throw new Error("Map not found"); + if (oldMsg.content.author !== userId) throw new Error("Not the author"); + + const tags = tagsRaw !== undefined ? normalizeTags(tagsRaw) || [] : safeArr(oldMsg.content.tags); + const now = new Date().toISOString(); + const mType = mapType && ALLOWED_MAP_TYPES.has(mapType) ? mapType : oldMsg.content.mapType; + + const updated = { + ...oldMsg.content, + replaces: tipId, + title: title !== undefined ? title || "" : oldMsg.content.title || "", + lat: lat !== undefined ? parseFloat(lat) || 0 : oldMsg.content.lat, + lng: lng !== undefined ? parseFloat(lng) || 0 : oldMsg.content.lng, + description: description !== undefined ? description || "" : oldMsg.content.description || "", + mapType: mType, + tags, + ...(image ? { image } : {}), + createdAt: oldMsg.content.createdAt, + updatedAt: now + }; + + const tombstone = { type: "tombstone", target: tipId, deletedAt: now, author: userId }; + await new Promise((res, rej) => ssbClient.publish(tombstone, (e) => (e ? rej(e) : res()))); + + return new Promise((resolve, reject) => { + ssbClient.publish(updated, (err, result) => (err ? reject(err) : resolve(result))); + }); + }, + + async deleteMapById(id) { + const ssbClient = await openSsb(); + const userId = ssbClient.id; + const tipId = await this.resolveCurrentId(id); + const msg = await getMsg(ssbClient, tipId); + + if (!msg || msg.content?.type !== "map") throw new Error("Map not found"); + if (msg.content.author !== userId) throw new Error("Not the author"); + + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId }; + + return new Promise((resolve, reject) => { + ssbClient.publish(tombstone, (err2, res) => (err2 ? reject(err2) : resolve(res))); + }); + }, + + async addMarker(mapId, lat, lng, label, image) { + const ssbClient = await openSsb(); + const userId = ssbClient.id; + + const messages = await getAllMessages(ssbClient); + const idx = buildIndex(messages); + + let tipId = mapId; + while (idx.forward.has(tipId)) tipId = idx.forward.get(tipId); + if (idx.tomb.has(tipId)) throw new Error("Map not found"); + + const node = idx.nodes.get(tipId); + if (!node) throw new Error("Map not found"); + + const mapType = node.c.mapType || "SINGLE"; + if (mapType === "SINGLE") throw new Error("Map does not allow markers"); + if (mapType === "CLOSED" && node.c.author !== userId) throw new Error("Only the map creator can add markers"); + + const now = new Date().toISOString(); + const content = { + type: "mapMarker", + mapId: tipId, + lat: parseFloat(lat) || 0, + lng: parseFloat(lng) || 0, + label: label || "", + author: userId, + createdAt: now + }; + if (image) content.image = image; + + return new Promise((resolve, reject) => { + ssbClient.publish(content, (err, res) => (err ? reject(err) : resolve(res))); + }); + }, + + async listAll(filterOrOpts = "all", maybeOpts = {}) { + const ssbClient = await openSsb(); + + const opts = typeof filterOrOpts === "object" ? filterOrOpts : maybeOpts || {}; + const filter = (typeof filterOrOpts === "string" ? filterOrOpts : opts.filter || "all") || "all"; + const q = String(opts.q || "").trim().toLowerCase(); + const viewerId = opts.viewerId || ssbClient.id; + + const messages = await getAllMessages(ssbClient); + const idx = buildIndex(messages); + + const items = []; + for (const [rootId, tipId] of idx.tipByRoot.entries()) { + if (idx.tomb.has(tipId)) continue; + const node = idx.nodes.get(tipId); + if (!node) continue; + const markerList = safeArr(idx.markers.get(tipId)).concat(safeArr(idx.markers.get(rootId))); + items.push(buildMap(node, rootId, viewerId, markerList)); + } + + let list = items; + const now = Date.now(); + + if (filter === "mine") list = list.filter((m) => String(m.author) === String(viewerId)); + else if (filter === "recent") list = list.filter((m) => new Date(m.createdAt).getTime() >= now - 86400000); + + if (q) { + list = list.filter((m) => { + const d = String(m.description || "").toLowerCase(); + const tags = safeArr(m.tags).join(" ").toLowerCase(); + const a = String(m.author || "").toLowerCase(); + return d.includes(q) || tags.includes(q) || a.includes(q); + }); + } + + list = list.slice().sort((a, b) => new Date(b.createdAt) - new Date(a.createdAt)); + + return list; + }, + + async getMapById(id, viewerId = null) { + const ssbClient = await openSsb(); + const viewer = viewerId || ssbClient.id; + + const messages = await getAllMessages(ssbClient); + const idx = buildIndex(messages); + + let tip = id; + while (idx.forward.has(tip)) tip = idx.forward.get(tip); + if (idx.tomb.has(tip)) throw new Error("Map not found"); + + let root = tip; + while (idx.parent.has(root)) root = idx.parent.get(root); + + const node = idx.nodes.get(tip); + if (!node) { + const msg = await getMsg(ssbClient, tip); + if (!msg || msg.content?.type !== "map") throw new Error("Map not found"); + const markerList = safeArr(idx.markers.get(tip)).concat(safeArr(idx.markers.get(root))); + return buildMap({ key: tip, ts: msg.timestamp || 0, c: msg.content }, root, viewer, markerList); + } + + const markerList = safeArr(idx.markers.get(tip)).concat(safeArr(idx.markers.get(root))); + return buildMap(node, root, viewer, markerList); + } + }; +}; diff --git a/nodejs-project/nodejs-project/src/models/market_model.js b/nodejs-project/nodejs-project/src/models/market_model.js index 52d1328d..abbb3178 100644 --- a/nodejs-project/nodejs-project/src/models/market_model.js +++ b/nodejs-project/nodejs-project/src/models/market_model.js @@ -53,7 +53,7 @@ const hasBidder = (poll, userId) => { return false } -module.exports = ({ cooler }) => { +module.exports = ({ cooler, tribeCrypto }) => { let ssb const openSsb = async () => { if (!ssb) ssb = await cooler.open() @@ -94,7 +94,7 @@ module.exports = ({ cooler }) => { return { type: "market", - async createItem(item_type, title, description, image, price, tagsRaw = [], item_status, deadline, includesShipping = false, stock = 0) { + async createItem(item_type, title, description, image, price, tagsRaw = [], item_status, deadline, includesShipping = false, stock = 0, mapUrl = "", shopOpts = {}) { const ssbClient = await openSsb() const formattedDeadline = deadline ? moment(deadline, moment.ISO_8601, true) : null @@ -130,11 +130,22 @@ module.exports = ({ cooler }) => { createdAt: new Date().toISOString(), updatedAt: new Date().toISOString(), seller: ssbClient.id, - auctions_poll: [] + auctions_poll: [], + mapUrl: String(mapUrl || "").trim(), + shopProductId: shopOpts.shopProductId || "", + shopId: shopOpts.shopId || "", + shopTitle: shopOpts.shopTitle || "" } return new Promise((resolve, reject) => { - ssbClient.publish(itemContent, (err, res) => (err ? reject(err) : resolve(res))) + ssbClient.publish(itemContent, (err, res) => { + if (err) return reject(err) + if (res && res.key && tribeCrypto) { + const key = tribeCrypto.generateTribeKey() + tribeCrypto.setKey(res.key, key, 1) + } + resolve(res) + }) }) }, @@ -322,7 +333,11 @@ module.exports = ({ cooler }) => { includesShipping: !!c.includesShipping, stock: Number(c.stock) || 0, deadline: c.deadline || null, - auctions_poll: Array.isArray(c.auctions_poll) ? c.auctions_poll : [] + auctions_poll: (tribeCrypto && tribeCrypto.getKey(rootId)) ? (Array.isArray(c.auctions_poll) ? c.auctions_poll : []) : [], + mapUrl: c.mapUrl || "", + shopProductId: c.shopProductId || "", + shopId: c.shopId || "", + shopTitle: c.shopTitle || "" }) } @@ -456,7 +471,11 @@ module.exports = ({ cooler }) => { includesShipping: !!c.includesShipping, stock: Number(c.stock) || 0, deadline: c.deadline, - auctions_poll: Array.isArray(c.auctions_poll) ? c.auctions_poll : [] + auctions_poll: (tribeCrypto && tribeCrypto.getKey(rootId)) ? (Array.isArray(c.auctions_poll) ? c.auctions_poll : []) : [], + mapUrl: c.mapUrl || "", + shopProductId: c.shopProductId || "", + shopId: c.shopId || "", + shopTitle: c.shopTitle || "" } }, @@ -491,6 +510,12 @@ module.exports = ({ cooler }) => { } }, + async getItemByShopProductId(shopProductId) { + if (!shopProductId) return null + const items = await this.listAllItems("all") + return items.find((i) => i.shopProductId === shopProductId) || null + }, + async setItemAsSold(itemId) { const tipId = await this.resolveCurrentId(itemId) const ssbClient = await openSsb() diff --git a/nodejs-project/nodejs-project/src/models/opinions_model.js b/nodejs-project/nodejs-project/src/models/opinions_model.js index f802f44c..25f041c0 100644 --- a/nodejs-project/nodejs-project/src/models/opinions_model.js +++ b/nodejs-project/nodejs-project/src/models/opinions_model.js @@ -20,7 +20,7 @@ module.exports = ({ cooler }) => { const validTypes = [ 'bookmark', 'votes', 'transfer', - 'feed', 'image', 'audio', 'video', 'document' + 'feed', 'image', 'audio', 'video', 'document', 'torrent' ]; const getPreview = c => { @@ -83,6 +83,7 @@ module.exports = ({ cooler }) => { if (!c) continue; if (c.type === 'tombstone' && c.target) { tombstoned.add(c.target); + byId.delete(c.target); continue; } if (c.opinions && !tombstoned.has(key) && !['task', 'event', 'report'].includes(c.type)) { @@ -96,13 +97,17 @@ module.exports = ({ cooler }) => { } }); } + if (c.type === 'feed' && !tombstoned.has(key) && !byId.has(key)) { + if (c.replaces) replaces.set(c.replaces, key); + byId.set(key, { key, value: { ...msg.value, content: c, preview: getPreview(c) } }); + } } for (const replacedId of replaces.keys()) { byId.delete(replacedId); } - let filtered = Array.from(byId.values()); + let filtered = Array.from(byId.values()).filter(m => validTypes.includes(m.value?.content?.type)); const blobTypes = ['document', 'image', 'audio', 'video']; const blobCheckCache = new Map(); diff --git a/nodejs-project/nodejs-project/src/models/pads_model.js b/nodejs-project/nodejs-project/src/models/pads_model.js new file mode 100644 index 00000000..3a6c180c --- /dev/null +++ b/nodejs-project/nodejs-project/src/models/pads_model.js @@ -0,0 +1,538 @@ +const pull = require("../server/node_modules/pull-stream") +const crypto = require("crypto") +const fs = require("fs") +const path = require("path") +const { getConfig } = require("../configs/config-manager.js") +const logLimit = getConfig().ssbLogStream?.limit || 1000 + +const safeText = (v) => String(v || "").trim() +const normalizeTags = (raw) => { + if (!raw) return [] + if (Array.isArray(raw)) return raw.map(t => String(t || "").trim()).filter(Boolean) + return String(raw).split(",").map(t => t.trim()).filter(Boolean) +} +const INVITE_SALT = "SolarNET.HuB-pads" +const INVITE_BYTES = 16 +const MEMBER_COLORS = ["#e74c3c","#3498db","#2ecc71","#f39c12","#9b59b6","#1abc9c","#e67e22","#e91e63","#00bcd4","#8bc34a"] + +module.exports = ({ cooler, cipherModel, tribeCrypto, tribesModel }) => { + let ssb + const openSsb = async () => { if (!ssb) ssb = await cooler.open(); return ssb } + + let keyringPath = null + const getKeyring = () => { + if (!keyringPath) { + const ssbConfig = require("../server/node_modules/ssb-config/inject")() + keyringPath = path.join(ssbConfig.path, "pad-keys.json") + } + try { return JSON.parse(fs.readFileSync(keyringPath, "utf8")) } catch (e) { return {} } + } + const saveKeyring = (kr) => fs.writeFileSync(keyringPath, JSON.stringify(kr, null, 2), "utf8") + const getPadKey = (rootId) => { const kr = getKeyring(); return kr[rootId] || null } + const setPadKey = (rootId, keyHex) => { const kr = getKeyring(); kr[rootId] = keyHex; saveKeyring(kr) } + + const encryptField = (text, keyHex) => { + const key = Buffer.from(keyHex, "hex") + const iv = crypto.randomBytes(12) + const cipher = crypto.createCipheriv("aes-256-gcm", key, iv) + const enc = Buffer.concat([cipher.update(text, "utf8"), cipher.final()]) + const authTag = cipher.getAuthTag() + return iv.toString("hex") + authTag.toString("hex") + enc.toString("hex") + } + + const decryptField = (encrypted, keyHex) => { + try { + const key = Buffer.from(keyHex, "hex") + const iv = Buffer.from(encrypted.slice(0, 24), "hex") + const authTag = Buffer.from(encrypted.slice(24, 56), "hex") + const ciphertext = Buffer.from(encrypted.slice(56), "hex") + const decipher = crypto.createDecipheriv("aes-256-gcm", key, iv) + decipher.setAuthTag(authTag) + return Buffer.concat([decipher.update(ciphertext), decipher.final()]).toString("utf8") + } catch (_) { return "" } + } + + const tryDecryptField = (encrypted, keyHex) => { + const key = Buffer.from(keyHex, "hex") + const iv = Buffer.from(encrypted.slice(0, 24), "hex") + const authTag = Buffer.from(encrypted.slice(24, 56), "hex") + const ciphertext = Buffer.from(encrypted.slice(56), "hex") + const decipher = crypto.createDecipheriv("aes-256-gcm", key, iv) + decipher.setAuthTag(authTag) + return Buffer.concat([decipher.update(ciphertext), decipher.final()]).toString("utf8") + } + + const getTribeKeysFor = async (tribeId) => { + if (!tribeCrypto || !tribesModel || !tribeId) return [] + try { + const rootId = await tribesModel.getRootId(tribeId) + const keys = tribeCrypto.getKeys(rootId) || [] + return keys + } catch (_) { return [] } + } + + const decryptWithKeys = (c, keys) => { + if (!c.title || !keys.length) return null + for (const k of keys) { + try { + const title = tryDecryptField(c.title, k) + let deadline = "" + let tagsRaw = "" + try { deadline = c.deadline ? tryDecryptField(c.deadline, k) : "" } catch (_) {} + try { tagsRaw = c.tags ? tryDecryptField(c.tags, k) : "" } catch (_) {} + return { title: safeText(title), deadline, tags: normalizeTags(tagsRaw) } + } catch (_) {} + } + return null + } + + const encryptForInvite = (padKeyHex, code) => { + const derived = crypto.scryptSync(code, INVITE_SALT, 32) + return encryptField(padKeyHex, derived.toString("hex")) + } + + const decryptFromInvite = (encryptedKey, code) => { + const derived = crypto.scryptSync(code, INVITE_SALT, 32) + return decryptField(encryptedKey, derived.toString("hex")) + } + + const readAll = async (ssbClient) => + new Promise((resolve, reject) => + pull(ssbClient.createLogStream({ limit: logLimit }), pull.collect((err, msgs) => err ? reject(err) : resolve(msgs))) + ) + + const buildIndex = (messages) => { + const tomb = new Set() + const nodes = new Map() + const parent = new Map() + const child = new Map() + + for (const m of messages) { + const k = m.key + const v = m.value || {} + const c = v.content + if (!c) continue + if (c.type === "tombstone" && c.target) { tomb.add(c.target); continue } + if (c.type === "pad") { + nodes.set(k, { key: k, ts: v.timestamp || m.timestamp || 0, c, author: v.author }) + if (c.replaces) { parent.set(k, c.replaces); child.set(c.replaces, k) } + } + } + + const rootOf = (id) => { let cur = id; while (parent.has(cur)) cur = parent.get(cur); return cur } + const tipOf = (id) => { let cur = id; while (child.has(cur)) cur = child.get(cur); return cur } + + const roots = new Set() + for (const id of nodes.keys()) roots.add(rootOf(id)) + const tipByRoot = new Map() + for (const r of roots) tipByRoot.set(r, tipOf(r)) + + return { tomb, nodes, parent, child, rootOf, tipOf, tipByRoot } + } + + const decryptPadFields = (c, rootId, tribeKeys) => { + if (c.encrypted !== true) { + return { title: safeText(c.title), deadline: c.deadline ? String(c.deadline) : "", tags: normalizeTags(c.tags) } + } + if (c.tribeId && Array.isArray(tribeKeys) && tribeKeys.length) { + const viaTribe = decryptWithKeys(c, tribeKeys) + if (viaTribe) return viaTribe + } + const keyHex = getPadKey(rootId) + if (!keyHex) return { title: "", deadline: "", tags: [] } + const title = c.title ? decryptField(c.title, keyHex) : "" + const deadline = c.deadline ? decryptField(c.deadline, keyHex) : "" + const tagsRaw = c.tags ? decryptField(c.tags, keyHex) : "" + const tags = normalizeTags(tagsRaw) + return { title, deadline, tags } + } + + const buildPad = (node, rootId, tribeKeys) => { + const c = node.c || {} + if (c.type !== "pad") return null + const { title, deadline, tags } = decryptPadFields(c, rootId, tribeKeys) + return { + key: node.key, + rootId, + title, + status: c.status || "OPEN", + deadline, + tags, + author: c.author || node.author, + members: Array.isArray(c.members) ? c.members : [], + invites: Array.isArray(c.invites) ? c.invites : [], + createdAt: c.createdAt || new Date(node.ts).toISOString(), + updatedAt: c.updatedAt || null, + tribeId: c.tribeId || null + } + } + + const isClosed = (pad) => { + if (pad.status === "CLOSED") return true + if (!pad.deadline) return false + return new Date(pad.deadline).getTime() <= Date.now() + } + + return { + type: "pad", + + async decryptContent(content, rootId) { + const tKeys = content && content.tribeId ? await getTribeKeysFor(content.tribeId) : [] + return decryptPadFields(content, rootId, tKeys) + }, + + async resolveRootId(id) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + let tip = id + while (idx.child.has(tip)) tip = idx.child.get(tip) + if (idx.tomb.has(tip)) throw new Error("Not found") + let root = tip + while (idx.parent.has(root)) root = idx.parent.get(root) + return root + }, + + async resolveCurrentId(id) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + let tip = id + while (idx.child.has(tip)) tip = idx.child.get(tip) + if (idx.tomb.has(tip)) throw new Error("Not found") + return tip + }, + + async createPad(title, status, deadline, tagsRaw, tribeId) { + const ssbClient = await openSsb() + const now = new Date().toISOString() + const validStatus = ["OPEN", "INVITE-ONLY"].includes(String(status).toUpperCase()) ? String(status).toUpperCase() : "OPEN" + + let keyHex = null + let usesTribeKey = false + if (tribeId) { + const tKeys = await getTribeKeysFor(tribeId) + if (tKeys.length) { keyHex = tKeys[0]; usesTribeKey = true } + } + if (!keyHex) keyHex = crypto.randomBytes(32).toString("hex") + const enc = (text) => encryptField(text, keyHex) + + const content = { + type: "pad", + title: enc(safeText(title)), + status: validStatus, + deadline: deadline ? enc(String(deadline)) : "", + tags: enc(normalizeTags(tagsRaw).join(",")), + author: ssbClient.id, + members: [ssbClient.id], + invites: [], + createdAt: now, + updatedAt: now, + encrypted: true, + ...(tribeId ? { tribeId } : {}) + } + + return new Promise((resolve, reject) => { + ssbClient.publish(content, (err, msg) => { + if (err) return reject(err) + if (!usesTribeKey) setPadKey(msg.key, keyHex) + resolve(msg) + }) + }) + }, + + async updatePadById(id, data) { + const tipId = await this.resolveCurrentId(id) + const ssbClient = await openSsb() + const userId = ssbClient.id + const rootId = await this.resolveRootId(id) + + return new Promise(async (resolve, reject) => { + ssbClient.get(tipId, async (err, item) => { + if (err || !item?.content) return reject(new Error("Pad not found")) + if (item.content.author !== userId) return reject(new Error("Not the author")) + const c = item.content + let keyHex = null + let usesTribeKey = false + if (c.tribeId) { + const tKeys = await getTribeKeysFor(c.tribeId) + if (tKeys.length) { keyHex = tKeys[0]; usesTribeKey = true } + } + if (!keyHex) keyHex = getPadKey(rootId) + const enc = (text) => keyHex ? encryptField(text, keyHex) : text + const updated = { + ...c, + title: data.title !== undefined ? enc(safeText(data.title)) : c.title, + status: data.status !== undefined ? (["OPEN","INVITE-ONLY"].includes(String(data.status).toUpperCase()) ? String(data.status).toUpperCase() : c.status) : c.status, + deadline: data.deadline !== undefined ? enc(String(data.deadline)) : c.deadline, + tags: data.tags !== undefined ? enc(normalizeTags(data.tags).join(",")) : c.tags, + updatedAt: new Date().toISOString(), + replaces: tipId + } + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId } + ssbClient.publish(tombstone, (e1) => { + if (e1) return reject(e1) + ssbClient.publish(updated, (e2, res) => { + if (e2) return reject(e2) + if (keyHex && !usesTribeKey) setPadKey(res.key, keyHex) + resolve(res) + }) + }) + }) + }) + }, + + async closePadById(id) { + const tipId = await this.resolveCurrentId(id) + const ssbClient = await openSsb() + const userId = ssbClient.id + const rootId = await this.resolveRootId(id) + return new Promise(async (resolve, reject) => { + ssbClient.get(tipId, async (err, item) => { + if (err || !item?.content) return reject(new Error("Pad not found")) + if (item.content.author !== userId) return reject(new Error("Not the author")) + const c = item.content + let keyHex = null + let usesTribeKey = false + if (c.tribeId) { + const tKeys = await getTribeKeysFor(c.tribeId) + if (tKeys.length) { keyHex = tKeys[0]; usesTribeKey = true } + } + if (!keyHex) keyHex = getPadKey(rootId) + const updated = { + ...c, + status: "CLOSED", + updatedAt: new Date().toISOString(), + replaces: tipId + } + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId } + ssbClient.publish(tombstone, (e1) => { + if (e1) return reject(e1) + ssbClient.publish(updated, (e2, res) => { + if (e2) return reject(e2) + if (keyHex && !usesTribeKey) setPadKey(res.key, keyHex) + resolve(res) + }) + }) + }) + }) + }, + + async addMemberToPad(padId, feedId) { + const tipId = await this.resolveCurrentId(padId) + const ssbClient = await openSsb() + const rootId = await this.resolveRootId(padId) + + return new Promise((resolve, reject) => { + ssbClient.get(tipId, (err, item) => { + if (err || !item?.content) return reject(new Error("Pad not found")) + const c = item.content + const members = Array.isArray(c.members) ? c.members : [] + if (members.includes(feedId)) return resolve() + const updated = { ...c, members: [...members, feedId], updatedAt: new Date().toISOString(), replaces: tipId } + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: ssbClient.id } + ssbClient.publish(tombstone, (e1) => { + if (e1) return reject(e1) + ssbClient.publish(updated, (e2, res) => { + if (e2) return reject(e2) + if (!c.tribeId) { + const keyHex = getPadKey(rootId) + if (keyHex) setPadKey(res.key, keyHex) + } + resolve(res) + }) + }) + }) + }) + }, + + async deletePadById(id) { + const tipId = await this.resolveCurrentId(id) + const ssbClient = await openSsb() + const userId = ssbClient.id + return new Promise((resolve, reject) => { + ssbClient.get(tipId, (err, item) => { + if (err || !item?.content) return reject(new Error("Pad not found")) + if (item.content.author !== userId) return reject(new Error("Not the author")) + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId } + ssbClient.publish(tombstone, (e) => e ? reject(e) : resolve()) + }) + }) + }, + + async getPadById(id) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + let tip = id + while (idx.child.has(tip)) tip = idx.child.get(tip) + if (idx.tomb.has(tip)) return null + const node = idx.nodes.get(tip) + if (!node || node.c.type !== "pad") return null + let root = tip + while (idx.parent.has(root)) root = idx.parent.get(root) + const tKeys = node.c.tribeId ? await getTribeKeysFor(node.c.tribeId) : [] + const pad = buildPad(node, root, tKeys) + if (!pad) return null + pad.isClosed = isClosed(pad) + return pad + }, + + async listAll({ filter = "all", viewerId } = {}) { + const ssbClient = await openSsb() + const uid = viewerId || ssbClient.id + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + const tribeKeyCache = new Map() + const items = [] + for (const [rootId, tipId] of idx.tipByRoot.entries()) { + if (idx.tomb.has(tipId)) continue + const node = idx.nodes.get(tipId) + if (!node || node.c.type !== "pad") continue + let tKeys = [] + if (node.c.tribeId) { + if (!tribeKeyCache.has(node.c.tribeId)) { + tribeKeyCache.set(node.c.tribeId, await getTribeKeysFor(node.c.tribeId)) + } + tKeys = tribeKeyCache.get(node.c.tribeId) + } + const pad = buildPad(node, rootId, tKeys) + if (!pad) continue + pad.isClosed = isClosed(pad) + items.push(pad) + } + const now = Date.now() + let list = items + if (filter === "mine") list = list.filter(p => p.author === uid) + else if (filter === "recent") list = list.filter(p => new Date(p.createdAt).getTime() >= now - 86400000) + else if (filter === "open") list = list.filter(p => !p.isClosed) + else if (filter === "closed") list = list.filter(p => p.isClosed) + return list.slice().sort((a, b) => new Date(b.createdAt) - new Date(a.createdAt)) + }, + + async generateInvite(padId) { + const ssbClient = await openSsb() + const userId = ssbClient.id + const pad = await this.getPadById(padId) + if (!pad) throw new Error("Pad not found") + if (pad.author !== userId) throw new Error("Only the author can generate invites") + const rootId = await this.resolveRootId(padId) + const keyHex = getPadKey(rootId) + const code = crypto.randomBytes(INVITE_BYTES).toString("hex") + let invite = code + if (keyHex) { + const ek = encryptForInvite(keyHex, code) + invite = { code, ek } + } + const invites = [...pad.invites, invite] + await this.updatePadById(padId, { invites }) + return code + }, + + async joinByInvite(code) { + const ssbClient = await openSsb() + const userId = ssbClient.id + const pads = await this.listAll() + let matchedPad = null + let matchedInvite = null + for (const p of pads) { + for (const inv of p.invites) { + if (typeof inv === "string" && inv === code) { matchedPad = p; matchedInvite = inv; break } + if (typeof inv === "object" && inv.code === code) { matchedPad = p; matchedInvite = inv; break } + } + if (matchedPad) break + } + if (!matchedPad) throw new Error("Invalid or expired invite code") + if (matchedPad.members.includes(userId)) throw new Error("Already a member") + if (typeof matchedInvite === "object" && matchedInvite.ek) { + const padKey = decryptFromInvite(matchedInvite.ek, code) + const rootId = await this.resolveRootId(matchedPad.rootId) + setPadKey(rootId, padKey) + } + await this.addMemberToPad(matchedPad.rootId, userId) + const invites = matchedPad.invites.filter(inv => { + if (typeof inv === "string") return inv !== code + return inv.code !== code + }) + const tipId = await this.resolveCurrentId(matchedPad.rootId) + const ssbC = await openSsb() + return new Promise((resolve, reject) => { + ssbC.get(tipId, (err, item) => { + if (err || !item?.content) return reject(new Error("Pad not found after join")) + const updated = { ...item.content, invites, updatedAt: new Date().toISOString(), replaces: tipId } + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId } + ssbC.publish(tombstone, (e1) => { + if (e1) return reject(e1) + ssbC.publish(updated, (e2, res) => e2 ? reject(e2) : resolve(matchedPad.rootId)) + }) + }) + }) + }, + + async addEntry(padId, text) { + const ssbClient = await openSsb() + const rootId = await this.resolveRootId(padId) + const pad = await this.getPadById(rootId) + let keyHex = null + if (pad && pad.tribeId) { + const tKeys = await getTribeKeysFor(pad.tribeId) + if (tKeys.length) keyHex = tKeys[0] + } + if (!keyHex) keyHex = getPadKey(rootId) + const now = new Date().toISOString() + const encText = keyHex ? encryptField(safeText(text), keyHex) : safeText(text) + const content = { + type: "padEntry", + padId: rootId, + text: encText, + author: ssbClient.id, + createdAt: now, + encrypted: !!keyHex, + ...(pad && pad.tribeId ? { tribeId: pad.tribeId } : {}) + } + return new Promise((resolve, reject) => { + ssbClient.publish(content, (err, msg) => err ? reject(err) : resolve(msg)) + }) + }, + + async getEntries(padRootId) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const pad = await this.getPadById(padRootId) + const padKey = getPadKey(padRootId) + let tribeKeys = [] + if (pad && pad.tribeId) { + tribeKeys = await getTribeKeysFor(pad.tribeId) + } + const entries = [] + for (const m of messages) { + const v = m.value || {} + const c = v.content + if (!c || c.type !== "padEntry") continue + if (c.padId !== padRootId) continue + let text = c.text || "" + if (c.encrypted && c.text) { + let decoded = "" + for (const k of tribeKeys) { + try { decoded = tryDecryptField(c.text, k); break } catch (_) {} + } + if (!decoded && padKey) decoded = decryptField(c.text, padKey) + text = decoded + } + entries.push({ + key: m.key, + author: c.author || v.author, + text, + createdAt: c.createdAt || new Date(v.timestamp || 0).toISOString() + }) + } + entries.sort((a, b) => new Date(a.createdAt) - new Date(b.createdAt)) + return entries + }, + + getMemberColor(members, feedId) { + const idx = members.indexOf(feedId) + return idx >= 0 ? MEMBER_COLORS[idx % MEMBER_COLORS.length] : "#888" + } + } +} diff --git a/nodejs-project/nodejs-project/src/models/parliament_model.js b/nodejs-project/nodejs-project/src/models/parliament_model.js index dc5a913c..ce24cc3b 100644 --- a/nodejs-project/nodejs-project/src/models/parliament_model.js +++ b/nodejs-project/nodejs-project/src/models/parliament_model.js @@ -1190,6 +1190,109 @@ module.exports = ({ cooler, services = {} }) => { return false; } + const tribeReadLog = async () => { + const client = await openSsb(); + return new Promise((resolve, reject) => { + pull( + client.createLogStream({ limit: logLimit }), + pull.collect((err, msgs) => err ? reject(err) : resolve(msgs || [])) + ); + }); + }; + + const tribeListByType = async (type, tribeId) => { + const msgs = await tribeReadLog(); + const tomb = new Set(); + const replaced = new Set(); + const items = new Map(); + for (const m of msgs) { + const c = m.value?.content; if (!c) continue; + if (c.type === 'tombstone' && c.target) { tomb.add(c.target); continue; } + if (c.type !== type) continue; + if (c.tribeId !== tribeId) continue; + if (c.replaces) replaced.add(c.replaces); + items.set(m.key, { ...c, id: m.key, _ts: m.value?.timestamp || 0 }); + } + return [...items.values()].filter(it => !tomb.has(it.id) && !replaced.has(it.id)); + }; + + const tribeGetCurrentTerm = async (tribeId) => { + const terms = await tribeListByType('tribeParliamentTerm', tribeId); + if (terms.length === 0) return null; + const now = moment(); + const active = terms.find(t => moment(t.startAt).isSameOrBefore(now) && moment(t.endAt).isAfter(now)); + if (active) return active; + terms.sort((a, b) => String(b.startAt).localeCompare(String(a.startAt))); + return terms[0] || null; + }; + + const tribeListCandidatures = (tribeId) => tribeListByType('tribeParliamentCandidature', tribeId); + const tribeListRules = (tribeId) => tribeListByType('tribeParliamentRule', tribeId); + + const tribePublishCandidature = async ({ tribeId, candidateId, method }) => { + const m = String(method || '').toUpperCase(); + if (!METHODS.includes(m)) throw new Error('Invalid method'); + if (!tribeId) throw new Error('Missing tribeId'); + if (!candidateId) throw new Error('Missing candidateId'); + const term = await tribeGetCurrentTerm(tribeId); + const since = term ? term.startAt : moment().subtract(TERM_DAYS, 'days').toISOString(); + const existing = await tribeListCandidatures(tribeId); + const dupe = existing.find(c => c.candidateId === candidateId && new Date(c.createdAt) >= new Date(since) && (c.status || 'OPEN') === 'OPEN'); + if (dupe) throw new Error('Candidate already proposed this cycle'); + const client = await openSsb(); + const content = { + type: 'tribeParliamentCandidature', + tribeId, candidateId, method: m, + votes: 0, voters: [], proposer: client.id, + status: 'OPEN', createdAt: nowISO() + }; + return new Promise((resolve, reject) => client.publish(content, (e, r) => e ? reject(e) : resolve(r))); + }; + + const tribeVoteCandidature = async ({ tribeId, candidatureId }) => { + const client = await openSsb(); + const all = await tribeListCandidatures(tribeId); + const alreadyThisCycle = all.some(c => Array.isArray(c.voters) && c.voters.includes(client.id)); + if (alreadyThisCycle) throw new Error('Already voted this cycle'); + const cand = all.find(c => c.id === candidatureId); + if (!cand) throw new Error('Candidate not found'); + const updated = { + type: 'tribeParliamentCandidature', + tribeId, replaces: candidatureId, + candidateId: cand.candidateId, method: cand.method, + votes: Number(cand.votes || 0) + 1, + voters: [...(cand.voters || []), client.id], + proposer: cand.proposer, status: cand.status || 'OPEN', + createdAt: cand.createdAt, updatedAt: nowISO() + }; + return new Promise((resolve, reject) => client.publish(updated, (e, r) => e ? reject(e) : resolve(r))); + }; + + const tribePublishRule = async ({ tribeId, title, body }) => { + if (!title || !title.trim()) throw new Error('Title required'); + const client = await openSsb(); + const content = { + type: 'tribeParliamentRule', tribeId, + title: String(title).trim(), body: String(body || '').trim(), + author: client.id, createdAt: nowISO() + }; + return new Promise((resolve, reject) => client.publish(content, (e, r) => e ? reject(e) : resolve(r))); + }; + + const tribeDeleteRule = async (ruleId) => { + const client = await openSsb(); + return new Promise((resolve, reject) => client.publish({ type: 'tombstone', target: ruleId, deletedAt: nowISO(), author: client.id }, (e, r) => e ? reject(e) : resolve(r))); + }; + + const tribeHasCandidatureInGlobalCycle = async (tribeId, globalTermStart) => { + const msgs = await tribeReadLog(); + const cutoff = globalTermStart ? new Date(globalTermStart) : new Date(Date.now() - TERM_DAYS * 86400000); + return msgs.some(m => { + const c = m.value?.content; if (!c) return false; + return c.type === 'parliamentCandidature' && c.targetType === 'tribe' && c.targetId === tribeId && (c.status || 'OPEN') === 'OPEN' && new Date(c.createdAt) >= cutoff; + }); + }; + return { proposeCandidature, voteCandidature, @@ -1212,7 +1315,19 @@ module.exports = ({ cooler, services = {} }) => { listRevocationsCurrent, listFutureRevocationsCurrent, closeRevocation, - countRevocationsEnacted + countRevocationsEnacted, + tribe: { + METHODS, + TERM_DAYS, + getCurrentTerm: tribeGetCurrentTerm, + listCandidatures: tribeListCandidatures, + listRules: tribeListRules, + publishTribeCandidature: tribePublishCandidature, + voteTribeCandidature: tribeVoteCandidature, + publishTribeRule: tribePublishRule, + deleteTribeRule: tribeDeleteRule, + hasCandidatureInGlobalCycle: tribeHasCandidatureInGlobalCycle + } }; }; diff --git a/nodejs-project/nodejs-project/src/models/pm_model.js b/nodejs-project/nodejs-project/src/models/pm_model.js index 73612f18..3ebf491e 100644 --- a/nodejs-project/nodejs-project/src/models/pm_model.js +++ b/nodejs-project/nodejs-project/src/models/pm_model.js @@ -65,6 +65,9 @@ module.exports = ({ cooler }) => { const author = decrypted?.value?.author; const originalRecps = Array.isArray(content?.to) ? content.to : []; if (!content || !author) throw new Error("Malformed message."); + const isAuthor = author === userId; + const isRecipient = originalRecps.includes(userId); + if (!isAuthor && !isRecipient) throw new Error("Not authorized."); if (content.type === 'tombstone') throw new Error("Message already deleted."); const tombstone = { type: 'tombstone', @@ -72,7 +75,9 @@ module.exports = ({ cooler }) => { deletedAt: new Date().toISOString(), private: true }; - const tombstoneRecps = uniqueRecps([userId, author, ...originalRecps]); + const tombstoneRecps = isAuthor + ? uniqueRecps([userId, author, ...originalRecps]) + : uniqueRecps([userId]); const publishAsync = util.promisify(ssbClient.private.publish); return publishAsync(tombstone, tombstoneRecps); }, diff --git a/nodejs-project/nodejs-project/src/models/projects_model.js b/nodejs-project/nodejs-project/src/models/projects_model.js index 3891820c..3797c56f 100644 --- a/nodejs-project/nodejs-project/src/models/projects_model.js +++ b/nodejs-project/nodejs-project/src/models/projects_model.js @@ -180,7 +180,8 @@ module.exports = ({ cooler }) => { backers: [], author: ssbClient.id, createdAt: new Date().toISOString(), - updatedAt: null + updatedAt: null, + mapUrl: String(data.mapUrl || "").trim() } return new Promise((res, rej) => ssbClient.publish(content, (e, m) => (e ? rej(e) : res(m)))) diff --git a/nodejs-project/nodejs-project/src/models/search_model.js b/nodejs-project/nodejs-project/src/models/search_model.js index 15f72c3d..80fa71a2 100644 --- a/nodejs-project/nodejs-project/src/models/search_model.js +++ b/nodejs-project/nodejs-project/src/models/search_model.js @@ -3,7 +3,7 @@ const moment = require('../server/node_modules/moment'); const { getConfig } = require('../configs/config-manager.js'); const logLimit = getConfig().ssbLogStream?.limit || 1000; -module.exports = ({ cooler }) => { +module.exports = ({ cooler, padsModel }) => { let ssb; const openSsb = async () => { if (!ssb) ssb = await cooler.open(); @@ -13,8 +13,8 @@ module.exports = ({ cooler }) => { const searchableTypes = [ 'post', 'about', 'curriculum', 'tribe', 'transfer', 'feed', 'votes', 'report', 'task', 'event', 'bookmark', 'document', - 'image', 'audio', 'video', 'market', 'bankWallet', 'bankClaim', - 'project', 'job', 'forum', 'vote', 'contact', 'pub' + 'image', 'audio', 'video', 'torrent', 'market', 'bankWallet', 'bankClaim', + 'project', 'job', 'forum', 'vote', 'contact', 'pub', 'map', 'shop', 'shopProduct', 'chat', 'pad' ]; const getRelevantFields = (type, content) => { @@ -39,6 +39,8 @@ module.exports = ({ cooler }) => { return [content?.url, content?.mimeType, content?.title, content?.description, ...(content?.tags || [])]; case 'document': return [content?.url, content?.title, content?.description, ...(content?.tags || []), content?.key]; + case 'torrent': + return [content?.title, content?.description, ...(content?.tags || []), content?.url]; case 'market': return [content?.item_type, content?.title, content?.description, content?.price, ...(content?.tags || []), content?.status, content?.item_status, content?.deadline, content?.includesShipping, content?.seller, content?.image, content?.auctions_poll, content?.stock]; case 'bookmark': @@ -67,6 +69,18 @@ module.exports = ({ cooler }) => { return [content?.contact]; case 'pub': return [content?.address?.host, content?.address?.key]; + case 'map': + return [content?.title, content?.description, content?.mapType, ...(content?.tags || []), content?.lat, content?.lng]; + case 'shop': + return [content?.title, content?.shortDescription, content?.description, content?.location, ...(content?.tags || []), content?.visibility, content?.url]; + case 'shopProduct': + return [content?.title, content?.description, content?.price, ...(content?.tags || []), content?.shopId]; + case 'chat': + return [content?.title, content?.description, content?.category, ...(content?.tags || []), content?.status, content?.author]; + case 'pad': + return [content?.title, content?.status, content?.deadline, ...(content?.tags || []), content?.author]; + case 'gameScore': + return [content?.game, content?.player]; default: return []; } @@ -93,6 +107,7 @@ module.exports = ({ cooler }) => { if (t === 'image') return `image:${c.url || `${author}|${norm(c.title)}|${norm(c.description)}` || msg.key}`; if (t === 'audio') return `audio:${c.url || `${author}|${norm(c.title)}|${norm(c.description)}` || msg.key}`; if (t === 'video') return `video:${c.url || `${author}|${norm(c.title)}|${norm(c.description)}` || msg.key}`; + if (t === 'torrent') return `torrent:${c.url || `${author}|${norm(c.title)}|${norm(c.description)}` || msg.key}`; if (t === 'bookmark') return `bookmark:${author}|${c.url || norm(c.description) || msg.key}`; if (t === 'tribe') { @@ -202,6 +217,22 @@ module.exports = ({ cooler }) => { return `forum:${c.key || c.root || `${author}|${norm(c.title)}` || msg.key}`; } + if (t === 'map') { + return ['map', author, norm(c.title), norm(c.description), norm(c.lat), norm(c.lng)].join('|'); + } + + if (t === 'shop') { + return ['shop', author, norm(c.title), norm(c.location)].join('|'); + } + + if (t === 'shopProduct') { + return ['shopProduct', author, norm(c.title), norm(c.shopId)].join('|'); + } + + if (t === 'pad') { + return ['pad', author, norm(c.title), norm(c.deadline)].join('|'); + } + return `${t}:${msg.key}`; }; @@ -246,6 +277,23 @@ module.exports = ({ cooler }) => { latestByKey.delete(oldId); } + if (padsModel) { + for (const msg of latestByKey.values()) { + const c = msg?.value?.content; + if (c?.type === 'pad') { + const rootId = c.replaces ? msg.key : msg.key; + try { + const decrypted = await padsModel.decryptContent(c, rootId); + if (decrypted && typeof decrypted === 'object') { + if (decrypted.title) c.title = decrypted.title; + if (decrypted.deadline) c.deadline = decrypted.deadline; + if (Array.isArray(decrypted.tags) && decrypted.tags.length) c.tags = decrypted.tags; + } + } catch (_) {} + } + } + } + let filtered = Array.from(latestByKey.values()).filter(msg => { const c = msg?.value?.content; const t = c?.type; @@ -258,7 +306,8 @@ module.exports = ({ cooler }) => { const fields = getRelevantFields(t, c); if (queryLower.startsWith('#') && queryLower.length > 1) { const tag = queryLower.substring(1); - return (c?.tags || []).some(x => String(x).toLowerCase() === tag); + const tagArr = Array.isArray(c?.tags) ? c.tags : (typeof c?.tags === 'string' ? c.tags.split(',').map(s => s.trim()).filter(Boolean) : []); + return tagArr.some(x => String(x).toLowerCase() === tag); } return fields.filter(Boolean).map(String).some(field => field.toLowerCase().includes(queryLower)); }); diff --git a/nodejs-project/nodejs-project/src/models/shops_model.js b/nodejs-project/nodejs-project/src/models/shops_model.js new file mode 100644 index 00000000..bcf00f8c --- /dev/null +++ b/nodejs-project/nodejs-project/src/models/shops_model.js @@ -0,0 +1,522 @@ +const pull = require("../server/node_modules/pull-stream") +const { getConfig } = require("../configs/config-manager.js") +const categories = require("../backend/opinion_categories") +const logLimit = getConfig().ssbLogStream?.limit || 1000 + +const safeArr = (v) => (Array.isArray(v) ? v : []) +const safeText = (v) => String(v || "").trim() +const normalizeTags = (raw) => { + if (raw === undefined || raw === null) return [] + if (Array.isArray(raw)) return raw.map(t => String(t || "").trim()).filter(Boolean) + return String(raw).split(",").map(t => t.trim()).filter(Boolean) +} +const voteSum = (opinions = {}) => Object.values(opinions || {}).reduce((s, n) => s + (Number(n) || 0), 0) + +module.exports = ({ cooler, tribeCrypto }) => { + let ssb + const openSsb = async () => { if (!ssb) ssb = await cooler.open(); return ssb } + + const readAll = async (ssbClient) => + new Promise((resolve, reject) => + pull(ssbClient.createLogStream({ limit: logLimit }), pull.collect((err, msgs) => err ? reject(err) : resolve(msgs))) + ) + + const decryptBuyers = (val, key) => { + if (Array.isArray(val)) return val + if (typeof val === 'string' && tribeCrypto && key) { + try { return JSON.parse(tribeCrypto.decryptWithKey(val, key)) } catch {} + } + return [] + } + + const buildIndex = (messages) => { + const tomb = new Set() + const nodes = new Map() + const parent = new Map() + const child = new Map() + + for (const m of messages) { + const k = m.key + const v = m.value || {} + const c = v.content + if (!c) continue + if (c.type === "tombstone" && c.target) { tomb.add(c.target); continue } + if (c.type === "shop" || c.type === "shopProduct") { + nodes.set(k, { key: k, ts: v.timestamp || m.timestamp || 0, c, author: v.author }) + if (c.replaces) { parent.set(k, c.replaces); child.set(c.replaces, k) } + } + } + + const rootOf = (id) => { let cur = id; while (parent.has(cur)) cur = parent.get(cur); return cur } + const tipOf = (id) => { let cur = id; while (child.has(cur)) cur = child.get(cur); return cur } + + const roots = new Set() + for (const id of nodes.keys()) roots.add(rootOf(id)) + const tipByRoot = new Map() + for (const r of roots) tipByRoot.set(r, tipOf(r)) + + return { tomb, nodes, parent, child, rootOf, tipOf, tipByRoot } + } + + const buildShop = (node, rootId) => { + const c = node.c || {} + if (c.type !== "shop") return null + return { + key: node.key, + rootId, + title: c.title || "", + shortDescription: c.shortDescription || "", + description: c.description || "", + image: c.image || null, + url: c.url || "", + location: c.location || "", + tags: safeArr(c.tags), + visibility: c.visibility || "OPEN", + author: c.author || node.author, + createdAt: c.createdAt || new Date(node.ts).toISOString(), + updatedAt: c.updatedAt || null, + opinions: c.opinions || {}, + opinions_inhabitants: safeArr(c.opinions_inhabitants), + mapUrl: c.mapUrl || "" + } + } + + const buildProduct = (node, rootId) => { + const c = node.c || {} + if (c.type !== "shopProduct") return null + return { + key: node.key, + rootId, + shopId: c.shopId || "", + title: c.title || "", + description: c.description || "", + image: c.image || null, + price: c.price || "0.000000", + stock: Number(c.stock) || 0, + featured: !!c.featured, + author: c.author || node.author, + createdAt: c.createdAt || new Date(node.ts).toISOString(), + updatedAt: c.updatedAt || null, + opinions: c.opinions || {}, + opinions_inhabitants: safeArr(c.opinions_inhabitants), + buyers: decryptBuyers(c.buyers, tribeCrypto ? tribeCrypto.getKey(rootId) : null) + } + } + + const countProductsFromIndex = (idx, shopRootId) => { + let count = 0 + for (const tipId of idx.tipByRoot.values()) { + if (idx.tomb.has(tipId)) continue + const node = idx.nodes.get(tipId) + if (!node || node.c.type !== "shopProduct") continue + if (node.c.shopId === shopRootId) count++ + } + return count + } + + return { + type: "shop", + + async resolveRootId(id) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + let tip = id + while (idx.child.has(tip)) tip = idx.child.get(tip) + if (idx.tomb.has(tip)) throw new Error("Not found") + let root = tip + while (idx.parent.has(root)) root = idx.parent.get(root) + return root + }, + + async resolveCurrentId(id) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + let tip = id + while (idx.child.has(tip)) tip = idx.child.get(tip) + if (idx.tomb.has(tip)) throw new Error("Not found") + return tip + }, + + async createShop(title, shortDescription, description, image, url, location, tagsRaw, visibility, mapUrl) { + const ssbClient = await openSsb() + const blobId = image ? String(image).trim() || null : null + const tags = normalizeTags(tagsRaw) + const vis = String(visibility || "OPEN").toUpperCase() === "CLOSED" ? "CLOSED" : "OPEN" + const now = new Date().toISOString() + + const content = { + type: "shop", + title: safeText(title), + shortDescription: safeText(shortDescription), + description: safeText(description), + image: blobId, + url: safeText(url), + location: safeText(location), + tags, + visibility: vis, + mapUrl: safeText(mapUrl), + author: ssbClient.id, + createdAt: now, + updatedAt: now, + opinions: {}, + opinions_inhabitants: [] + } + + return new Promise((resolve, reject) => { + ssbClient.publish(content, (err, msg) => err ? reject(err) : resolve(msg)) + }) + }, + + async updateShopById(id, data) { + const tipId = await this.resolveCurrentId(id) + const ssbClient = await openSsb() + const userId = ssbClient.id + + return new Promise((resolve, reject) => { + ssbClient.get(tipId, (err, item) => { + if (err || !item?.content) return reject(new Error("Shop not found")) + if (item.content.author !== userId) return reject(new Error("Not the author")) + + const c = item.content + const updated = { + ...c, + title: data.title !== undefined ? safeText(data.title) : c.title, + shortDescription: data.shortDescription !== undefined ? safeText(data.shortDescription) : c.shortDescription, + description: data.description !== undefined ? safeText(data.description) : c.description, + image: data.image !== undefined ? (data.image ? String(data.image).trim() || null : c.image) : c.image, + url: data.url !== undefined ? safeText(data.url) : c.url, + location: data.location !== undefined ? safeText(data.location) : c.location, + tags: data.tags !== undefined ? normalizeTags(data.tags) : c.tags, + visibility: data.visibility !== undefined ? (String(data.visibility).toUpperCase() === "CLOSED" ? "CLOSED" : "OPEN") : c.visibility, + updatedAt: new Date().toISOString(), + replaces: tipId + } + + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId } + ssbClient.publish(tombstone, (e1) => { + if (e1) return reject(e1) + ssbClient.publish(updated, (e2, res) => e2 ? reject(e2) : resolve(res)) + }) + }) + }) + }, + + async deleteShopById(id) { + const tipId = await this.resolveCurrentId(id) + const ssbClient = await openSsb() + const userId = ssbClient.id + + return new Promise((resolve, reject) => { + ssbClient.get(tipId, (err, item) => { + if (err || !item?.content) return reject(new Error("Shop not found")) + if (item.content.author !== userId) return reject(new Error("Not the author")) + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId } + ssbClient.publish(tombstone, (e) => e ? reject(e) : resolve()) + }) + }) + }, + + async getShopById(id) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + + let tip = id + while (idx.child.has(tip)) tip = idx.child.get(tip) + if (idx.tomb.has(tip)) return null + + const node = idx.nodes.get(tip) + if (!node || node.c.type !== "shop") return null + + let root = tip + while (idx.parent.has(root)) root = idx.parent.get(root) + + const shop = buildShop(node, root) + if (!shop) return null + shop.productCount = countProductsFromIndex(idx, root) + return shop + }, + + async listAll({ filter = "all", q = "", sort = "recent", viewerId } = {}) { + const ssbClient = await openSsb() + const uid = viewerId || ssbClient.id + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + + const items = [] + for (const [rootId, tipId] of idx.tipByRoot.entries()) { + if (idx.tomb.has(tipId)) continue + const node = idx.nodes.get(tipId) + if (!node || node.c.type !== "shop") continue + const shop = buildShop(node, rootId) + if (!shop) continue + if (shop.visibility === "CLOSED" && shop.author !== uid) continue + shop.productCount = countProductsFromIndex(idx, rootId) + items.push(shop) + } + + let list = items + const now = Date.now() + + if (filter === "mine") list = list.filter(s => s.author === uid) + else if (filter === "recent") list = list.filter(s => new Date(s.createdAt).getTime() >= now - 86400000) + else if (filter === "top") list = list.slice().sort((a, b) => voteSum(b.opinions) - voteSum(a.opinions) || new Date(b.createdAt) - new Date(a.createdAt)) + + if (q) { + const qq = q.toLowerCase() + list = list.filter(s => { + const t = String(s.title || "").toLowerCase() + const d = String(s.description || "").toLowerCase() + const loc = String(s.location || "").toLowerCase() + const tags = safeArr(s.tags).join(" ").toLowerCase() + return t.includes(qq) || d.includes(qq) || loc.includes(qq) || tags.includes(qq) + }) + } + + if (filter !== "top") { + if (sort === "top") list = list.slice().sort((a, b) => voteSum(b.opinions) - voteSum(a.opinions) || new Date(b.createdAt) - new Date(a.createdAt)) + else list = list.slice().sort((a, b) => new Date(b.createdAt) - new Date(a.createdAt)) + } + + return list + }, + + async createProduct(shopId, title, description, image, price, stock, featured) { + const ssbClient = await openSsb() + const blobId = image ? String(image).trim() || null : null + const p = parseFloat(String(price || "").replace(",", ".")) + if (!Number.isFinite(p) || p <= 0) throw new Error("Invalid price") + const s = parseInt(String(stock || "1"), 10) + if (!Number.isFinite(s) || s < 0) throw new Error("Invalid stock") + const now = new Date().toISOString() + + const content = { + type: "shopProduct", + shopId, + title: safeText(title), + description: safeText(description), + image: blobId, + price: p.toFixed(6), + stock: s, + featured: !!featured, + author: ssbClient.id, + createdAt: now, + updatedAt: now, + opinions: {}, + opinions_inhabitants: [] + } + + return new Promise((resolve, reject) => { + ssbClient.publish(content, (err, msg) => { + if (err) return reject(err) + if (msg && msg.key && tribeCrypto) { + const key = tribeCrypto.generateTribeKey() + tribeCrypto.setKey(msg.key, key, 1) + } + resolve(msg) + }) + }) + }, + + async updateProductById(id, data) { + const tipId = await this.resolveCurrentId(id) + const ssbClient = await openSsb() + const userId = ssbClient.id + + return new Promise((resolve, reject) => { + ssbClient.get(tipId, (err, item) => { + if (err || !item?.content) return reject(new Error("Product not found")) + if (item.content.author !== userId) return reject(new Error("Not the author")) + + const c = item.content + const pRaw = data.price !== undefined ? parseFloat(String(data.price || "").replace(",", ".")) : null + const sRaw = data.stock !== undefined ? parseInt(String(data.stock || "0"), 10) : null + + const updated = { + ...c, + title: data.title !== undefined ? safeText(data.title) : c.title, + description: data.description !== undefined ? safeText(data.description) : c.description, + image: data.image !== undefined ? (data.image ? String(data.image).trim() || null : c.image) : c.image, + price: pRaw !== null && Number.isFinite(pRaw) && pRaw > 0 ? pRaw.toFixed(6) : c.price, + stock: sRaw !== null && Number.isFinite(sRaw) && sRaw >= 0 ? sRaw : c.stock, + featured: data.featured !== undefined ? !!data.featured : !!c.featured, + updatedAt: new Date().toISOString(), + replaces: tipId + } + + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId } + ssbClient.publish(tombstone, (e1) => { + if (e1) return reject(e1) + ssbClient.publish(updated, (e2, res) => e2 ? reject(e2) : resolve(res)) + }) + }) + }) + }, + + async deleteProductById(id) { + const tipId = await this.resolveCurrentId(id) + const ssbClient = await openSsb() + const userId = ssbClient.id + + return new Promise((resolve, reject) => { + ssbClient.get(tipId, (err, item) => { + if (err || !item?.content) return reject(new Error("Product not found")) + if (item.content.author !== userId) return reject(new Error("Not the author")) + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId } + ssbClient.publish(tombstone, (e) => e ? reject(e) : resolve()) + }) + }) + }, + + async getProductById(id) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + + let tip = id + while (idx.child.has(tip)) tip = idx.child.get(tip) + if (idx.tomb.has(tip)) return null + + const node = idx.nodes.get(tip) + if (!node || node.c.type !== "shopProduct") return null + + let root = tip + while (idx.parent.has(root)) root = idx.parent.get(root) + + return buildProduct(node, root) + }, + + async listProducts(shopRootId) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + + const items = [] + for (const [rootId, tipId] of idx.tipByRoot.entries()) { + if (idx.tomb.has(tipId)) continue + const node = idx.nodes.get(tipId) + if (!node || node.c.type !== "shopProduct") continue + if (node.c.shopId !== shopRootId) continue + const prod = buildProduct(node, rootId) + if (prod) items.push(prod) + } + + return items.sort((a, b) => new Date(b.createdAt) - new Date(a.createdAt)) + }, + + async listFeaturedProducts(shopRootId) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + + const items = [] + for (const [rootId, tipId] of idx.tipByRoot.entries()) { + if (idx.tomb.has(tipId)) continue + const node = idx.nodes.get(tipId) + if (!node || node.c.type !== "shopProduct") continue + if (node.c.shopId !== shopRootId) continue + if (!node.c.featured) continue + const prod = buildProduct(node, rootId) + if (prod) items.push(prod) + } + + return items.sort((a, b) => new Date(b.createdAt) - new Date(a.createdAt)).slice(0, 4) + }, + + async listAllProducts({ filter = "all", sort = "recent" } = {}) { + const ssbClient = await openSsb() + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + + const items = [] + for (const [rootId, tipId] of idx.tipByRoot.entries()) { + if (idx.tomb.has(tipId)) continue + const node = idx.nodes.get(tipId) + if (!node || node.c.type !== "shopProduct") continue + const prod = buildProduct(node, rootId) + if (prod) items.push(prod) + } + + if (filter === "top") return items.slice().sort((a, b) => voteSum(b.opinions) - voteSum(a.opinions) || new Date(b.createdAt) - new Date(a.createdAt)) + return items.slice().sort((a, b) => new Date(b.createdAt) - new Date(a.createdAt)) + }, + + async buyProduct(productId) { + const ssbClient = await openSsb() + const userId = ssbClient.id + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + + let tip = productId + while (idx.child.has(tip)) tip = idx.child.get(tip) + if (idx.tomb.has(tip)) throw new Error("Product not found") + const tipId = tip + + let rootId = tipId + while (idx.parent.has(rootId)) rootId = idx.parent.get(rootId) + + const node = idx.nodes.get(tipId) + if (!node) throw new Error("Product not found") + const c = node.c + if (c.author === userId) throw new Error("Cannot buy your own product") + const stock = Number(c.stock) || 0 + if (stock <= 0) throw new Error("Out of stock") + + const key = tribeCrypto ? tribeCrypto.getKey(rootId) : null + const currentBuyers = decryptBuyers(c.buyers, key) + const newBuyers = currentBuyers.concat(userId) + + const updated = { + ...c, + stock: stock - 1, + buyers: key ? tribeCrypto.encryptWithKey(JSON.stringify(newBuyers), key) : newBuyers, + updatedAt: new Date().toISOString(), + replaces: tipId + } + + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId } + await new Promise((res, rej) => ssbClient.publish(tombstone, (e) => e ? rej(e) : res())) + return new Promise((res, rej) => ssbClient.publish(updated, (e, m) => e ? rej(e) : res(m))) + }, + + async createOpinion(id, category) { + if (!categories.includes(category)) throw new Error("Invalid category") + const ssbClient = await openSsb() + const userId = ssbClient.id + const messages = await readAll(ssbClient) + const idx = buildIndex(messages) + + let tip = id + while (idx.child.has(tip)) tip = idx.child.get(tip) + if (idx.tomb.has(tip)) throw new Error("Not found") + const tipId = tip + + let rootId = tipId + while (idx.parent.has(rootId)) rootId = idx.parent.get(rootId) + + const node = idx.nodes.get(tipId) + if (!node) throw new Error("Not found") + const c = node.c + + const key = tribeCrypto ? tribeCrypto.getKey(rootId) : null + const buyers = decryptBuyers(c.buyers, key) + if (!buyers.includes(userId)) throw new Error("Must purchase before rating") + const voters = safeArr(c.opinions_inhabitants) + if (voters.includes(userId)) throw new Error("Already voted") + + const updated = { + ...c, + opinions: { ...(c.opinions || {}), [category]: ((c.opinions || {})[category] || 0) + 1 }, + opinions_inhabitants: voters.concat(userId), + updatedAt: new Date().toISOString(), + replaces: tipId + } + + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId } + await new Promise((res, rej) => ssbClient.publish(tombstone, (e) => e ? rej(e) : res())) + return new Promise((res, rej) => ssbClient.publish(updated, (e, m) => e ? rej(e) : res(m))) + } + } +} diff --git a/nodejs-project/nodejs-project/src/models/stats_model.js b/nodejs-project/nodejs-project/src/models/stats_model.js index 0abd790a..7223bbca 100644 --- a/nodejs-project/nodejs-project/src/models/stats_model.js +++ b/nodejs-project/nodejs-project/src/models/stats_model.js @@ -35,8 +35,9 @@ module.exports = ({ cooler }) => { const types = [ 'bookmark','event','task','votes','report','feed','project', - 'image','audio','video','document','transfer','post','tribe', - 'market','forum','job','aiExchange', + 'image','torrent','audio','video','document','transfer','post','tribe', + 'market','forum','job','aiExchange','map','shop','shopProduct','chat','chatMessage', + 'pad','padEntry','gameScore','calendar','calendarDate','calendarNote','log', 'parliamentCandidature','parliamentTerm','parliamentProposal','parliamentRevocation','parliamentLaw', 'courtsCase','courtsEvidence','courtsAnswer','courtsVerdict','courtsSettlement','courtsSettlementProposal','courtsSettlementAccepted','courtsNomination','courtsNominationVote' ]; @@ -113,6 +114,139 @@ module.exports = ({ cooler }) => { return Array.from(pick.values()); }; + const inferType = (c = {}) => { + if (c.vote) return 'vote'; + if (c.votes) return 'votes'; + if (c.address && c.coin === 'ECO' && c.type === 'wallet') return 'bankWallet'; + if (typeof c.amount !== 'undefined' && c.epochId && c.allocationId) return 'bankClaim'; + if (typeof c.item_type !== 'undefined' && typeof c.status !== 'undefined') return 'market'; + if (typeof c.goal !== 'undefined' && typeof c.progress !== 'undefined') return 'project'; + if (typeof c.members !== 'undefined' && typeof c.isAnonymous !== 'undefined') return 'tribe'; + if (typeof c.date !== 'undefined' && typeof c.location !== 'undefined') return 'event'; + if (typeof c.priority !== 'undefined' && typeof c.status !== 'undefined' && c.title) return 'task'; + if (typeof c.confirmations !== 'undefined' && typeof c.severity !== 'undefined') return 'report'; + if (typeof c.job_type !== 'undefined' && typeof c.status !== 'undefined') return 'job'; + if (typeof c.url !== 'undefined' && typeof c.mimeType !== 'undefined' && c.type === 'audio') return 'audio'; + if (typeof c.url !== 'undefined' && typeof c.mimeType !== 'undefined' && c.type === 'video') return 'video'; + if (typeof c.url !== 'undefined' && c.title && c.key) return 'document'; + if (typeof c.text !== 'undefined' && typeof c.refeeds !== 'undefined') return 'feed'; + if (typeof c.text !== 'undefined' && typeof c.contentWarning !== 'undefined') return 'post'; + if (typeof c.contact !== 'undefined') return 'contact'; + if (typeof c.about !== 'undefined') return 'about'; + if (typeof c.concept !== 'undefined' && typeof c.amount !== 'undefined' && c.status) return 'transfer'; + if (c.type === 'map') return 'map'; + if (c.type === 'shop') return 'shop'; + if (c.type === 'shopProduct') return 'shopProduct'; + if (c.type === 'chat') return 'chat'; + if (c.type === 'chatMessage') return 'chatMessage'; + return ''; + }; + + const normalizeActionType = (a) => { + const t = a.type || a.content?.type || inferType(a.content) || ''; + return String(t).toLowerCase(); + }; + + const priorityBump = (p) => { + const s = String(p || '').toUpperCase(); + if (s === 'HIGH') return 3; + if (s === 'MEDIUM') return 1; + return 0; + }; + + const severityBump = (s) => { + const x = String(s || '').toUpperCase(); + if (x === 'CRITICAL') return 6; + if (x === 'HIGH') return 4; + if (x === 'MEDIUM') return 2; + return 0; + }; + + const calculateOpinionScore = (content) => { + const cats = content?.opinions || {}; + let s = 0; + for (const k in cats) { + if (!Object.prototype.hasOwnProperty.call(cats, k)) continue; + if (k === 'interesting' || k === 'inspiring') s += 5; + else if (k === 'boring' || k === 'spam' || k === 'propaganda') s -= 3; + else s += 1; + } + return s; + }; + + const scoreMarketItem = (c) => { + const st = String(c.status || '').toUpperCase(); + let s = 5; + if (st === 'SOLD') s += 8; + else if (st === 'ACTIVE') s += 3; + const bids = Array.isArray(c.auctions_poll) ? c.auctions_poll.length : 0; + s += Math.min(10, bids); + return s; + }; + + const scoreProjectItem = (c) => { + const st = String(c.status || 'ACTIVE').toUpperCase(); + const prog = Number(c.progress || 0); + let s = 8 + Math.min(10, prog / 10); + if (st === 'FUNDED') s += 10; + return s; + }; + + const computeKarmaFromMsgs = (msgs) => { + let score = 0; + for (const m of msgs) { + const c = m.value?.content || {}; + const t = normalizeActionType({ type: c.type, content: c }); + const rawType = String(c.type || '').toLowerCase(); + if (t === 'post') score += 10; + else if (t === 'comment') score += 5; + else if (t === 'like') score += 2; + else if (t === 'image') score += 8; + else if (t === 'video') score += 12; + else if (t === 'audio') score += 8; + else if (t === 'document') score += 6; + else if (t === 'map') score += 6; + else if (t === 'bookmark') score += 2; + else if (t === 'feed') score += 6; + else if (t === 'forum') score += c.root ? 5 : 10; + else if (t === 'vote') score += 3 + calculateOpinionScore(c); + else if (t === 'votes') score += Math.min(10, Number(c.totalVotes || 0)); + else if (t === 'market') score += scoreMarketItem(c); + else if (t === 'project') score += scoreProjectItem(c); + else if (t === 'tribe') score += 6 + Math.min(10, Array.isArray(c.members) ? c.members.length * 0.5 : 0); + else if (t === 'event') score += 4 + Math.min(10, Array.isArray(c.attendees) ? c.attendees.length : 0); + else if (t === 'task') score += 3 + priorityBump(c.priority); + else if (t === 'report') score += 4 + (Array.isArray(c.confirmations) ? c.confirmations.length : 0) + severityBump(c.severity); + else if (t === 'curriculum') score += 5; + else if (t === 'aiexchange') score += Array.isArray(c.ctx) ? Math.min(10, c.ctx.length) : 0; + else if (t === 'job') score += 4 + (Array.isArray(c.subscribers) ? c.subscribers.length : 0); + else if (t === 'bankclaim') score += Math.min(20, Math.log(1 + Math.max(0, Number(c.amount) || 0)) * 5); + else if (t === 'bankwallet') score += 2; + else if (t === 'transfer') score += 1; + else if (t === 'about') score += 1; + else if (t === 'contact') score += 1; + else if (t === 'pub') score += 1; + else if (t === 'parliamentcandidature' || rawType === 'parliamentcandidature') score += 12; + else if (t === 'parliamentterm' || rawType === 'parliamentterm') score += 25; + else if (t === 'parliamentproposal' || rawType === 'parliamentproposal') score += 8; + else if (t === 'parliamentlaw' || rawType === 'parliamentlaw') score += 16; + else if (t === 'parliamentrevocation' || rawType === 'parliamentrevocation') score += 10; + else if (t === 'courts_case' || t === 'courtscase' || rawType === 'courts_case') score += 4; + else if (t === 'courts_evidence' || t === 'courtsevidence' || rawType === 'courts_evidence') score += 3; + else if (t === 'courts_answer' || t === 'courtsanswer' || rawType === 'courts_answer') score += 4; + else if (t === 'courts_verdict' || t === 'courtsverdict' || rawType === 'courts_verdict') score += 10; + else if (t === 'courts_settlement' || t === 'courtssettlement' || rawType === 'courts_settlement') score += 8; + else if (t === 'courts_nomination' || t === 'courtsnomination' || rawType === 'courts_nomination') score += 6; + else if (t === 'courts_nom_vote' || t === 'courtsnomvote' || rawType === 'courts_nom_vote') score += 3; + else if (t === 'courts_public_pref' || t === 'courtspublicpref' || rawType === 'courts_public_pref') score += 1; + else if (t === 'courts_mediators' || t === 'courtsmediators' || rawType === 'courts_mediators') score += 6; + else if (t === 'courts_open_support' || t === 'courtsopensupport' || rawType === 'courts_open_support') score += 2; + else if (t === 'courts_verdict_vote' || t === 'courtsverdictvote' || rawType === 'courts_verdict_vote') score += 3; + else if (t === 'courts_judge_assign' || t === 'courtsjudgeassign' || rawType === 'courts_judge_assign') score += 5; + } + return Math.max(0, Math.round(score)); + }; + const getStats = async (filter = 'ALL') => { const ssbClient = await openSsb(); const userId = ssbClient.id; @@ -211,21 +345,20 @@ module.exports = ({ cooler }) => { opinions[t] = vals.filter(e => Array.isArray(e.opinions_inhabitants) && e.opinions_inhabitants.length > 0).length || 0; } - const karmaMsgsAll = allMsgs.filter(m => m.value?.content?.type === 'karmaScore' && Number.isFinite(Number(m.value.content.karmaScore))); if (filter === 'MINE') { - const mine = karmaMsgsAll.filter(m => m.value.author === userId).sort((a, b) => (b.value.timestamp || 0) - (a.value.timestamp || 0)); - const myKarma = mine.length ? Number(mine[0].value.content.karmaScore) || 0 : 0; - content['karmaScore'] = myKarma; + const myMsgs = allMsgs.filter(m => m.value.author === userId); + content['karmaScore'] = computeKarmaFromMsgs(myMsgs); } else { - const latestByAuthor = new Map(); - for (const m of karmaMsgsAll) { + const msgsByAuthor = new Map(); + for (const m of allMsgs) { const a = m.value.author; - const ts = m.value.timestamp || 0; - const k = Number(m.value.content.karmaScore) || 0; - const prev = latestByAuthor.get(a); - if (!prev || ts > prev.ts) latestByAuthor.set(a, { ts, k }); + if (!msgsByAuthor.has(a)) msgsByAuthor.set(a, []); + msgsByAuthor.get(a).push(m); + } + let sumKarma = 0; + for (const authorMsgs of msgsByAuthor.values()) { + sumKarma += computeKarmaFromMsgs(authorMsgs); } - const sumKarma = Array.from(latestByAuthor.values()).reduce((s, x) => s + x.k, 0); content['karmaScore'] = sumKarma; } diff --git a/nodejs-project/nodejs-project/src/models/tags_model.js b/nodejs-project/nodejs-project/src/models/tags_model.js index 3228b9ec..10b862ca 100644 --- a/nodejs-project/nodejs-project/src/models/tags_model.js +++ b/nodejs-project/nodejs-project/src/models/tags_model.js @@ -2,7 +2,7 @@ const pull = require('../server/node_modules/pull-stream'); const { getConfig } = require('../configs/config-manager.js'); const logLimit = getConfig().ssbLogStream?.limit || 1000; -module.exports = ({ cooler }) => { +module.exports = ({ cooler, padsModel, tribesModel }) => { let ssb; const openSsb = async () => { if (!ssb) ssb = await cooler.open(); @@ -130,11 +130,25 @@ module.exports = ({ cooler }) => { for (const oldId of replacesMap.keys()) latestByKey.delete(oldId); + const anonTribeIds = new Set(); + if (tribesModel) { + const allTribes = await tribesModel.listAll().catch(() => []); + for (const tribe of allTribes) { + if (tribe.isAnonymous === true) anonTribeIds.add(tribe.id); + } + } + let filtered = Array.from(latestByKey.values()).filter(msg => { const c = msg?.value?.content; if (!c || c.type === 'tombstone') return false; if (tombstoned.has(msg.key)) return false; - return Array.isArray(c.tags) && c.tags.filter(Boolean).length > 0; + if (!Array.isArray(c.tags) || !c.tags.filter(Boolean).length) return false; + if (c.tribeId && anonTribeIds.has(c.tribeId)) return false; + if (c.type === 'event' && c.isPublic === 'private') return false; + if (c.type === 'task' && String(c.isPublic).toUpperCase() === 'PRIVATE') return false; + if ((c.type === 'chat' || c.type === 'pad') && c.status === 'INVITE-ONLY') return false; + if (c.type === 'shop' && c.visibility === 'CLOSED') return false; + return true; }); filtered = dedupeKeepLatest(filtered); @@ -152,6 +166,23 @@ module.exports = ({ cooler }) => { } } + if (padsModel) { + const ssbClient2 = await openSsb(); + const viewerId = ssbClient2.id; + const pads = await padsModel.listAll({ filter: 'all', viewerId }).catch(() => []); + for (const pad of pads) { + if (pad.status === 'INVITE-ONLY' && pad.author !== viewerId && !(Array.isArray(pad.members) && pad.members.includes(viewerId))) continue; + if (!Array.isArray(pad.tags)) continue; + const uniquePadTags = new Set(pad.tags.map(tagKey).filter(Boolean)); + for (const k of uniquePadTags) { + const display = normalizeTag(pad.tags.find(t => tagKey(t) === k) || k) || k; + const prev = counts.get(k); + if (!prev) counts.set(k, { name: display, count: 1 }); + else counts.set(k, { name: prev.name || display, count: prev.count + 1 }); + } + } + } + let tags = Array.from(counts.values()); if (filter === 'top') { diff --git a/nodejs-project/nodejs-project/src/models/torrents_model.js b/nodejs-project/nodejs-project/src/models/torrents_model.js new file mode 100644 index 00000000..8b28720c --- /dev/null +++ b/nodejs-project/nodejs-project/src/models/torrents_model.js @@ -0,0 +1,323 @@ +const pull = require("../server/node_modules/pull-stream"); +const { getConfig } = require("../configs/config-manager.js"); +const categories = require("../backend/opinion_categories"); + +const logLimit = getConfig().ssbLogStream?.limit || 1000; + +const safeArr = (v) => (Array.isArray(v) ? v : []); + +const normalizeTags = (raw) => { + if (raw === undefined || raw === null) return undefined; + if (Array.isArray(raw)) return raw.map((t) => String(t || "").trim()).filter(Boolean); + return String(raw).split(",").map((t) => t.trim()).filter(Boolean); +}; + +const parseBlobId = (blobMarkdown) => { + const s = String(blobMarkdown || ""); + const match = s.match(/\((&[^)]+\.sha256)\)/); + if (match) return match[1]; + const fallback = s.match(/\(([^)]+)\)/g); + return fallback ? fallback[fallback.length - 1].slice(1, -1) : s || null; +}; + +const voteSum = (opinions = {}) => + Object.values(opinions || {}).reduce((s, n) => s + (Number(n) || 0), 0); + +module.exports = ({ cooler }) => { + let ssb; + + const openSsb = async () => { + if (!ssb) ssb = await cooler.open(); + return ssb; + }; + + const getAllMessages = async (ssbClient) => + new Promise((resolve, reject) => { + pull(ssbClient.createLogStream({ limit: logLimit }), pull.collect((err, msgs) => (err ? reject(err) : resolve(msgs)))); + }); + + const getMsg = async (ssbClient, key) => + new Promise((resolve, reject) => { + ssbClient.get(key, (err, msg) => (err ? reject(err) : resolve(msg))); + }); + + const buildIndex = (messages) => { + const tomb = new Set(); + const nodes = new Map(); + const parent = new Map(); + const child = new Map(); + + for (const m of messages) { + const k = m.key; + const v = m.value || {}; + const c = v.content; + if (!c) continue; + + if (c.type === "tombstone" && c.target) { + tomb.add(c.target); + continue; + } + + if (c.type !== "torrent") continue; + + const ts = v.timestamp || m.timestamp || 0; + nodes.set(k, { key: k, ts, c }); + + if (c.replaces) { + parent.set(k, c.replaces); + child.set(c.replaces, k); + } + } + + const rootOf = (id) => { + let cur = id; + while (parent.has(cur)) cur = parent.get(cur); + return cur; + }; + + const tipOf = (id) => { + let cur = id; + while (child.has(cur)) cur = child.get(cur); + return cur; + }; + + const roots = new Set(); + for (const id of nodes.keys()) roots.add(rootOf(id)); + + const tipByRoot = new Map(); + for (const r of roots) tipByRoot.set(r, tipOf(r)); + + const forward = new Map(); + for (const [newId, oldId] of parent.entries()) forward.set(oldId, newId); + + return { tomb, nodes, parent, child, rootOf, tipOf, tipByRoot, forward }; + }; + + const buildTorrent = (node, rootId, viewerId) => { + const c = node.c || {}; + const voters = safeArr(c.opinions_inhabitants); + return { + key: node.key, + rootId, + url: c.url, + createdAt: c.createdAt || new Date(node.ts).toISOString(), + updatedAt: c.updatedAt || null, + tags: safeArr(c.tags), + author: c.author, + title: c.title || "", + description: c.description || "", + size: c.size || 0, + opinions: c.opinions || {}, + opinions_inhabitants: voters, + hasVoted: viewerId ? voters.includes(viewerId) : false + }; + }; + + return { + type: "torrent", + + async resolveCurrentId(id) { + const ssbClient = await openSsb(); + const messages = await getAllMessages(ssbClient); + const idx = buildIndex(messages); + + let tip = id; + while (idx.forward.has(tip)) tip = idx.forward.get(tip); + if (idx.tomb.has(tip)) throw new Error("Torrent not found"); + return tip; + }, + + async resolveRootId(id) { + const ssbClient = await openSsb(); + const messages = await getAllMessages(ssbClient); + const idx = buildIndex(messages); + + let tip = id; + while (idx.forward.has(tip)) tip = idx.forward.get(tip); + if (idx.tomb.has(tip)) throw new Error("Torrent not found"); + + let root = tip; + while (idx.parent.has(root)) root = idx.parent.get(root); + return root; + }, + + async createTorrent(blobMarkdown, tagsRaw, title, description, size) { + const ssbClient = await openSsb(); + const blobId = parseBlobId(blobMarkdown); + const tags = normalizeTags(tagsRaw) || []; + const now = new Date().toISOString(); + + const content = { + type: "torrent", + url: blobId, + createdAt: now, + updatedAt: null, + author: ssbClient.id, + tags, + title: title || "", + description: description || "", + size: Number(size) || 0, + opinions: {}, + opinions_inhabitants: [] + }; + + return new Promise((resolve, reject) => { + ssbClient.publish(content, (err, res) => (err ? reject(err) : resolve(res))); + }); + }, + + async updateTorrentById(id, blobMarkdown, tagsRaw, title, description) { + const ssbClient = await openSsb(); + const userId = ssbClient.id; + const tipId = await this.resolveCurrentId(id); + const oldMsg = await getMsg(ssbClient, tipId); + + if (!oldMsg || oldMsg.content?.type !== "torrent") throw new Error("Torrent not found"); + if (Object.keys(oldMsg.content.opinions || {}).length > 0) throw new Error("Cannot edit torrent after it has received opinions."); + if (oldMsg.content.author !== userId) throw new Error("Not the author"); + + const tags = tagsRaw !== undefined ? normalizeTags(tagsRaw) || [] : safeArr(oldMsg.content.tags); + const blobId = blobMarkdown ? parseBlobId(blobMarkdown) : null; + const now = new Date().toISOString(); + + const updated = { + ...oldMsg.content, + replaces: tipId, + url: blobId || oldMsg.content.url, + tags, + title: title !== undefined ? title || "" : oldMsg.content.title || "", + description: description !== undefined ? description || "" : oldMsg.content.description || "", + createdAt: oldMsg.content.createdAt, + updatedAt: now + }; + + const tombstone = { type: "tombstone", target: tipId, deletedAt: now, author: userId }; + await new Promise((res, rej) => ssbClient.publish(tombstone, (e) => (e ? rej(e) : res()))); + + return new Promise((resolve, reject) => { + ssbClient.publish(updated, (err, result) => (err ? reject(err) : resolve(result))); + }); + }, + + async deleteTorrentById(id) { + const ssbClient = await openSsb(); + const userId = ssbClient.id; + const tipId = await this.resolveCurrentId(id); + const msg = await getMsg(ssbClient, tipId); + + if (!msg || msg.content?.type !== "torrent") throw new Error("Torrent not found"); + if (msg.content.author !== userId) throw new Error("Not the author"); + + const tombstone = { type: "tombstone", target: tipId, deletedAt: new Date().toISOString(), author: userId }; + + return new Promise((resolve, reject) => { + ssbClient.publish(tombstone, (err, res) => (err ? reject(err) : resolve(res))); + }); + }, + + async listAll(filterOrOpts = "all", maybeOpts = {}) { + const ssbClient = await openSsb(); + + const opts = typeof filterOrOpts === "object" ? filterOrOpts : maybeOpts || {}; + const filter = (typeof filterOrOpts === "string" ? filterOrOpts : opts.filter || "all") || "all"; + const q = String(opts.q || "").trim().toLowerCase(); + const sort = String(opts.sort || "recent").trim(); + const viewerId = opts.viewerId || ssbClient.id; + + const messages = await getAllMessages(ssbClient); + const idx = buildIndex(messages); + + const items = []; + for (const [rootId, tipId] of idx.tipByRoot.entries()) { + if (idx.tomb.has(tipId)) continue; + const node = idx.nodes.get(tipId); + if (!node) continue; + items.push(buildTorrent(node, rootId, viewerId)); + } + + let list = items; + const now = Date.now(); + + if (filter === "mine") list = list.filter((a) => String(a.author) === String(viewerId)); + else if (filter === "recent") list = list.filter((a) => new Date(a.createdAt).getTime() >= now - 86400000); + else if (filter === "top") { + list = list.slice().sort((a, b) => voteSum(b.opinions) - voteSum(a.opinions) || new Date(b.createdAt) - new Date(a.createdAt)); + } + + if (q) { + list = list.filter((a) => { + const title = String(a.title || "").toLowerCase(); + const desc = String(a.description || "").toLowerCase(); + const tags = safeArr(a.tags).join(" ").toLowerCase(); + const author = String(a.author || "").toLowerCase(); + return title.includes(q) || desc.includes(q) || tags.includes(q) || author.includes(q); + }); + } + + if (sort === "top") { + list = list.slice().sort((a, b) => voteSum(b.opinions) - voteSum(a.opinions) || new Date(b.createdAt) - new Date(a.createdAt)); + } else if (sort === "oldest") { + list = list.slice().sort((a, b) => new Date(a.createdAt) - new Date(b.createdAt)); + } else { + list = list.slice().sort((a, b) => new Date(b.createdAt) - new Date(a.createdAt)); + } + + return list; + }, + + async getTorrentById(id, viewerId = null) { + const ssbClient = await openSsb(); + const viewer = viewerId || ssbClient.id; + const messages = await getAllMessages(ssbClient); + const idx = buildIndex(messages); + + let tip = id; + while (idx.forward.has(tip)) tip = idx.forward.get(tip); + if (idx.tomb.has(tip)) throw new Error("Torrent not found"); + + let root = tip; + while (idx.parent.has(root)) root = idx.parent.get(root); + + const node = idx.nodes.get(tip); + if (node) return buildTorrent(node, root, viewer); + + const msg = await getMsg(ssbClient, tip); + if (!msg || msg.content?.type !== "torrent") throw new Error("Torrent not found"); + return buildTorrent({ key: tip, ts: msg.timestamp || 0, c: msg.content }, root, viewer); + }, + + async createOpinion(id, category) { + const ssbClient = await openSsb(); + const userId = ssbClient.id; + + if (!categories.includes(category)) throw new Error("Invalid voting category"); + + const tipId = await this.resolveCurrentId(id); + const msg = await getMsg(ssbClient, tipId); + + if (!msg || msg.content?.type !== "torrent") throw new Error("Torrent not found"); + + const voters = safeArr(msg.content.opinions_inhabitants); + if (voters.includes(userId)) throw new Error("Already voted"); + + const now = new Date().toISOString(); + const updated = { + ...msg.content, + replaces: tipId, + opinions: { + ...msg.content.opinions, + [category]: (msg.content.opinions?.[category] || 0) + 1 + }, + opinions_inhabitants: voters.concat(userId), + updatedAt: now + }; + + const tombstone = { type: "tombstone", target: tipId, deletedAt: now, author: userId }; + await new Promise((res, rej) => ssbClient.publish(tombstone, (e) => (e ? rej(e) : res()))); + + return new Promise((resolve, reject) => { + ssbClient.publish(updated, (err, result) => (err ? reject(err) : resolve(result))); + }); + } + }; +}; diff --git a/nodejs-project/nodejs-project/src/models/transfers_model.js b/nodejs-project/nodejs-project/src/models/transfers_model.js index 3903949a..9a702a07 100644 --- a/nodejs-project/nodejs-project/src/models/transfers_model.js +++ b/nodejs-project/nodejs-project/src/models/transfers_model.js @@ -39,6 +39,9 @@ module.exports = ({ cooler }) => { const nodes = new Map() const parent = new Map() const child = new Map() + const ubiByPub = new Map() + const ubiByUser = new Map() + const ubiClaimNodes = [] for (const m of messages) { const k = m.key @@ -57,7 +60,46 @@ module.exports = ({ cooler }) => { parent.set(k, c.replaces) child.set(c.replaces, k) } + const tags = Array.isArray(c.tags) ? c.tags.map(t => String(t).toUpperCase()) : [] + if (tags.includes("UBI") && c.to && c.concept) { + const key = `${c.to}::${c.concept}` + if (v.author === c.from) ubiByPub.set(key, k) + else ubiByUser.set(key, k) + } } + + if (c.type === "ubiClaim") { + ubiClaimNodes.push({ k, v, c, ts: v.timestamp || m.timestamp || 0 }) + } + } + + for (const [key, userMsgKey] of ubiByUser.entries()) { + if (ubiByPub.has(key)) tomb.add(userMsgKey) + } + + for (const { k, v, c, ts } of ubiClaimNodes) { + if (tomb.has(k)) continue + const claimantId = v.author + const epochId = c.epochId || "" + const concept = `UBI ${epochId} ${claimantId}`.trim() + const key = `${claimantId}::${concept}` + if (ubiByPub.has(key) || ubiByUser.has(key)) continue + const synthetic = { + type: "transfer", + from: c.pubId || "", + to: claimantId, + concept, + amount: String(c.amount || 0), + createdAt: c.claimedAt || new Date(ts).toISOString(), + updatedAt: c.claimedAt || new Date(ts).toISOString(), + deadline: null, + confirmedBy: [c.pubId || ""].filter(Boolean), + status: "UNCONFIRMED", + tags: ["UBI", "PENDING"], + opinions: {}, + opinions_inhabitants: [] + } + nodes.set(k, { key: k, ts, c: synthetic, author: claimantId }) } const rootOf = (id) => { @@ -223,10 +265,38 @@ module.exports = ({ cooler }) => { async confirmTransferById(id) { const ssbClient = await openSsb() const userId = ssbClient.id - const tipId = await this.resolveCurrentId(id) + let tipId + try { tipId = await this.resolveCurrentId(id) } catch (_) { tipId = id } const msg = await getMsg(ssbClient, tipId) - if (!msg?.content || msg.content.type !== "transfer") throw new Error("Not found") + if (!msg?.content) throw new Error("Not found") + + if (msg.content.type === "ubiClaim") { + const c = msg.content + const epochId = c.epochId || "" + const pubId = c.pubId || "" + if (!pubId) throw new Error("Not found") + if (pubId === userId) throw new Error("Cannot confirm own claim") + const now = new Date().toISOString() + const transferContent = { + type: "transfer", + from: pubId, + to: userId, + concept: `UBI ${epochId} ${userId}`, + amount: String(c.amount || 0), + createdAt: c.claimedAt || now, + updatedAt: now, + deadline: null, + confirmedBy: [pubId, userId], + status: "CLOSED", + tags: ["UBI"], + opinions: {}, + opinions_inhabitants: [] + } + return new Promise((resolve, reject) => ssbClient.publish(transferContent, (e, r) => e ? reject(e) : resolve(r))) + } + + if (msg.content.type !== "transfer") throw new Error("Not found") const t = msg.content const status = deriveStatus(t) diff --git a/nodejs-project/nodejs-project/src/models/trending_model.js b/nodejs-project/nodejs-project/src/models/trending_model.js index b3ac2b9f..c6bef88e 100644 --- a/nodejs-project/nodejs-project/src/models/trending_model.js +++ b/nodejs-project/nodejs-project/src/models/trending_model.js @@ -18,7 +18,7 @@ module.exports = ({ cooler }) => { const types = [ 'bookmark', 'votes', 'feed', - 'image', 'audio', 'video', 'document', 'transfer' + 'image', 'audio', 'video', 'document', 'torrent', 'transfer' ]; const categories = opinionCategories; @@ -45,6 +45,7 @@ module.exports = ({ cooler }) => { if (c.type === 'tombstone' && c.target) { tombstoned.add(c.target); + itemsById.delete(c.target); continue; } @@ -52,13 +53,18 @@ module.exports = ({ cooler }) => { if (c.replaces) replaces.set(c.replaces, k); itemsById.set(k, m); } + + if (c.type === 'feed' && !tombstoned.has(k) && !itemsById.has(k)) { + if (c.replaces) replaces.set(c.replaces, k); + itemsById.set(k, m); + } } for (const replacedId of replaces.keys()) { itemsById.delete(replacedId); } - let rawItems = Array.from(itemsById.values()); + let rawItems = Array.from(itemsById.values()).filter(m => types.includes(m.value?.content?.type)); const blobTypes = ['document', 'image', 'audio', 'video']; let items = await Promise.all( diff --git a/nodejs-project/nodejs-project/src/models/tribe_crypto.js b/nodejs-project/nodejs-project/src/models/tribe_crypto.js new file mode 100644 index 00000000..25076674 --- /dev/null +++ b/nodejs-project/nodejs-project/src/models/tribe_crypto.js @@ -0,0 +1,181 @@ +const crypto = require('crypto'); +const fs = require('fs'); +const path = require('path'); + +const SENSITIVE_FIELDS = [ + 'title', 'description', 'location', 'price', 'salary', 'options', 'votes', + 'category', 'tags', 'image', 'url', 'attendees', 'assignees', 'deadline', + 'goal', 'funded', 'refeeds', 'refeeds_inhabitants', 'opinions', + 'opinions_inhabitants', 'parentId', 'status', 'priority', 'date', 'mediaType' +]; + +const INVITE_SALT = 'SolarNET.HuB'; + +module.exports = (configPath) => { + const keyringPath = path.join(configPath, 'tribe-keys.json'); + let keyring = {}; + + const loadKeyring = () => { + try { + keyring = JSON.parse(fs.readFileSync(keyringPath, 'utf8')); + } catch (e) { + if (e.code !== 'ENOENT') throw e; + keyring = {}; + } + return keyring; + }; + + const saveKeyring = () => { + fs.writeFileSync(keyringPath, JSON.stringify(keyring, null, 2), 'utf8'); + }; + + const generateTribeKey = () => crypto.randomBytes(32).toString('hex'); + + const getKey = (tribeRootId) => { + const entry = keyring[tribeRootId]; + return entry && entry.keys && entry.keys[0] ? entry.keys[0] : null; + }; + + const getKeys = (tribeRootId) => { + const entry = keyring[tribeRootId]; + return entry && entry.keys ? entry.keys : []; + }; + + const getGen = (tribeRootId) => { + const entry = keyring[tribeRootId]; + return entry ? entry.gen || 1 : 0; + }; + + const setKey = (tribeRootId, keyHex, gen) => { + keyring[tribeRootId] = { keys: [keyHex], gen: gen || 1 }; + saveKeyring(); + }; + + const addNewKey = (tribeRootId, newKeyHex) => { + const entry = keyring[tribeRootId] || { keys: [], gen: 0 }; + entry.keys.unshift(newKeyHex); + entry.gen = (entry.gen || 0) + 1; + keyring[tribeRootId] = entry; + saveKeyring(); + return entry.gen; + }; + + const encryptWithKey = (plaintext, keyHex) => { + const key = Buffer.from(keyHex, 'hex'); + const iv = crypto.randomBytes(12); + const cipher = crypto.createCipheriv('aes-256-gcm', key, iv); + const enc = Buffer.concat([cipher.update(plaintext, 'utf8'), cipher.final()]); + const authTag = cipher.getAuthTag(); + return iv.toString('hex') + authTag.toString('hex') + enc.toString('hex'); + }; + + const decryptWithKey = (encrypted, keyHex) => { + const key = Buffer.from(keyHex, 'hex'); + const iv = Buffer.from(encrypted.slice(0, 24), 'hex'); + const authTag = Buffer.from(encrypted.slice(24, 56), 'hex'); + const ciphertext = Buffer.from(encrypted.slice(56), 'hex'); + const decipher = crypto.createDecipheriv('aes-256-gcm', key, iv); + decipher.setAuthTag(authTag); + return Buffer.concat([decipher.update(ciphertext), decipher.final()]).toString('utf8'); + }; + + const encryptForInvite = (tribeKeyHex, inviteCode) => { + const derived = crypto.scryptSync(inviteCode, INVITE_SALT, 32); + return encryptWithKey(tribeKeyHex, derived.toString('hex')); + }; + + const decryptFromInvite = (encryptedKey, inviteCode) => { + const derived = crypto.scryptSync(inviteCode, INVITE_SALT, 32); + return decryptWithKey(encryptedKey, derived.toString('hex')); + }; + + const encryptChain = (plaintext, keyChain) => { + let data = plaintext; + for (const keyHex of keyChain) { + data = encryptWithKey(data, keyHex); + } + return data; + }; + + const decryptChain = (encrypted, keyChain) => { + const reversed = [...keyChain].reverse(); + let data = encrypted; + for (const keyHex of reversed) { + data = decryptWithKey(data, keyHex); + } + return data; + }; + + const encryptContent = (content, keyChain) => { + const payload = {}; + for (const field of SENSITIVE_FIELDS) { + if (content[field] !== undefined) { + payload[field] = content[field]; + } + } + const plaintext = JSON.stringify(payload); + const encryptedPayload = encryptChain(plaintext, keyChain); + const result = {}; + for (const [k, v] of Object.entries(content)) { + if (!SENSITIVE_FIELDS.includes(k)) result[k] = v; + } + result.encryptedPayload = encryptedPayload; + return result; + }; + + const decryptContent = (content, keyChainSets) => { + if (!content.encryptedPayload) return content; + for (const keyChain of keyChainSets) { + try { + const plaintext = decryptChain(content.encryptedPayload, keyChain); + const payload = JSON.parse(plaintext); + const result = { ...content }; + delete result.encryptedPayload; + Object.assign(result, payload); + return result; + } catch (e) { + continue; + } + } + return { ...content, encrypted: true }; + }; + + const boxKeyForMember = (tribeKeyHex, memberFeedId, ssbKeys) => { + return ssbKeys.box(tribeKeyHex, [memberFeedId]); + }; + + const unboxKeyFromMember = (boxed, localKeypair, ssbKeys) => { + return ssbKeys.unbox(boxed, localKeypair); + }; + + const buildKeyChainSets = (ancestryRootIds) => { + if (ancestryRootIds.length === 0) return []; + if (ancestryRootIds.length === 1) { + const keys = getKeys(ancestryRootIds[0]); + return keys.map(k => [k]); + } + const ownKeys = getKeys(ancestryRootIds[0]); + const parentSets = buildKeyChainSets(ancestryRootIds.slice(1)); + const sets = []; + for (const ownKey of ownKeys) { + for (const parentChain of parentSets) { + sets.push([ownKey, ...parentChain]); + } + } + return sets; + }; + + loadKeyring(); + + return { + SENSITIVE_FIELDS, + loadKeyring, saveKeyring, + generateTribeKey, getKey, getKeys, getGen, setKey, addNewKey, + encryptWithKey, decryptWithKey, + encryptForInvite, decryptFromInvite, + encryptChain, decryptChain, + encryptContent, decryptContent, + boxKeyForMember, unboxKeyFromMember, + buildKeyChainSets, + }; +}; diff --git a/nodejs-project/nodejs-project/src/models/videos_model.js b/nodejs-project/nodejs-project/src/models/videos_model.js index df6c8a02..e9b23baf 100644 --- a/nodejs-project/nodejs-project/src/models/videos_model.js +++ b/nodejs-project/nodejs-project/src/models/videos_model.js @@ -107,6 +107,7 @@ module.exports = ({ cooler }) => { author: c.author, title: c.title || "", description: c.description || "", + mapUrl: c.mapUrl || "", opinions: c.opinions || {}, opinions_inhabitants: voters, hasVoted: viewerId ? voters.includes(viewerId) : false @@ -141,7 +142,7 @@ module.exports = ({ cooler }) => { return root; }, - async createVideo(blobMarkdown, tagsRaw, title, description) { + async createVideo(blobMarkdown, tagsRaw, title, description, mapUrl) { const ssbClient = await openSsb(); const blobId = parseBlobId(blobMarkdown); const tags = normalizeTags(tagsRaw) || []; @@ -156,6 +157,7 @@ module.exports = ({ cooler }) => { tags, title: title || "", description: description || "", + mapUrl: mapUrl || "", opinions: {}, opinions_inhabitants: [] }; @@ -165,7 +167,7 @@ module.exports = ({ cooler }) => { }); }, - async updateVideoById(id, blobMarkdown, tagsRaw, title, description) { + async updateVideoById(id, blobMarkdown, tagsRaw, title, description, mapUrl) { const ssbClient = await openSsb(); const userId = ssbClient.id; const tipId = await this.resolveCurrentId(id); @@ -186,6 +188,7 @@ module.exports = ({ cooler }) => { tags, title: title !== undefined ? title || "" : oldMsg.content.title || "", description: description !== undefined ? description || "" : oldMsg.content.description || "", + mapUrl: mapUrl !== undefined ? mapUrl || "" : oldMsg.content.mapUrl || "", createdAt: oldMsg.content.createdAt, updatedAt: now }; diff --git a/nodejs-project/nodejs-project/src/models/viewer_filters.js b/nodejs-project/nodejs-project/src/models/viewer_filters.js new file mode 100644 index 00000000..cef023e9 --- /dev/null +++ b/nodejs-project/nodejs-project/src/models/viewer_filters.js @@ -0,0 +1,130 @@ +const fs = require('fs'); +const path = require('path'); +const { getConfig } = require('../configs/config-manager.js'); + +const COOLDOWN_MS = 5 * 60 * 1000; +const statePath = path.join(__dirname, '../configs/follow_state.json'); + +const readJson = (p, fallback) => { + try { return JSON.parse(fs.readFileSync(p, 'utf8')); } catch (e) { return fallback; } +}; +const writeJson = (p, data) => { + try { fs.writeFileSync(p, JSON.stringify(data, null, 2)); } catch (e) {} +}; + +const loadState = () => { + const s = readJson(statePath, { pending: [], accepted: [], lastAcceptMs: 0 }); + if (!Array.isArray(s.pending)) s.pending = []; + if (!Array.isArray(s.accepted)) s.accepted = []; + if (typeof s.lastAcceptMs !== 'number') s.lastAcceptMs = 0; + return s; +}; +const saveState = (s) => writeJson(statePath, s); + +const wishMutualsOnly = () => getConfig().wish === 'mutuals'; +const pmMutualsOnly = () => getConfig().pmVisibility === 'mutuals'; +const isFrictionActive = () => wishMutualsOnly() || pmMutualsOnly(); + +const listPending = () => loadState().pending; +const enqueuePending = (followerId, extra = {}) => { + if (!followerId) return false; + const s = loadState(); + if (s.pending.some(x => x.followerId === followerId)) return false; + s.pending.push({ followerId, at: new Date().toISOString(), ...extra }); + saveState(s); + return true; +}; +const removePending = (followerId) => { + const s = loadState(); + s.pending = s.pending.filter(x => x.followerId !== followerId); + saveState(s); +}; + +const loadAccepted = () => loadState().accepted; +const isAccepted = (followerId) => loadState().accepted.includes(followerId); +const addAccepted = (followerId) => { + if (!followerId) return; + const s = loadState(); + if (!s.accepted.includes(followerId)) { s.accepted.push(followerId); saveState(s); } +}; +const removeAccepted = (followerId) => { + const s = loadState(); + s.accepted = s.accepted.filter(x => x !== followerId); + saveState(s); +}; + +const canAutoAcceptNow = () => (Date.now() - loadState().lastAcceptMs) >= COOLDOWN_MS; +const markAutoAccept = () => { + const s = loadState(); + s.lastAcceptMs = Date.now(); + saveState(s); +}; + +const makeMutualCache = (friendModel) => { + const cache = new Map(); + const frictionActive = isFrictionActive(); + return async (otherId) => { + if (!otherId) return false; + if (cache.has(otherId)) return cache.get(otherId); + try { + const rel = await friendModel.getRelationship(otherId); + const basic = !!(rel && rel.following && rel.followsMe); + const mutual = frictionActive ? (basic && isAccepted(otherId)) : basic; + cache.set(otherId, mutual); + return mutual; + } catch (e) { + cache.set(otherId, false); + return false; + } + }; +}; + +const authorOf = (item) => { + if (!item) return null; + if (item.value && item.value.author) return item.value.author; + if (item.author) return item.author; + if (item.feed) return item.feed; + if (item.id && typeof item.id === 'string' && item.id.startsWith('@')) return item.id; + return null; +}; + +const applyMutualSupportFilter = async (items, viewerId, friendModel) => { + if (!wishMutualsOnly()) return items; + if (!Array.isArray(items)) return items; + const isMutual = makeMutualCache(friendModel); + const out = []; + for (const it of items) { + const a = authorOf(it); + if (!a || a === viewerId) { out.push(it); continue; } + if (await isMutual(a)) out.push(it); + } + return out; +}; + +const canSendPmTo = async (viewerId, recipientId, friendModel) => { + if (!pmMutualsOnly()) return { allowed: true }; + if (viewerId === recipientId) return { allowed: true }; + const isMutual = makeMutualCache(friendModel); + if (await isMutual(recipientId)) return { allowed: true }; + return { allowed: false, reason: 'non-mutual' }; +}; + +module.exports = { + COOLDOWN_MS, + wishMutualsOnly, + pmMutualsOnly, + isFrictionActive, + listPending, + enqueuePending, + removePending, + loadAccepted, + isAccepted, + addAccepted, + removeAccepted, + canAutoAcceptNow, + markAutoAccept, + makeMutualCache, + applyMutualSupportFilter, + canSendPmTo, + authorOf, +}; diff --git a/nodejs-project/nodejs-project/src/views/activity_view.js b/nodejs-project/nodejs-project/src/views/activity_view.js index 93bd685d..42627c7a 100644 --- a/nodejs-project/nodejs-project/src/views/activity_view.js +++ b/nodejs-project/nodejs-project/src/views/activity_view.js @@ -249,8 +249,6 @@ function renderActionCards(actions, userId, allActions) { if (!content || typeof content !== 'object') return false; if (content.type === 'tombstone') return false; if (content.type === 'post' && content.private === true) return false; - if (content.type === 'tribe' && content.isAnonymous === true) return false; - if (typeof content.type === 'string' && content.type.startsWith('tribe') && content.isAnonymous === true) return false; if (content.type === 'task' && content.isPublic === "PRIVATE") return false; if (content.type === 'event' && content.isPublic === "private") return false; if ((content.type === 'feed' || action.type === 'feed') && !isValidFeedText(content.text)) return false; @@ -294,7 +292,18 @@ function renderActionCards(actions, userId, allActions) { list.sort((a, b) => (a.ts || 0) - (b.ts || 0) || String(safeMsgId(a) || '').localeCompare(String(safeMsgId(b) || ''))); for (let i = 0; i < list.length; i++) { spreadOrdinalById.set(safeMsgId(list[i]), i + 1); - } + } + } + + const shopTitleById = new Map(); + for (const a of all) { + if (!a || a.type !== 'shop') continue; + const c = a.value?.content || a.content || {}; + const id = a.id || a.key || ''; + if (id && c.title) { + shopTitleById.set(id, c.title); + if (a.rootId) shopTitleById.set(a.rootId, c.title); + } } const cards = items.map(action => { @@ -318,14 +327,16 @@ function renderActionCards(actions, userId, allActions) { headerText = `[COURTS · ${finalSub.toUpperCase()}]`; } else if (type === 'taskAssignment') { headerText = `[${String(i18n.typeTask || 'TASK').toUpperCase()} · ASSIGNMENT]`; - } else if (type === 'tribeJoin') { - headerText = `[TRIBE · ${String(i18n.tribeActivityJoined || 'JOIN').toUpperCase()}]`; - } else if (type === 'tribeLeave') { - headerText = `[TRIBE · ${String(i18n.tribeActivityLeft || 'LEAVE').toUpperCase()}]`; - } else if (type === 'tribeFeedPost') { - headerText = `[TRIBE · FEED]`; - } else if (type === 'tribeFeedRefeed') { - headerText = `[TRIBE · REFEED]`; + } else if (type === 'shopProduct') { + headerText = `[SHOP · PRODUCT]`; + } else if (type === 'chat') { + headerText = `[CHAT \u00b7 NEW]`; + } else if (type === 'pad') { + headerText = `[PAD · ${String(i18n.padNew || 'NEW').toUpperCase()}]`; + } else if (type === 'ubiClaim') { + headerText = `[UBI · CLAIM]`; + } else if (type === 'ubiclaimresult') { + headerText = `[UBI · RESULT]`; } else { const typeLabel = i18n[`type${capitalize(type)}`] || type; headerText = `[${String(typeLabel).toUpperCase()}]`; @@ -424,6 +435,66 @@ function renderActionCards(actions, userId, allActions) { ); } + if (type === 'ubiClaim') { + const { pubId, amount, epochId, claimedAt } = content; + const amt = Number(amount || 0); + const inhabitantId = action.author || ''; + cardBody.push( + div({ class: 'card-section banking-ubi' }, + div({ class: 'card-field' }, + span({ class: 'card-label' }, i18n.bankUbiInhabitant + ':'), + span({ class: 'card-value' }, a({ href: `/author/${encodeURIComponent(inhabitantId)}`, class: 'user-link' }, inhabitantId)) + ), + pubId ? div({ class: 'card-field' }, + span({ class: 'card-label' }, i18n.bankUbiPub + ':'), + span({ class: 'card-value' }, a({ href: `/author/${encodeURIComponent(pubId)}`, class: 'user-link' }, pubId)) + ) : "", + div({ class: 'card-field' }, + span({ class: 'card-label' }, i18n.bankUbiClaimedAmount + ':'), + span({ class: 'card-value' }, `${amt.toFixed(6)} ECO`) + ), + epochId ? div({ class: 'card-field' }, + span({ class: 'card-label' }, i18n.bankEpochShort + ':'), + span({ class: 'card-value' }, epochId) + ) : "", + div({ class: 'card-field' }, + span({ class: 'card-label' }, i18n.status + ':'), + span({ class: 'card-value' }, 'UNCONFIRMED') + ), + claimedAt ? div({ class: 'card-field' }, + span({ class: 'card-label' }, i18n.date + ':'), + span({ class: 'card-value' }, moment(claimedAt).format('YYYY-MM-DD HH:mm:ss')) + ) : "" + ) + ); + } + + if (type === 'ubiclaimresult') { + const { txid, userId: inhabitantId, amount, epochId } = content; + const pubAuthor = action.author || action.value?.author || ''; + const amt = Number(amount || 0); + cardBody.push( + div({ class: 'card-section banking-ubi' }, + div({ class: 'card-field' }, + span({ class: 'card-label' }, i18n.bankUbiPub + ':'), + span({ class: 'card-value' }, pubAuthor) + ), + div({ class: 'card-field' }, + span({ class: 'card-label' }, i18n.bankUbiInhabitant + ':'), + span({ class: 'card-value' }, inhabitantId || '') + ), + div({ class: 'card-field' }, + span({ class: 'card-label' }, i18n.bankUbiClaimedAmount + ':'), + span({ class: 'card-value' }, `${amt.toFixed(6)} ECO`) + ), + txid ? div({ class: 'card-field' }, + span({ class: 'card-label' }, i18n.bankTx + ':'), + a({ href: `https://ecoin.03c8.net/blockexplorer/search?q=${txid}`, target: '_blank' }, txid) + ) : "" + ) + ); + } + if (type === 'pixelia') { const { author } = content; cardBody.push( @@ -461,41 +532,6 @@ function renderActionCards(actions, userId, allActions) { ) ); } - if (type === 'tribeJoin' || type === 'tribeLeave') { - const { tribeId, tribeTitle } = content || {}; - cardBody.push( - div({ class: 'card-section tribe' }, - h2({ class: 'tribe-title' }, - a({ href: `/tribe/${encodeURIComponent(tribeId || '')}`, class: 'user-link' }, tribeTitle || tribeId || '') - ) - ) - ); - } - - if (type === 'tribeFeedPost') { - const { tribeId, tribeTitle, text } = content || {}; - cardBody.push( - div({ class: 'card-section tribe' }, - h2({ class: 'tribe-title' }, - a({ href: `/tribe/${encodeURIComponent(tribeId || '')}`, class: 'user-link' }, tribeTitle || tribeId || '') - ), - text ? p({ class: 'post-text' }, ...renderUrl(text)) : '' - ) - ); - } - - if (type === 'tribeFeedRefeed') { - const { tribeId, tribeTitle, text } = content || {}; - cardBody.push( - div({ class: 'card-section tribe' }, - h2({ class: 'tribe-title' }, - a({ href: `/tribe/${encodeURIComponent(tribeId || '')}`, class: 'user-link' }, tribeTitle || tribeId || '') - ), - text ? p({ class: 'post-text' }, ...renderUrl(text)) : '' - ) - ); - } - if (type === 'curriculum') { const { author, name, description, photo, personalSkills, oasisSkills, educationalSkills, languages, professionalSkills, status, preferences, createdAt, updatedAt} = content; cardBody.push( @@ -553,7 +589,31 @@ function renderActionCards(actions, userId, allActions) { const { url } = content; cardBody.push( div({ class: 'card-section image' }, - img({ src: `/blob/${encodeURIComponent(url)}`, class: 'activity-image-thumb' }) + img({ src: `/blob/${encodeURIComponent(url)}`, class: 'post-image' }) + ) + ); + } + + if (type === 'map') { + const { lat, lng, mapType } = content; + cardBody.push( + div({ class: 'card-section map' }, + div({ class: 'map-card-info' }, + span({ class: 'map-type-badge' }, mapType || 'SINGLE'), + span({ class: 'map-coords' }, `${(parseFloat(lat) || 0).toFixed(4)}, ${(parseFloat(lng) || 0).toFixed(4)}`) + ), + content.description ? p({ class: 'map-description' }, content.description) : "" + ) + ); + } + + if (type === 'mapMarker') { + const { lat, lng, label, mapId } = content; + cardBody.push( + div({ class: 'card-section map' }, + span({ class: 'map-marker-dot' }, "●"), + span(label || i18n.mapMarkerDefault || 'Marker'), + span({ class: 'map-marker-coords' }, ` (${(parseFloat(lat) || 0).toFixed(2)}, ${(parseFloat(lng) || 0).toFixed(2)})`) ) ); } @@ -597,6 +657,18 @@ function renderActionCards(actions, userId, allActions) { ); } + if (type === 'torrent') { + const { title } = content; + cardBody.push( + div({ class: 'card-section' }, + title ? div({ class: 'card-field' }, + span({ class: 'card-label' }, (i18n.torrentTitleLabel || 'Title') + ':'), + span({ class: 'card-value' }, title) + ) : null + ) + ); + } + if (type === 'document') { const { url, title, key } = content; if (title && seenDocumentTitles.has(title.trim())) { @@ -1016,6 +1088,73 @@ function renderActionCards(actions, userId, allActions) { ); } + if (type === 'shop') { + const { title, shortDescription, description, visibility, location } = content; + const shopKey = action.id || action.key || ''; + const displayDesc = shortDescription || (description ? (description.length > 140 ? description.slice(0, 140) + "\u2026" : description) : ""); + cardBody.push( + div({ class: 'card-section shop' }, + div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.shopTitle || 'Shop') + ':'), span({ class: 'card-value' }, shopKey ? a({ href: `/shops/${encodeURIComponent(shopKey)}`, class: 'user-link' }, title || shopKey) : (title || ''))), + displayDesc ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.description || 'Description') + ':'), span({ class: 'card-value' }, displayDesc)) : "", + visibility ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.shopVisibility || 'Visibility') + ':'), span({ class: 'card-value' }, visibility)) : "", + location ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.shopLocation || 'Location') + ':'), span({ class: 'card-value' }, location)) : "" + ) + ); + } + + if (type === 'shopProduct') { + const { title, price, stock, shopId, image: prodImage } = content; + const resolvedShopTitle = shopId ? (shopTitleById.get(shopId) || null) : null; + const shopLabel = resolvedShopTitle || (shopId ? shopId.slice(0, 10) + '...' : ''); + const prodImageNode = renderMediaBlob(prodImage); + cardBody.push( + div({ class: 'card-section shop' }, + shopId ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.shopTitle || 'Shop') + ':'), span({ class: 'card-value' }, a({ href: `/shops/${encodeURIComponent(shopId)}`, class: 'user-link' }, shopLabel))) : '', + div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.shopProductTitle || 'Product') + ':'), span({ class: 'card-value' }, title || '')), + prodImageNode ? div({ class: 'card-field' }, prodImageNode) : '', + div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.shopProductPrice || 'Price') + ':'), span({ class: 'card-value' }, `${Number(price || 0).toFixed(6)} ECO`)), + div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.shopProductStock || 'Stock') + ':'), span({ class: 'card-value' }, String(stock || 0))) + ) + ); + } + + if (type === 'chat') { + const { title, description, image, category, status } = content; + const chatKey = action.id || action.key || ''; + const displayDesc = description ? (description.length > 140 ? description.slice(0, 140) + "\u2026" : description) : ""; + const chatImageNode = renderMediaBlob(image); + cardBody.push( + div({ class: 'card-section chat' }, + div({ class: 'card-field' }, span({ class: 'card-label' }, 'Chat:'), span({ class: 'card-value' }, chatKey ? a({ href: `/chats/${encodeURIComponent(chatKey)}`, class: 'user-link' }, title || chatKey) : (title || ''))), + displayDesc ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.chatDescription || 'Description') + ':'), span({ class: 'card-value' }, displayDesc)) : '', + category ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.chatCategoryLabel || 'Category') + ':'), span({ class: 'card-value' }, category)) : '', + status ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.chatStatus || 'Status') + ':'), span({ class: 'card-value' }, status)) : '' + ) + ); + } + + if (type === 'pad') { + const padKey = action.id || action.key || ''; + const padTitle = content.title || action.title || ''; + cardBody.push( + div({ class: 'card-section' }, + div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.padTitle || 'Pad') + ':'), span({ class: 'card-value' }, padKey ? a({ href: `/pads/${encodeURIComponent(padKey)}`, class: 'user-link' }, padTitle || padKey) : '')), + content.deadline ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.padDeadlineLabel || 'Deadline') + ':'), span({ class: 'card-value' }, content.deadline)) : '' + ) + ); + } + + if (type === 'calendar') { + const calKey = action.id || action.key || ''; + const calTitle = content.title || action.title || ''; + cardBody.push( + div({ class: 'card-section' }, + div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.calendarTitle || 'Calendar') + ':'), span({ class: 'card-value' }, calKey ? a({ href: `/calendars/${encodeURIComponent(calKey)}`, class: 'user-link' }, calTitle || calKey) : '')), + content.status ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.calendarStatusLabel || 'Status') + ':'), span({ class: 'card-value' }, content.status)) : '' + ) + ); + } + if (type === 'report') { const { title, confirmations, severity, status } = content; cardBody.push( @@ -1157,6 +1296,22 @@ function renderActionCards(actions, userId, allActions) { ); } + if (type === 'gameScore') { + const { game, score } = content; + cardBody.push( + div({ class: 'card-section ai-exchange' }, + game ? div({ class: 'card-field' }, + span({ class: 'card-label' }, (i18n.gamesTitle || 'Game') + ':'), + span({ class: 'card-value' }, String(game).toUpperCase()) + ) : null, + div({ class: 'card-field' }, + span({ class: 'card-label' }, (i18n.gamesHallScore || 'Score') + ':'), + span({ class: 'card-value' }, String(score || 0)) + ) + ) + ); + } + if (type === 'job') { const { title, job_type, tasks, location, vacants, salary, status, subscribers } = content; cardBody.push( @@ -1410,11 +1565,6 @@ function getViewDetailsAction(type, action) { case 'courtsSettlementAccepted':return `/courts?filter=actions`; case 'courtsNomination': return `/courts?filter=judges`; case 'courtsNominationVote': return `/courts?filter=judges`; - case 'tribeJoin': - case 'tribeLeave': - case 'tribeFeedPost': - case 'tribeFeedRefeed': - return `/tribe/${encodeURIComponent(action.content?.tribeId || '')}`; case 'spread': { const link = normalizeSpreadLink(action.content?.spreadTargetId || action.content?.vote?.link || ''); return link ? `/thread/${encodeURIComponent(link)}#${encodeURIComponent(link)}` : `/activity`; @@ -1427,9 +1577,12 @@ function getViewDetailsAction(type, action) { case 'tribe': return `/tribe/${id}`; case 'curriculum': return `/inhabitant/${encodeURIComponent(action.author)}`; case 'karmaScore': return `/author/${encodeURIComponent(action.author)}`; + case 'map': return `/maps/${id}`; + case 'mapMarker': return `/maps/${encodeURIComponent(action.content?.mapId || id)}`; case 'image': return `/images/${id}`; case 'audio': return `/audios/${id}`; case 'video': return `/videos/${id}`; + case 'torrent': return `/torrents/${id}`; case 'forum': return `/forum/${encodeURIComponent(action.content?.key || action.tipId || action.id)}`; case 'document': return `/documents/${id}`; case 'bookmark': return `/bookmarks/${id}`; @@ -1440,11 +1593,18 @@ function getViewDetailsAction(type, action) { case 'contact': return `/inhabitants`; case 'pub': return `/invites`; case 'market': return `/market/${id}`; + case 'shop': return `/shops/${id}`; + case 'shopProduct': return `/shops/product/${id}`; + case 'chat': return `/chats/${id}`; + case 'pad': return `/pads/${id}`; + case 'calendar': return `/calendars/${id}`; case 'job': return `/jobs/${id}`; case 'project': return `/projects/${id}`; case 'report': return `/reports/${id}`; case 'bankWallet': return `/wallet`; case 'bankClaim': return `/banking${action.content?.epochId ? `/epoch/${encodeURIComponent(action.content.epochId)}` : ''}`; + case 'ubiClaim': return action.content?.transferId ? `/transfers/${encodeURIComponent(action.content.transferId)}` : `/transfers?filter=ubi`; + case 'gameScore': return `/games?filter=scoring`; default: return `/activity`; } } @@ -1457,32 +1617,39 @@ exports.activityView = (actions, filter, userId, q = '') => { { type: 'recent', label: i18n.typeRecent }, { type: 'all', label: i18n.allButton }, { type: 'mine', label: i18n.mineButton }, - { type: 'banking', label: i18n.typeBanking }, - { type: 'market', label: i18n.typeMarket }, - { type: 'project', label: i18n.typeProject }, - { type: 'job', label: i18n.typeJob }, - { type: 'transfer', label: i18n.typeTransfer }, + { type: 'report', label: i18n.typeReport }, + { type: 'karmaScore',label: i18n.typeKarmaScore }, + { type: 'about', label: i18n.typeAbout }, + { type: 'tribe', label: i18n.typeTribe }, { type: 'parliament',label: i18n.typeParliament }, { type: 'courts', label: i18n.typeCourts }, { type: 'votes', label: i18n.typeVotes }, + { type: 'calendar', label: i18n.typeCalendar || 'Calendar' }, { type: 'event', label: i18n.typeEvent }, { type: 'task', label: i18n.typeTask }, - { type: 'report', label: i18n.typeReport }, - { type: 'tribe', label: i18n.typeTribe }, - { type: 'about', label: i18n.typeAbout }, - { type: 'curriculum',label: i18n.typeCurriculum }, - { type: 'karmaScore',label: i18n.typeKarmaScore }, { type: 'feed', label: i18n.typeFeed }, - { type: 'aiExchange',label: i18n.typeAiExchange }, { type: 'post', label: i18n.typePost }, - { type: 'spread', label: i18n.typeSpread || 'SPREAD' }, - { type: 'pixelia', label: i18n.typePixelia }, + { type: 'spread', label: i18n.typeSpread }, + { type: 'chat', label: i18n.typeChat }, + { type: 'pad', label: i18n.typePad }, { type: 'forum', label: i18n.typeForum }, + { type: 'map', label: i18n.typeMap }, + { type: 'banking', label: i18n.typeBanking }, + { type: 'market', label: i18n.typeMarket }, + { type: 'shop', label: i18n.typeShop }, + { type: 'project', label: i18n.typeProject }, + { type: 'job', label: i18n.typeJob }, + { type: 'curriculum',label: i18n.typeCurriculum }, + { type: 'transfer', label: i18n.typeTransfer }, + { type: 'aiExchange',label: i18n.typeAiExchange }, + { type: 'gameScore', label: i18n.typeGameScore }, + { type: 'pixelia', label: i18n.typePixelia }, + { type: 'audio', label: i18n.typeAudio }, { type: 'bookmark', label: i18n.typeBookmark }, { type: 'image', label: i18n.typeImage }, + { type: 'document', label: i18n.typeDocument }, { type: 'video', label: i18n.typeVideo }, - { type: 'audio', label: i18n.typeAudio }, - { type: 'document', label: i18n.typeDocument } + { type: 'torrent', label: i18n.typeTorrent } ]; let filteredActions; @@ -1492,13 +1659,9 @@ exports.activityView = (actions, filter, userId, q = '') => { const now = Date.now(); filteredActions = actions.filter(action => action.type !== 'tombstone' && action.ts && now - action.ts < 24 * 60 * 60 * 1000); } else if (filter === 'banking') { - filteredActions = actions.filter(action => action.type !== 'tombstone' && (action.type === 'bankWallet' || action.type === 'bankClaim')); + filteredActions = actions.filter(action => action.type !== 'tombstone' && (action.type === 'bankWallet' || action.type === 'bankClaim' || action.type === 'ubiClaim' || action.type === 'ubiclaimresult')); } else if (filter === 'tribe') { - filteredActions = actions.filter(action => - action.type !== 'tombstone' && - String(action.type || '').startsWith('tribe') && - action.type !== 'tribe' - ); + filteredActions = actions.filter(action => action.type === 'tribe'); } else if (filter === 'parliament') { filteredActions = actions.filter(action => ['parliamentCandidature','parliamentTerm','parliamentProposal','parliamentRevocation','parliamentLaw'].includes(action.type)); } else if (filter === 'courts') { @@ -1510,8 +1673,12 @@ exports.activityView = (actions, filter, userId, q = '') => { filteredActions = actions.filter(action => action.type !== 'tombstone' && (action.type === 'task' || action.type === 'taskAssignment')); } else if (filter === 'spread') { filteredActions = actions.filter(action => action.type === 'spread'); + } else if (filter === 'gameScore') { + filteredActions = actions.filter(action => action.type === 'gameScore'); + } else if (filter === 'torrent') { + filteredActions = actions.filter(action => action.type === 'torrent'); } else { - filteredActions = actions.filter(action => (action.type === filter || filter === 'all') && action.type !== 'tombstone'); + filteredActions = actions.filter(action => (action.type === filter || filter === 'all' || (filter === 'shop' && action.type === 'shopProduct')) && action.type !== 'tombstone'); } const qs = String(q || '').trim(); @@ -1541,11 +1708,22 @@ exports.activityView = (actions, filter, userId, q = '') => { h2(i18n.activityList), p(desc) ), - div({ class: 'mode-buttons' }, - ...activityTypes.map(({ type, label }) => - form({ method: 'GET', action: '/activity' }, - input({ type: 'hidden', name: 'filter', value: type }), - button({ type: 'submit', class: filter === type ? 'filter-btn active' : 'filter-btn' }, label) + div({ class: 'activity-filter-grid' }, + ...[ + activityTypes.slice(0, 4), + activityTypes.slice(4, 12), + activityTypes.slice(12, 19), + activityTypes.slice(19, 26), + activityTypes.slice(26, 29), + activityTypes.slice(29) + ].map(col => + div({ class: 'activity-filter-col' }, + col.map(({ type, label }) => + form({ method: 'GET', action: '/activity' }, + input({ type: 'hidden', name: 'filter', value: type }), + button({ type: 'submit', class: filter === type ? 'filter-btn active' : 'filter-btn' }, label) + ) + ) ) ) ), diff --git a/nodejs-project/nodejs-project/src/views/agenda_view.js b/nodejs-project/nodejs-project/src/views/agenda_view.js index 7027296f..feb865d4 100644 --- a/nodejs-project/nodejs-project/src/views/agenda_view.js +++ b/nodejs-project/nodejs-project/src/views/agenda_view.js @@ -24,6 +24,7 @@ function getViewDetailsAction(item) { case 'report': return `/reports/${encodeURIComponent(item.id)}`; case 'job': return `/jobs/${encodeURIComponent(item.id)}`; case 'project': return `/projects/${encodeURIComponent(item.id)}`; + case 'calendar': return `/calendars/${encodeURIComponent(item.id)}`; default: return `/messages/${encodeURIComponent(item.id)}`; } } @@ -141,6 +142,14 @@ const renderAgendaItem = (item, userId, filter) => { ]; } + if (item.type === 'calendar') { + details = [ + renderCardField((i18n.calendarStatusLabel || 'Status') + ':', item.isClosed ? (i18n.calendarStatusClosed || 'CLOSED') : (i18n.calendarStatusOpen || 'OPEN')), + renderCardField((i18n.calendarDeadlineLabel || 'Deadline') + ':', item.deadline ? moment(item.deadline).format('YYYY/MM/DD HH:mm') : ''), + renderCardField((i18n.calendarParticipantsLabel || 'Participants') + ':', Array.isArray(item.participants) ? item.participants.length : 0) + ]; + } + if (item.type === 'job') { const subs = Array.isArray(item.subscribers) ? item.subscribers @@ -192,7 +201,7 @@ const renderAgendaItem = (item, userId, filter) => { exports.agendaView = async (data, filter) => { const { items = [], counts: _c = {} } = data || {}; - const counts = { all: 0, open: 0, closed: 0, events: 0, tasks: 0, reports: 0, tribes: 0, jobs: 0, market: 0, projects: 0, transfers: 0, discarded: 0, ..._c }; + const counts = { all: 0, open: 0, closed: 0, events: 0, tasks: 0, reports: 0, tribes: 0, jobs: 0, market: 0, projects: 0, transfers: 0, calendars: 0, discarded: 0, ..._c }; return template( i18n.agendaTitle, section( @@ -222,6 +231,8 @@ exports.agendaView = async (data, filter) => { `${i18n.agendaFilterMarket} (${counts.market})`), button({ type: 'submit', name: 'filter', value: 'projects', class: filter === 'projects' ? 'filter-btn active' : 'filter-btn' }, `${i18n.agendaFilterProjects} (${counts.projects})`), + button({ type: 'submit', name: 'filter', value: 'calendars', class: filter === 'calendars' ? 'filter-btn active' : 'filter-btn' }, + `${i18n.agendaFilterCalendars || 'CALENDARS'} (${counts.calendars})`), button({ type: 'submit', name: 'filter', value: 'transfers', class: filter === 'transfers' ? 'filter-btn active' : 'filter-btn' }, `${i18n.agendaFilterTransfers} (${counts.transfers})`), button({ type: 'submit', name: 'filter', value: 'discarded', class: filter === 'discarded' ? 'filter-btn active' : 'filter-btn' }, diff --git a/nodejs-project/nodejs-project/src/views/audio_view.js b/nodejs-project/nodejs-project/src/views/audio_view.js index f9951ce6..150b69b4 100644 --- a/nodejs-project/nodejs-project/src/views/audio_view.js +++ b/nodejs-project/nodejs-project/src/views/audio_view.js @@ -19,7 +19,8 @@ const { const { template, i18n } = require("./main_views"); const moment = require("../server/node_modules/moment"); const { config } = require("../server/SSB_server.js"); -const { renderUrl } = require("../backend/renderUrl"); +const { renderUrl } = require("../backend/renderUrl") +const { renderMapLocationVisitLabel } = require("./maps_view"); const opinionCategories = require("../backend/opinion_categories"); const userId = config.keys.id; @@ -122,7 +123,7 @@ const renderAudioCommentsSection = (audioId, comments = [], returnTo = null) => class: "comment-textarea", placeholder: i18n.voteNewCommentPlaceholder }), - div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob", accept: "image/*,audio/*,video/*,application/pdf" })), + div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob" })), br(), button({ type: "submit", class: "comment-submit-btn" }, i18n.voteNewCommentButton) ) @@ -195,8 +196,6 @@ const renderAudioList = (audios, filter, params = {}) => { ), title ? h2(title) : null, renderAudioPlayer(audioObj), - safeText(audioObj.description) ? p(...renderUrl(audioObj.description)) : null, - renderTags(audioObj.tags), div( { class: "card-comments-summary" }, span({ class: "card-label" }, i18n.voteCommentsLabel + ":"), @@ -212,6 +211,7 @@ const renderAudioList = (audios, filter, params = {}) => { button({ type: "submit", class: "filter-btn" }, i18n.voteCommentsForumButton) ) ), + renderMapLocationVisitLabel(audioObj.mapUrl), br(), (() => { const createdTs = audioObj.createdAt ? new Date(audioObj.createdAt).getTime() : NaN; @@ -229,22 +229,7 @@ const renderAudioList = (audios, filter, params = {}) => { ) : null ); - })(), - div( - { class: "voting-buttons" }, - opinionCategories.map((category) => - form( - { method: "POST", action: `/audios/opinions/${encodeURIComponent(audioObj.key)}/${category}` }, - input({ type: "hidden", name: "returnTo", value: returnTo }), - button( - { type: "submit", class: "vote-btn" }, - `${i18n[`vote${category.charAt(0).toUpperCase() + category.slice(1)}`] || category} [${ - audioObj.opinions?.[category] || 0 - }]` - ) - ) - ) - ) + })() ); }) : p(params.q ? i18n.audioNoMatch : i18n.noAudios); @@ -263,9 +248,21 @@ const renderAudioForm = (filter, audioId, audioToEdit, params = {}) => { input({ type: "hidden", name: "returnTo", value: returnTo }), span(i18n.audioFileLabel), br(), - input({ type: "file", name: "audio", accept: "audio/*", required: filter !== "edit" }), + input({ type: "file", name: "audio", required: filter !== "edit" }), br(), br(), + span(i18n.audioTitleLabel), + br(), + input({ type: "text", name: "title", placeholder: i18n.audioTitlePlaceholder, value: audioToEdit?.title || "" }), + br(), + span(i18n.audioDescriptionLabel), + br(), + textarea({ name: "description", placeholder: i18n.audioDescriptionPlaceholder, rows: "4" }, audioToEdit?.description || ""), + br(), + span(i18n.mapLocationTitle || "Map Location"), + br(), + input({ type: "text", name: "mapUrl", placeholder: i18n.mapUrlPlaceholder || "/maps/MAP_ID", value: audioToEdit?.mapUrl || "" }), + br(), span(i18n.audioTagsLabel), br(), input({ @@ -276,16 +273,6 @@ const renderAudioForm = (filter, audioId, audioToEdit, params = {}) => { }), br(), br(), - span(i18n.audioTitleLabel), - br(), - input({ type: "text", name: "title", placeholder: i18n.audioTitlePlaceholder, value: audioToEdit?.title || "" }), - br(), - br(), - span(i18n.audioDescriptionLabel), - br(), - textarea({ name: "description", placeholder: i18n.audioDescriptionPlaceholder, rows: "4" }, audioToEdit?.description || ""), - br(), - br(), button({ type: "submit" }, filter === "edit" ? i18n.audioUpdateButton : i18n.audioCreateButton) ) ); @@ -419,6 +406,8 @@ exports.singleAudioView = async (audioObj, filter = "all", comments = [], params safeText(audioObj.description) ? p(...renderUrl(audioObj.description)) : null, renderTags(audioObj.tags), br(), + renderMapLocationVisitLabel(audioObj.mapUrl), + br(), (() => { const createdTs = audioObj.createdAt ? new Date(audioObj.createdAt).getTime() : NaN; const updatedTs = audioObj.updatedAt ? new Date(audioObj.updatedAt).getTime() : NaN; @@ -443,7 +432,7 @@ exports.singleAudioView = async (audioObj, filter = "all", comments = [], params { method: "POST", action: `/audios/opinions/${encodeURIComponent(audioObj.key)}/${category}` }, input({ type: "hidden", name: "returnTo", value: returnTo }), button( - { type: "submit", class: "vote-btn" }, + { class: "vote-btn" }, `${i18n[`vote${category.charAt(0).toUpperCase() + category.slice(1)}`] || category} [${ audioObj.opinions?.[category] || 0 }]` diff --git a/nodejs-project/nodejs-project/src/views/banking_views.js b/nodejs-project/nodejs-project/src/views/banking_views.js index 8bb9f973..9f4e7489 100644 --- a/nodejs-project/nodejs-project/src/views/banking_views.js +++ b/nodejs-project/nodejs-project/src/views/banking_views.js @@ -8,6 +8,8 @@ const FILTER_LABELS = { mine: i18n.mine, pending: i18n.pending, closed: i18n.closed, + claimed: i18n.bankStatusClaimed, + expired: i18n.bankStatusExpired, epochs: i18n.bankEpochs, rules: i18n.bankRules, addresses: i18n.bankAddresses @@ -25,14 +27,14 @@ const generateFilterButtons = (filters, currentFilter, action) => const kvRow = (label, value) => tr(td({ class: "card-label" }, label), td({ class: "card-value" }, value)); - + const fmtIndex = (value) => { return value ? value.toFixed(6) : "0.000000"; }; const pct = (value) => { if (value === undefined || value === null) return "0.000001%"; - const formattedValue = (value).toFixed(6); + const formattedValue = (value).toFixed(6); const sign = value >= 0 ? "+" : ""; return `${sign}${formattedValue}%`; }; @@ -41,23 +43,36 @@ const fmtDate = (timestamp) => { return moment(timestamp).format('YYYY-MM-DD HH:mm:ss'); }; +const fmtEcoTime = (ms) => { + if (!ms || ms <= 0) return `0 ${i18n.bankUnitMs || 'ms'}`; + if (ms < 1000) return `${Number(ms).toFixed(3)} ${i18n.bankUnitMs || 'ms'}`; + const s = ms / 1000; + if (s < 60) return `${s.toFixed(2)} ${i18n.bankUnitSeconds || 'seconds'}`; + const m = s / 60; + if (m < 60) return `${m.toFixed(2)} ${i18n.bankUnitMinutes || 'minutes'}`; + const h = m / 60; + if (h < 24) return `${h.toFixed(2)} ${i18n.bankHoursOfWork || 'hours'}`; + return `${(h / 24).toFixed(2)} ${i18n.bankUnitDays || 'days'}`; +}; + const renderExchange = (ex) => { if (!ex) return div(p(i18n.bankExchangeNoData)); const syncStatus = ex.isSynced ? i18n.bankingSyncStatusSynced : i18n.bankingSyncStatusOutdated; const syncStatusClass = ex.isSynced ? 'synced' : 'outdated'; - const ecoInHours = ex.isSynced ? ex.ecoInHours : 0; + const ecoTimeLabel = ex.isSynced ? fmtEcoTime(ex.ecoTimeMs) : fmtEcoTime(0); return div( div({ class: "bank-summary" }, table({ class: "bank-info-table" }, tbody( - kvRow(i18n.bankingSyncStatus, + kvRow(i18n.bankingSyncStatus, span({ class: syncStatusClass }, syncStatus) ), kvRow(i18n.bankExchangeCurrentValue, `${fmtIndex(ex.ecoValue)} ECO`), kvRow(i18n.bankCurrentSupply, `${Number(ex.currentSupply || 0).toFixed(6)} ECO`), kvRow(i18n.bankTotalSupply, `${Number(ex.totalSupply || 0).toFixed(6)} ECO`), - kvRow(i18n.bankEcoinHours, `${ecoInHours} ${i18n.bankHoursOfWork}`), - kvRow(i18n.bankInflation, `${ex.inflationFactor.toFixed(2)}%`) + kvRow(i18n.bankEcoinHours, ecoTimeLabel), + kvRow(i18n.bankInflation, `${ex.inflationFactor.toFixed(2)}%`), + kvRow(i18n.bankInflationMonthly, `${Number(ex.inflationMonthly || 0).toFixed(2)}%`) ) ) ) @@ -71,32 +86,56 @@ const renderOverviewSummaryTable = (s, rules) => { const w = 1 + score / 100; const cap = rules?.caps?.cap_user_epoch ?? 50; const future = Math.min(pool * (w / W), cap); + const availClass = s.ubiAvailability === "OK" ? "ubi-available" : "ubi-unavailable"; + const availLabel = s.ubiAvailability === "OK" ? i18n.bankUbiAvailableOk : i18n.bankUbiAvailableNo; return div({ class: "bank-summary" }, table({ class: "bank-info-table" }, tbody( kvRow(i18n.bankUserBalance, `${Number(s.userBalance || 0).toFixed(6)} ECO`), - kvRow(i18n.bankPubBalance, `${Number(s.pubBalance || 0).toFixed(6)} ECO`), + kvRow(i18n.bankUbiAvailability, span({ class: availClass }, availLabel)), + s.pubId ? kvRow(i18n.pubIdLabel, a({ href: `/author/${encodeURIComponent(s.pubId)}`, class: "user-link" }, s.pubId)) : null, kvRow(i18n.bankEpoch, String(s.epochId || "-")), kvRow(i18n.bankPool, `${pool.toFixed(6)} ECO`), kvRow(i18n.bankWeightsSum, String(W.toFixed(6))), kvRow(i18n.bankingUserEngagementScore, String(score)), - kvRow(i18n.bankingFutureUBI, `${future.toFixed(6)} ECO`) + kvRow(i18n.bankUbiThisMonth, `${future.toFixed(6)} ECO`) ) ) ); }; -function calculateFutureUBI(userEngagementScore, poolAmount) { - const maxScore = 100; - const scorePercentage = userEngagementScore / maxScore; - const estimatedUBI = poolAmount * scorePercentage; - return estimatedUBI; -} +const renderClaimUBIBlock = (pendingAllocation, isPub, alreadyClaimed, pubId, hasValidWallet, ubiAvailability) => { + if (alreadyClaimed) return ""; + if (!pubId && !isPub) return ""; + if (!isPub && !hasValidWallet) return ""; + if (!isPub && ubiAvailability !== "OK") return ""; + if (!pendingAllocation && !isPub) { + return div({ class: "bank-claim-ubi" }, + div({ class: "bank-claim-card" }, + form({ method: "POST", action: "/banking/claim-ubi" }, + button({ type: "submit", class: "create-button bank-claim-btn" }, i18n.bankClaimUBI) + ) + ) + ); + } + if (!pendingAllocation) return ""; + return div({ class: "bank-claim-ubi" }, + div({ class: "bank-claim-card" }, + p(`${i18n.bankUbiThisMonth}: `, span({ class: "accent" }, `${Number(pendingAllocation.amount || 0).toFixed(6)} ECO`)), + p(`${i18n.bankEpoch}: `, span(pendingAllocation.concept || "")), + form({ method: "POST", action: `/banking/claim/${encodeURIComponent(pendingAllocation.id)}` }, + button({ type: "submit", class: "create-button bank-claim-btn" }, isPub ? i18n.bankClaimAndPay : i18n.bankClaimUBI) + ) + ) + ); +}; const filterAllocations = (allocs, filter, userId) => { - if (filter === "mine") return allocs.filter(a => a.to === userId && a.status === "UNCONFIRMED"); - if (filter === "pending") return allocs.filter(a => a.status === "UNCONFIRMED"); + if (filter === "mine") return allocs.filter(a => a.to === userId && (a.status === "UNCLAIMED" || a.status === "UNCONFIRMED")); + if (filter === "pending") return allocs.filter(a => a.status === "UNCLAIMED" || a.status === "UNCONFIRMED"); if (filter === "closed") return allocs.filter(a => a.status === "CLOSED"); + if (filter === "claimed") return allocs.filter(a => a.status === "CLAIMED"); + if (filter === "expired") return allocs.filter(a => a.status === "EXPIRED"); return allocs; }; @@ -126,7 +165,7 @@ const allocationsTable = (rows = [], userId) => td(String(Number(r.amount || 0).toFixed(6))), td(r.status), td( - r.status === "UNCONFIRMED" && r.to === userId + (r.status === "UNCLAIMED" || r.status === "UNCONFIRMED") && r.to === userId ? form({ method: "POST", action: `/banking/claim/${encodeURIComponent(r.id)}` }, button({ type: "submit", class: "filter-btn" }, i18n.bankClaimNow) ) @@ -174,11 +213,15 @@ const flashText = (key) => { if (key === "invalid") return i18n.bankAddressInvalid; if (key === "deleted") return i18n.bankAddressDeleted; if (key === "not_found") return i18n.bankAddressNotFound; + if (key === "claimed_pending") return i18n.bankClaimedPending; + if (key === "already_claimed") return i18n.bankAlreadyClaimedThisMonth; + if (key === "no_pub_configured") return i18n.bankNoPubConfigured; + if (key === "no_funds") return i18n.bankUbiAvailableNo; return ""; }; const flashBanner = (msgKey) => - !msgKey ? null : div({ class: "flash-banner" }, p(flashText(msgKey))); + !msgKey ? null : div({ class: "flash-banner" }, p(flashText(msgKey) || msgKey)); const addressesToolbar = (rows = [], search = "") => div({ class: "addr-toolbar" }, @@ -251,15 +294,15 @@ const renderAddresses = (data, userId) => { td(a({ href: `/author/${encodeURIComponent(r.id)}`, class: "user-link" }, r.id)), td(r.address), td(r.source === "local" ? i18n.bankLocal : i18n.bankFromOasis), - td( - div({ class: "row-actions" }, - form({ method: "POST", action: "/banking/addresses/delete", class: "addr-del" }, - input({ type: "hidden", name: "userId", value: r.id }), - input({ type: "hidden", name: "source", value: r.source || "local" }), - button({ type: "submit", class: "delete-btn", onclick: `return confirm(${JSON.stringify(i18n.bankAddressDeleteConfirm)})` }, i18n.bankAddressDelete) - ) - ) + td( + div({ class: "row-actions" }, + form({ method: "POST", action: "/banking/addresses/delete", class: "addr-del" }, + input({ type: "hidden", name: "userId", value: r.id }), + input({ type: "hidden", name: "source", value: r.source || "local" }), + button({ type: "submit", class: "delete-btn", onclick: `return confirm(${JSON.stringify(i18n.bankAddressDeleteConfirm)})` }, i18n.bankAddressDelete) ) + ) + ) ) ) ) @@ -269,15 +312,17 @@ const renderAddresses = (data, userId) => { ); }; -const renderBankingView = (data, filter, userId) => +const renderBankingView = (data, filter, userId, isPub) => template( i18n.banking, section( div({ class: "tags-header" }, h2(i18n.banking), p(i18n.bankingDescription)), - generateFilterButtons(["overview","exchange","mine","pending","closed","epochs","rules","addresses"], filter, "/banking"), + data.flash ? div({ class: "flash-banner" }, p(flashText(data.flash) || data.flash)) : null, + generateFilterButtons(["overview","exchange","mine","pending","closed","claimed","expired","epochs","rules","addresses"], filter, "/banking"), filter === "overview" ? div( renderOverviewSummaryTable(data.summary || {}, data.rules), + renderClaimUBIBlock(data.pendingUBI || null, isPub, data.alreadyClaimed, (data.summary || {}).pubId, (data.summary || {}).hasValidWallet, (data.summary || {}).ubiAvailability), allocationsTable((data.allocations || []).sort((a, b) => new Date(b.createdAt) - new Date(a.createdAt)), userId) ) : filter === "exchange" @@ -293,7 +338,58 @@ const renderBankingView = (data, filter, userId) => userId ) ) - ) - -module.exports = { renderBankingView }; + ); +const renderSingleAllocationView = (alloc, userId) => { + if (!alloc) return template(i18n.banking, section(div(p(i18n.bankNoAllocations)))); + return template( + i18n.banking, + section( + div({ class: "tags-header" }, h2(i18n.banking)), + div({ class: "bank-summary" }, + table({ class: "bank-info-table" }, + tbody( + kvRow("ID", alloc.id || "-"), + kvRow(i18n.bankAllocConcept, alloc.concept || "-"), + kvRow(i18n.bankAllocFrom, alloc.from || "-"), + kvRow(i18n.bankAllocTo, alloc.to || "-"), + kvRow(i18n.bankAllocAmount, `${Number(alloc.amount || 0).toFixed(6)} ECO`), + kvRow(i18n.bankAllocStatus, alloc.status || "-"), + kvRow(i18n.bankAllocDate, alloc.createdAt ? fmtDate(alloc.createdAt) : "-"), + alloc.txid ? kvRow("TxID", a({ href: `https://ecoin.03c8.net/blockexplorer/search?q=${encodeURIComponent(alloc.txid)}`, target: "_blank" }, alloc.txid)) : null + ) + ) + ), + alloc.status === "UNCONFIRMED" && alloc.to === userId + ? form({ method: "POST", action: `/banking/claim/${encodeURIComponent(alloc.id)}` }, + button({ type: "submit", class: "filter-btn" }, i18n.bankClaimNow) + ) + : null, + div(a({ href: "/banking", class: "filter-btn" }, i18n.bankOverview)) + ) + ); +}; + +const renderEpochView = (epoch, allocations) => { + if (!epoch) return template(i18n.banking, section(div(p(i18n.bankNoEpochs)))); + return template( + i18n.banking, + section( + div({ class: "tags-header" }, h2(`${i18n.bankEpoch}: ${epoch.id}`)), + div({ class: "bank-summary" }, + table({ class: "bank-info-table" }, + tbody( + kvRow(i18n.bankEpochId, epoch.id || "-"), + kvRow(i18n.bankPool, `${Number(epoch.pool || 0).toFixed(6)} ECO`), + kvRow(i18n.bankWeightsSum, String(Number(epoch.weightsSum || 0).toFixed(6))), + kvRow(i18n.bankRuleHash, epoch.hash || "-") + ) + ) + ), + h2(i18n.bankEpochAllocations), + allocationsTable(allocations || [], "") + ) + ); +}; + +module.exports = { renderBankingView, renderSingleAllocationView, renderEpochView }; diff --git a/nodejs-project/nodejs-project/src/views/bookmark_view.js b/nodejs-project/nodejs-project/src/views/bookmark_view.js index 041a8f19..0a3cc32b 100644 --- a/nodejs-project/nodejs-project/src/views/bookmark_view.js +++ b/nodejs-project/nodejs-project/src/views/bookmark_view.js @@ -83,7 +83,7 @@ const renderBookmarkCommentsSection = (bookmarkId, rootId, comments = [], return class: "comment-textarea", placeholder: i18n.voteNewCommentPlaceholder }), - div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob", accept: "image/*,audio/*,video/*,application/pdf" })), + div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob" })), br(), button({ type: "submit", class: "comment-submit-btn" }, i18n.voteNewCommentButton) ) @@ -196,8 +196,7 @@ const renderBookmarkList = (filteredBookmarks, filter, params = {}) => { renderCardField(i18n.bookmarkUrlLabel + ":", urlLink), renderCardField(i18n.bookmarkLastVisitLabel + ":", lastVisitTxt), renderCardField(i18n.bookmarkCategoryLabel + ":", safeText(bookmark.category) || i18n.noCategory), - safeText(bookmark.description) ? p(...renderUrl(bookmark.description)) : null, - renderTags(bookmark.tags), + br, div( { class: "card-comments-summary" }, span({ class: "card-label" }, i18n.voteCommentsLabel + ":"), @@ -213,7 +212,6 @@ const renderBookmarkList = (filteredBookmarks, filter, params = {}) => { button({ type: "submit", class: "filter-btn" }, i18n.voteCommentsForumButton) ) ), - br(), (() => { const createdTs = bookmark.createdAt ? new Date(bookmark.createdAt).getTime() : NaN; const updatedTs = bookmark.updatedAt ? new Date(bookmark.updatedAt).getTime() : NaN; @@ -230,20 +228,7 @@ const renderBookmarkList = (filteredBookmarks, filter, params = {}) => { ) : null ); - })(), - div( - { class: "voting-buttons" }, - opinionCategories.map((category) => - form( - { method: "POST", action: `/bookmarks/opinions/${encodeURIComponent(bookmark.id)}/${category}` }, - input({ type: "hidden", name: "returnTo", value: returnTo }), - button( - { type: "submit", class: "vote-btn" }, - `${i18n[`vote${category.charAt(0).toUpperCase() + category.slice(1)}`] || category} [${bookmark.opinions?.[category] || 0}]` - ) - ) - ) - ) + })() ); }) : p(params.q ? i18n.bookmarkNoMatch : i18n.noBookmarks); @@ -284,15 +269,13 @@ const renderBookmarkForm = (filter, bookmarkId, bookmarkToEdit, tags, params = { filter === "edit" ? bookmarkToEdit.description || "" : "" ), br(), - br(), - label(i18n.bookmarkTagsLabel), + label(i18n.bookmarkLastVisitLabel), br(), input({ - type: "text", - name: "tags", - id: "tags", - placeholder: i18n.bookmarkTagsPlaceholder, - value: filter === "edit" ? safeArr(tags).join(", ") : "" + type: "datetime-local", + name: "lastVisit", + max: lastVisitMax, + value: filter === "edit" ? lastVisitValue : "" }), br(), br(), @@ -306,14 +289,14 @@ const renderBookmarkForm = (filter, bookmarkId, bookmarkToEdit, tags, params = { value: filter === "edit" ? bookmarkToEdit.category || "" : "" }), br(), - br(), - label(i18n.bookmarkLastVisitLabel), + label(i18n.bookmarkTagsLabel), br(), input({ - type: "datetime-local", - name: "lastVisit", - max: lastVisitMax, - value: filter === "edit" ? lastVisitValue : "" + type: "text", + name: "tags", + id: "tags", + placeholder: i18n.bookmarkTagsPlaceholder, + value: filter === "edit" ? safeArr(tags).join(", ") : "" }), br(), br(), @@ -467,7 +450,6 @@ exports.singleBookmarkView = async (bookmark, filter = "all", comments = [], par const createdTs = bookmark.createdAt ? new Date(bookmark.createdAt).getTime() : NaN; const updatedTs = bookmark.updatedAt ? new Date(bookmark.updatedAt).getTime() : NaN; const showUpdated = Number.isFinite(updatedTs) && (!Number.isFinite(createdTs) || updatedTs !== createdTs); - return p( { class: "card-footer" }, span({ class: "date-link" }, `${moment(bookmark.createdAt).format("YYYY/MM/DD HH:mm:ss")} ${i18n.performed} `), @@ -487,7 +469,7 @@ exports.singleBookmarkView = async (bookmark, filter = "all", comments = [], par { method: "POST", action: `/bookmarks/opinions/${encodeURIComponent(bookmark.id)}/${category}` }, input({ type: "hidden", name: "returnTo", value: returnTo }), button( - { type: "submit", class: "vote-btn" }, + { class: "vote-btn" }, `${i18n[`vote${category.charAt(0).toUpperCase() + category.slice(1)}`] || category} [${bookmark.opinions?.[category] || 0}]` ) ) diff --git a/nodejs-project/nodejs-project/src/views/calendars_view.js b/nodejs-project/nodejs-project/src/views/calendars_view.js new file mode 100644 index 00000000..91914464 --- /dev/null +++ b/nodejs-project/nodejs-project/src/views/calendars_view.js @@ -0,0 +1,381 @@ +const { div, h2, h3, h4, p, section, button, form, a, span, br, textarea, input, label, select, option, table, tr, td, ul, li } = require("../server/node_modules/hyperaxe") +const { template, i18n } = require("./main_views") +const moment = require("../server/node_modules/moment") +const { config } = require("../server/SSB_server.js") + +const userId = config.keys.id + +const renderNoteText = (text) => { + if (!text) return [] + const urlRegex = /(https?:\/\/[^\s]+)/g + const result = [] + let last = 0 + text.replace(urlRegex, (match, _g, offset) => { + if (offset > last) result.push(text.slice(last, offset)) + result.push(a({ href: match, target: "_blank" }, match)) + last = offset + match.length + }) + if (last < text.length) result.push(text.slice(last)) + return result +} + +const renderCalendarFavoriteToggle = (cal, returnTo) => + form( + { method: "POST", action: cal.isFavorite ? `/calendars/favorites/remove/${encodeURIComponent(cal.rootId)}` : `/calendars/favorites/add/${encodeURIComponent(cal.rootId)}` }, + returnTo ? input({ type: "hidden", name: "returnTo", value: returnTo }) : null, + button({ type: "submit", class: "tribe-action-btn" }, cal.isFavorite ? (i18n.calendarRemoveFavorite || "Remove Favorite") : (i18n.calendarAddFavorite || "Add Favorite")) + ) + +const renderModeButtons = (currentFilter) => + div({ class: "tribe-mode-buttons" }, + ["all", "mine", "recent", "favorites", "open", "closed"].map(f => + form({ method: "GET", action: "/calendars" }, + input({ type: "hidden", name: "filter", value: f }), + button({ type: "submit", class: currentFilter === f ? "filter-btn active" : "filter-btn" }, + i18n[`calendarFilter${f.charAt(0).toUpperCase() + f.slice(1)}`] || f.toUpperCase()) + ) + ), + form({ method: "GET", action: "/calendars" }, + input({ type: "hidden", name: "filter", value: "create" }), + button({ type: "submit", class: "create-button" }, i18n.calendarCreate || "Create Calendar") + ) + ) + +const renderStatus = (cal) => { + if (cal.isClosed) return span({ class: "pad-status-closed" }, i18n.calendarStatusClosed || "CLOSED") + return span({ class: "pad-status-open" }, i18n.calendarStatusOpen || "OPEN") +} + +const renderCalendarCard = (cal) => { + const href = `/calendars/${encodeURIComponent(cal.rootId)}` + return div({ class: "tribe-card" }, + div({ class: "tribe-card-body" }, + div({ class: "tribe-card-title" }, + a({ href }, cal.title || "\u2014") + ), + table({ class: "tribe-info-table" }, + tr(td({ class: "tribe-info-label" }, i18n.calendarStatusLabel || "Status"), td({ class: "tribe-info-value" }, renderStatus(cal))), + cal.deadline ? tr(td({ class: "tribe-info-label" }, i18n.calendarDeadlineLabel || "Deadline"), td({ class: "tribe-info-value" }, moment(cal.deadline).format("YYYY-MM-DD HH:mm"))) : null, + ), + div({ class: "tribe-card-members" }, + span({ class: "tribe-members-count calendar-participants-count" }, `${i18n.calendarParticipantsLabel || "Participants"}: ${cal.participants.length}`) + ), + div({ class: "visit-btn-centered" }, + a({ href, class: "filter-btn" }, i18n.calendarVisitCalendar || "Visit Calendar") + ) + ) + ) +} + +const renderIntervalBlock = () => + div({ class: "calendar-interval-block" }, + span({ class: "calendar-interval-label" }, i18n.calendarIntervalLabel || "Interval"), + div({ class: "calendar-interval-row" }, + input({ type: "hidden", name: "intervalWeekly", value: "0" }), + label({ class: "calendar-interval-option" }, + input({ type: "checkbox", name: "intervalWeekly", value: "1" }), + " ", i18n.calendarIntervalWeekly || "Weekly" + ), + input({ type: "hidden", name: "intervalMonthly", value: "0" }), + label({ class: "calendar-interval-option" }, + input({ type: "checkbox", name: "intervalMonthly", value: "1" }), + " ", i18n.calendarIntervalMonthly || "Monthly" + ), + input({ type: "hidden", name: "intervalYearly", value: "0" }), + label({ class: "calendar-interval-option" }, + input({ type: "checkbox", name: "intervalYearly", value: "1" }), + " ", i18n.calendarIntervalYearly || "Yearly" + ) + ), + span({ class: "calendar-interval-label calendar-interval-until" }, i18n.calendarIntervalUntil || "Until"), + input({ type: "datetime-local", name: "intervalDeadline" }), + br() + ) + +const renderCreateForm = (calendarToEdit, params) => { + const isEdit = !!calendarToEdit + const tribeId = (params && params.tribeId) || "" + const now = moment().add(1, "minute").format("YYYY-MM-DDTHH:mm") + const action = isEdit ? `/calendars/update/${encodeURIComponent(calendarToEdit.rootId)}` : "/calendars/create" + const sectionTitle = isEdit ? (i18n.calendarUpdateSectionTitle || "Update Calendar") : (i18n.calendarCreateSectionTitle || "Create New Calendar") + return div({ class: "div-center audio-form" }, + h2(sectionTitle), + form({ method: "POST", action }, + tribeId ? input({ type: "hidden", name: "tribeId", value: tribeId }) : null, + span(i18n.calendarTitleLabel || "Title"), br(), + input({ type: "text", name: "title", required: true, placeholder: i18n.calendarTitlePlaceholder || "Calendar title...", value: calendarToEdit ? calendarToEdit.title : "" }), + br(), br(), + span(i18n.calendarStatusLabel || "Status"), br(), + select({ name: "status", required: true }, + option({ value: "OPEN", ...((!calendarToEdit || calendarToEdit.status === "OPEN") ? { selected: true } : {}) }, i18n.calendarStatusOpen || "OPEN"), + option({ value: "CLOSED", ...((calendarToEdit && calendarToEdit.status === "CLOSED") ? { selected: true } : {}) }, i18n.calendarStatusClosed || "CLOSED") + ), + br(), br(), + span(i18n.calendarDeadlineLabel || "Deadline"), br(), + input({ type: "datetime-local", name: "deadline", required: true, min: now, value: calendarToEdit && calendarToEdit.deadline ? moment(calendarToEdit.deadline).format("YYYY-MM-DDTHH:mm") : "" }), + br(), br(), + span(i18n.calendarTagsLabel || "Tags"), br(), + input({ type: "text", name: "tags", placeholder: i18n.calendarTagsPlaceholder || "tag1, tag2...", value: calendarToEdit && Array.isArray(calendarToEdit.tags) ? calendarToEdit.tags.join(", ") : "" }), + br(), br(), + !isEdit + ? [ + span(i18n.calendarFirstDateLabel || "Date"), br(), + input({ type: "datetime-local", name: "firstDate", required: true, min: now }), + br(), br(), + span(i18n.calendarFormDescription || "Description"), br(), + input({ type: "text", name: "firstDateLabel", placeholder: i18n.calendarDatePlaceholder || "Describe this date..." }), + br(), br(), + renderIntervalBlock(), + span(i18n.calendarFirstNoteLabel || "Notes"), br(), + textarea({ name: "firstNote", rows: "3", placeholder: i18n.calendarNotePlaceholder || "Add a note..." }), + br(), br() + ] + : null, + button({ type: "submit", class: "create-button" }, isEdit ? (i18n.calendarUpdate || "Update") : (i18n.calendarCreate || "Create Calendar")) + ) + ) +} + +const renderMonthGrid = (year, month, datesMap, calendarId) => { + const DAY_NAMES = ["Mon","Tue","Wed","Thu","Fri","Sat","Sun"] + const firstDay = new Date(year, month, 1) + const daysInMonth = new Date(year, month + 1, 0).getDate() + const startPad = (firstDay.getDay() + 6) % 7 + const monthStr = `${year}-${String(month + 1).padStart(2, "0")}` + + const headerCells = DAY_NAMES.map(d => div({ class: "calendar-day-header" }, d)) + const cells = [] + + for (let i = 0; i < startPad; i++) cells.push(div({ class: "calendar-day calendar-day-empty" }, " ")) + + for (let day = 1; day <= daysInMonth; day++) { + const dateStr = `${year}-${String(month + 1).padStart(2, "0")}-${String(day).padStart(2, "0")}` + const marked = datesMap && datesMap[dateStr] && datesMap[dateStr].length > 0 + if (marked) { + cells.push( + div({ class: "calendar-day calendar-day-marked" }, + a({ href: `/calendars/${encodeURIComponent(calendarId)}?month=${monthStr}&day=${dateStr}` }, String(day)) + ) + ) + } else { + cells.push(div({ class: "calendar-day" }, String(day))) + } + } + + return div({ class: "calendar-grid" }, ...headerCells, ...cells) +} + +exports.calendarsView = async (calendars, filter, calendarToEdit, params) => { + const q = (params && params.q) || "" + const showForm = filter === "create" || filter === "edit" || !!calendarToEdit + const headerMap = { + all: i18n.calendarAllSectionTitle || "Calendars", + mine: i18n.calendarMineSectionTitle || "Your Calendars", + recent: i18n.calendarRecentSectionTitle || "Recent Calendars", + favorites: i18n.calendarFavoritesSectionTitle || "Favorites", + open: i18n.calendarOpenSectionTitle || "Open Calendars", + closed: i18n.calendarClosedSectionTitle || "Closed Calendars" + } + const headerText = headerMap[filter] || headerMap.all + + return template( + i18n.calendarsTitle || "Calendars", + section( + div({ class: "tags-header" }, + h2(headerText), + p(i18n.calendarsDescription || "Discover and manage calendars.") + ), + renderModeButtons(filter), + q + ? div({ class: "filters" }, + form({ method: "GET", action: "/calendars" }, + input({ type: "text", name: "q", value: q, placeholder: i18n.calendarSearchPlaceholder || "Search calendars..." }), + button({ type: "submit", class: "filter-btn" }, i18n.searchButton || "Search") + ) + ) + : null + ), + section( + showForm + ? renderCreateForm(calendarToEdit, params) + : (calendars.length > 0 + ? div({ class: "tribe-grid" }, ...calendars.map(c => renderCalendarCard(c))) + : p({ class: "no-content" }, i18n.calendarsNoItems || "No calendars found.")) + ) + ) +} + +exports.singleCalendarView = async (calendar, dates, notesByDate, params) => { + const { month: monthStr, day: selectedDay } = params || {} + const isAuthor = calendar.author === userId + const isParticipant = calendar.participants.includes(userId) + const calClosed = calendar.isClosed + const shareUrl = `/calendars/${encodeURIComponent(calendar.rootId)}` + + const now = moment() + const currentMonth = monthStr ? moment(monthStr, "YYYY-MM") : now.clone().startOf("month") + const prevMonth = currentMonth.clone().subtract(1, "month").format("YYYY-MM") + const nextMonth = currentMonth.clone().add(1, "month").format("YYYY-MM") + const year = currentMonth.year() + const month = currentMonth.month() + + const datesMap = {} + for (const d of dates) { + const dayKey = moment(d.date).format("YYYY-MM-DD") + if (!datesMap[dayKey]) datesMap[dayKey] = [] + datesMap[dayKey].push(d) + } + + const tags = Array.isArray(calendar.tags) && calendar.tags.length > 0 + ? div({ class: "tribe-side-tags" }, ...calendar.tags.map(t => a({ href: `/search?query=%23${encodeURIComponent(t)}` }, `#${t} `))) + : null + + const calSide = div({ class: "tribe-side" }, + h2(null, calendar.title || "\u2014"), + div({ class: "shop-share" }, + span({ class: "tribe-info-label" }, i18n.calendarsShareUrl || "Share URL"), + input({ type: "text", readonly: true, value: shareUrl, class: "shop-share-input" }) + ), + div({ class: "tribe-card-members" }, + span({ class: "tribe-members-count calendar-participants-count" }, `${i18n.calendarParticipantsLabel || "Participants"}: ${calendar.participants.length}`) + ), + table({ class: "tribe-info-table" }, + tr(td({ class: "tribe-info-label" }, i18n.calendarCreated || "Created"), td({ class: "tribe-info-value", colspan: "3" }, moment(calendar.createdAt).format("YYYY-MM-DD"))), + tr(td({ class: "tribe-info-value", colspan: "4" }, a({ href: `/author/${encodeURIComponent(calendar.author)}`, class: "user-link" }, calendar.author))), + tr(td({ class: "tribe-info-label" }, i18n.calendarStatusLabel || "Status"), td({ class: "tribe-info-value", colspan: "3" }, renderStatus(calendar))), + calendar.deadline ? tr(td({ class: "tribe-info-label" }, i18n.calendarDeadlineLabel || "Deadline"), td({ class: "tribe-info-value", colspan: "3" }, moment(calendar.deadline).format("YYYY-MM-DD HH:mm"))) : null + ), + div({ class: "tribe-side-actions" }, + renderCalendarFavoriteToggle(calendar, shareUrl), + isAuthor + ? form({ method: "GET", action: "/calendars" }, + input({ type: "hidden", name: "filter", value: "edit" }), + input({ type: "hidden", name: "id", value: calendar.rootId }), + button({ type: "submit", class: "tribe-action-btn" }, i18n.calendarUpdate || "Update") + ) + : null, + isAuthor + ? form({ method: "POST", action: `/calendars/delete/${encodeURIComponent(calendar.rootId)}` }, + button({ type: "submit", class: "tribe-action-btn danger-btn" }, i18n.calendarDelete || "Delete") + ) + : null, + !isAuthor + ? a({ href: `/pm?to=${encodeURIComponent(calendar.author)}`, class: "tribe-action-btn" }, "PM") + : null, + !isAuthor && !isParticipant + ? form({ method: "POST", action: `/calendars/join/${encodeURIComponent(calendar.rootId)}` }, + button({ type: "submit", class: "create-button" }, i18n.calendarJoin || "Join Calendar") + ) + : null, + !isAuthor && isParticipant + ? form({ method: "POST", action: `/calendars/leave/${encodeURIComponent(calendar.rootId)}` }, + button({ type: "submit", class: "tribe-action-btn danger-btn" }, i18n.calendarLeave || "Leave Calendar") + ) + : null + ), + tags + ) + + const minDate = now.add(1, "minute").format("YYYY-MM-DDTHH:mm") + const canAddDate = !calClosed && (calendar.status === "OPEN" || isAuthor) + + const unifiedForm = canAddDate + ? div({ class: "div-center audio-form" }, + h4(i18n.calendarAddEntry || "Add Entry"), + form({ method: "POST", action: `/calendars/add-date/${encodeURIComponent(calendar.rootId)}` }, + span(i18n.calendarDateLabel || "Date"), br(), + input({ type: "datetime-local", name: "date", required: true, min: minDate }), + br(), br(), + span(i18n.calendarFormDescription || "Description"), br(), + input({ type: "text", name: "label", placeholder: i18n.calendarDatePlaceholder || "Describe this date..." }), + br(), br(), + renderIntervalBlock(), + br(), + isParticipant + ? [ + span(i18n.calendarNoteLabel || "Note (optional)"), br(), + textarea({ name: "text", rows: "3", placeholder: i18n.calendarNotePlaceholder || "Add a note..." }), + br(), br() + ] + : null, + button({ type: "submit", class: "create-button" }, i18n.calendarAddEntry || "Add Entry") + ) + ) + : null + + const monthLabel = currentMonth.format("MMMM YYYY") + const calNav = div({ class: "calendar-nav" }, + a({ href: `${shareUrl}?month=${prevMonth}`, class: "filter-btn" }, i18n.calendarMonthPrev || "\u2190 Prev"), + span({ class: "tribe-info-label" }, monthLabel), + a({ href: `${shareUrl}?month=${nextMonth}`, class: "filter-btn" }, i18n.calendarMonthNext || "Next \u2192") + ) + + const grid = renderMonthGrid(year, month, datesMap, calendar.rootId) + + const dayEntries = selectedDay + ? dates.filter(d => moment(d.date).format("YYYY-MM-DD") === selectedDay) + : [] + + const dayNotesSection = selectedDay + ? div({ class: "calendar-day-notes" }, + h4(`${selectedDay}${dayEntries.length > 0 && dayEntries[0].label ? " \u2014 " + dayEntries[0].label : ""}`), + dayEntries.length === 0 + ? p({ class: "no-content" }, i18n.calendarNoDates || "No dates added yet.") + : div(null, ...dayEntries.map(d => { + const notes = (notesByDate && notesByDate[d.key]) ? notesByDate[d.key] : [] + return div({ class: "calendar-date-item" }, + (isAuthor || String(d.author) === String(userId)) + ? form({ method: "POST", action: `/calendars/delete-date/${encodeURIComponent(d.key)}`, class: "calendar-date-delete" }, + input({ type: "hidden", name: "calendarId", value: calendar.rootId }), + button({ type: "submit", class: "tribe-action-btn danger-btn" }, i18n.calendarDeleteDate || "Delete Date") + ) + : null, + div({ class: "calendar-date-item-header" }, + `${moment(d.date).format("YYYY-MM-DD HH:mm")}${d.label ? " \u2014 " + d.label : ""}` + ), + notes.length === 0 + ? p({ class: "no-content" }, i18n.calendarNoNotes || "No notes.") + : div(null, ...notes.map(n => { + const isSelf = String(n.author) === String(userId) + const dateStr = moment(n.createdAt).format("YYYY/MM/DD HH:mm") + const shortId = n.author ? "@" + n.author.slice(1, 9) + "\u2026" : "?" + return div({ class: (isSelf ? "chat-message chat-message-self" : "chat-message") + " calendar-note-card" }, + isSelf + ? form({ method: "POST", action: `/calendars/delete-note/${encodeURIComponent(n.key)}`, class: "calendar-note-delete" }, + input({ type: "hidden", name: "calendarId", value: calendar.rootId }), + button({ type: "submit", class: "tribe-action-btn danger-btn" }, i18n.calendarDeleteNote || "Delete") + ) + : null, + div({ class: "chat-message-meta" }, + span({ class: "chat-message-sender" }, + a({ href: `/author/${encodeURIComponent(n.author)}`, class: "user-link" }, shortId) + ), + span({ class: "chat-message-date" }, ` [ ${dateStr} ]`) + ), + span({ class: "chat-message-text" }, ...renderNoteText(n.text || "")) + ) + })) + ) + })) + ) + : null + + const calMain = div({ class: "tribe-main" }, + calNav, + grid, + dayNotesSection, + unifiedForm + ) + + return template( + calendar.title || i18n.calendarsTitle || "Calendar", + section( + div({ class: "tags-header" }, + h2(i18n.calendarsTitle || "Calendars"), + p(i18n.calendarsDescription || "Discover and manage calendars.") + ), + renderModeButtons("all") + ), + section(div({ class: "tribe-details" }, calSide, calMain)) + ) +} diff --git a/nodejs-project/nodejs-project/src/views/chats_view.js b/nodejs-project/nodejs-project/src/views/chats_view.js new file mode 100644 index 00000000..cc999dee --- /dev/null +++ b/nodejs-project/nodejs-project/src/views/chats_view.js @@ -0,0 +1,353 @@ +const { div, h2, p, section, button, form, a, span, textarea, br, input, label, select, option, img, table, tr, td, ul, li } = require("../server/node_modules/hyperaxe") +const { template, i18n } = require("./main_views") +const moment = require("../server/node_modules/moment") +const { config } = require("../server/SSB_server.js") +const { renderUrl } = require("../backend/renderUrl") + +const userId = config.keys.id +const safeArr = (v) => (Array.isArray(v) ? v : []) +const safeText = (v) => String(v || "").trim() + +const CAT_BLOCK1 = ["GENERAL", "OASIS", "L.A.R.P.", "POLITICS", "TECH"] +const CAT_BLOCK2 = ["SCIENCE", "MUSIC", "ART", "GAMING", "BOOKS", "FILMS"] +const CAT_BLOCK3 = ["PHILOSOPHY", "SOCIETY", "PRIVACY", "CYBERWARFARE", "SURVIVALISM"] +const ALL_CATS = [...CAT_BLOCK1, ...CAT_BLOCK2, ...CAT_BLOCK3] + +const catKey = (c) => "forumCat" + String(c || "").replace(/\./g, "").replace(/[\s-]/g, "").toUpperCase() +const catLabel = (c) => i18n[catKey(c)] || c + +const renderMediaBlob = (value, fallbackSrc = null, attrs = {}) => { + if (!value) return fallbackSrc ? img({ src: fallbackSrc, ...attrs }) : null + const s = String(value).trim() + if (!s) return fallbackSrc ? img({ src: fallbackSrc, ...attrs }) : null + if (s.startsWith("&")) return img({ src: `/blob/${encodeURIComponent(s)}`, ...attrs }) + const mImg = s.match(/!\[[^\]]*\]\(\s*(&[^)\s]+\.sha256)\s*\)/) + if (mImg) return img({ src: `/blob/${encodeURIComponent(mImg[1])}`, ...attrs }) + return fallbackSrc ? img({ src: fallbackSrc, ...attrs }) : null +} + +const buildReturnTo = (filter, params = {}) => { + const f = safeText(filter || "all") + const q = safeText(params.q || "") + const parts = [`filter=${encodeURIComponent(f)}`] + if (q) parts.push(`q=${encodeURIComponent(q)}`) + return `/chats?${parts.join("&")}` +} + +const renderModeButtons = (currentFilter) => + div({ class: "tribe-mode-buttons" }, + ["all", "mine", "recent", "favorites", "open", "closed"].map(f => + form({ method: "GET", action: "/chats" }, + input({ type: "hidden", name: "filter", value: f }), + button({ type: "submit", class: currentFilter === f ? "filter-btn active" : "filter-btn" }, i18n[`chatFilter${f.charAt(0).toUpperCase() + f.slice(1)}`] || f.toUpperCase()) + ) + ), + form({ method: "GET", action: "/chats" }, + input({ type: "hidden", name: "filter", value: "create" }), + button({ type: "submit", class: "create-button" }, i18n.chatCreate) + ) + ) + +const renderChatCard = (chat, filter, params = {}) => { + const statusLabel = chat.status === "CLOSED" ? i18n.chatStatusClosed : + chat.status === "INVITE-ONLY" ? i18n.chatStatusInviteOnly : i18n.chatStatusOpen + + return div({ class: "tribe-card" }, + div({ class: "tribe-card-image-wrapper" }, + a({ href: `/chats/${encodeURIComponent(chat.key)}` }, + renderMediaBlob(chat.image, "/assets/images/default-avatar.png", { class: "tribe-card-hero-image" }) + ) + ), + div({ class: "tribe-card-body" }, + h2({ class: "tribe-card-title" }, + a({ href: `/chats/${encodeURIComponent(chat.key)}` }, "\uD83D\uDD12 " + (chat.title || i18n.chatUntitled)) + ), + chat.description ? p({ class: "tribe-card-description" }, chat.description) : null, + br(), + table({ class: "tribe-info-table" }, + tr( + td({ class: "tribe-info-label" }, i18n.chatStatus), + td({ class: "tribe-info-value", colspan: "3" }, statusLabel) + ) + ), + div({ class: "tribe-card-members" }, + span({ class: "tribe-members-count" }, `${i18n.chatParticipants}: ${safeArr(chat.members).length}`) + ), + div({ class: "visit-btn-centered" }, + a({ href: `/chats/${encodeURIComponent(chat.key)}`, class: "filter-btn" }, i18n.chatVisitChat) + ) + ) + ) +} + +const renderChatForm = (filter, chat = {}, params = {}) => { + const isEdit = filter === "edit" + const returnTo = safeText(params.returnTo) || buildReturnTo("all") + const tribeId = safeText(params.tribeId || "") + return div({ class: "div-center audio-form" }, + h2(isEdit ? i18n.chatUpdate : i18n.chatCreate), + form({ action: isEdit ? `/chats/update/${encodeURIComponent(chat.key || "")}` : "/chats/create", method: "POST", enctype: "multipart/form-data" }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + tribeId ? input({ type: "hidden", name: "tribeId", value: tribeId }) : null, + span(i18n.title || "Title"), br(), + input({ type: "text", name: "title", required: true, placeholder: i18n.chatTitlePlaceholder, value: chat.title || "" }), br(), br(), + span(i18n.chatDescription), br(), + textarea({ name: "description", rows: 4, placeholder: i18n.chatDescriptionPlaceholder }, chat.description || ""), br(), br(), + span(i18n.chatImageLabel || "Select an image file (.jpeg, .jpg, .png, .gif)"), br(), + input({ type: "file", name: "image", accept: "image/*" }), br(), br(), + span(i18n.chatCategory), br(), + select({ name: "category" }, + option({ value: "" }, "\u2014"), + ALL_CATS.map(cat => + option({ value: cat, ...(chat.category === cat ? { selected: true } : {}) }, catLabel(cat)) + ) + ), br(), br(), + span(i18n.chatStatusLabel || "Status"), br(), + select({ name: "status" }, + option({ value: "OPEN", ...((!chat.status || chat.status === "OPEN") ? { selected: true } : {}) }, i18n.chatStatusOpen), + option({ value: "INVITE-ONLY", ...(chat.status === "INVITE-ONLY" ? { selected: true } : {}) }, i18n.chatStatusInviteOnly) + ), br(), br(), + span(i18n.shopTags || "Tags"), br(), + input({ type: "text", name: "tags", placeholder: i18n.chatTagsPlaceholder, value: safeArr(chat.tags).join(", ") }), br(), br(), + button({ type: "submit" }, isEdit ? i18n.chatUpdate : i18n.chatCreate) + ) + ) +} + +const renderMessageText = (text) => { + if (!text) return span({ class: "chat-message-text" }, "") + const lines = String(text).split("\n") + const nodes = [] + lines.forEach((line, idx) => { + const rendered = renderUrl(line) + nodes.push(...rendered) + if (idx < lines.length - 1) nodes.push(br()) + }) + return span({ class: "chat-message-text" }, ...nodes) +} + +const renderMessage = (msg, chatAuthor) => { + const isAuthor = String(msg.author) === String(chatAuthor) + const isSelf = String(msg.author) === String(userId) + const dateStr = moment(msg.createdAt).format("YYYY/MM/DD HH:mm") + const shortId = msg.author ? "@" + msg.author.slice(1, 9) + "\u2026" : "?" + const authorLink = msg.author + ? a({ href: `/author/${encodeURIComponent(msg.author)}`, class: "user-link" }, shortId) + : span("?") + + const imageNode = msg.image ? renderMediaBlob(msg.image, null, { class: "chat-message-image" }) : null + + return div({ class: isSelf ? "chat-message chat-message-self" : isAuthor ? "chat-message chat-message-author" : "chat-message" }, + div({ class: "chat-message-meta" }, + span({ class: "chat-message-sender" }, authorLink), + span({ class: "chat-message-date" }, ` [ ${dateStr} ]`) + ), + imageNode ? div({ class: "chat-message-image-wrap" }, imageNode) : null, + renderMessageText(msg.text || "") + ) +} + + +exports.renderChatInvitePage = (code) => { + const pageContent = div({ class: "invite-page" }, + h2(i18n.tribeInviteCodeText, code), + form({ method: "GET", action: "/chats" }, + input({ type: "hidden", name: "filter", value: "all" }), + button({ type: "submit", class: "filter-btn" }, i18n.walletBack) + ) + ) + return template(i18n.chatInviteMode || "Invite", section(pageContent)) +} + +exports.chatsView = async (chats, filter, chatToEdit = null, params = {}) => { + const q = safeText(params.q || "") + const list = safeArr(chats) + + const isForm = filter === "create" || filter === "edit" + + const chatHeaderMap = { + all: i18n.chatsTitle, + mine: i18n.chatMineSectionTitle || "Your Chats", + recent: i18n.chatRecentTitle || "Recent Chats", + favorites: i18n.chatFavoritesTitle || "Favorites", + open: i18n.chatOpenTitle || "Open Chats", + closed: i18n.chatClosedTitle || "Closed Chats" + } + const headerText = chatHeaderMap[filter] || i18n.chatsTitle + + return template( + i18n.chatsTitle, + section( + div({ class: "tags-header" }, + h2(headerText), + p(i18n.modulesChatsDescription) + ) + ), + section(renderModeButtons(filter)), + !isForm + ? section( + div({ class: "filters" }, + form({ method: "GET", action: "/chats" }, + input({ type: "hidden", name: "filter", value: filter }), + input({ type: "text", name: "q", placeholder: i18n.chatSearchPlaceholder, value: q }), + br(), + button({ type: "submit" }, i18n.search), + br() + ) + ) + ) + : null, + section( + isForm + ? renderChatForm(filter, filter === "edit" ? (chatToEdit || {}) : {}, params) + : div({ class: "tribe-grid" }, + list.length + ? list.map(chat => renderChatCard(chat, filter, { q })) + : p(i18n.chatNoItems) + ) + ) + ) +} + +exports.singleChatView = async (chat, filter, messages = [], params = {}) => { + const q = safeText(params.q || "") + const returnTo = safeText(params.returnTo) || buildReturnTo(filter, { q }) + const isAuthor = String(chat.author) === String(userId) + const isMember = safeArr(chat.members).includes(userId) + const fullShareUrl = `/chats/${encodeURIComponent(chat.key)}` + const isRestrictedInviteOnly = !isMember && !isAuthor && chat.status === "INVITE-ONLY" + + const statusLabel = chat.status === "CLOSED" ? i18n.chatStatusClosed : + chat.status === "INVITE-ONLY" ? i18n.chatStatusInviteOnly : i18n.chatStatusOpen + + const chatSide = div({ class: "tribe-side" }, + h2("\uD83D\uDD12 " + (chat.title || i18n.chatUntitled)), + renderMediaBlob(chat.image, "/assets/images/default-avatar.png", { class: "tribe-detail-image" }), + div({ class: "shop-share" }, + span({ class: "tribe-info-label" }, `${i18n.chatShareUrl}: `), + input({ type: "text", value: fullShareUrl, readonly: true, class: "shop-share-input" }) + ), + div({ class: "tribe-card-members" }, + span({ class: "tribe-members-count" }, `${i18n.chatParticipants}: ${safeArr(chat.members).length}`) + ), + table({ class: "tribe-info-table" }, + tr( + td({ class: "tribe-info-label" }, i18n.chatCreatedAt), + td({ class: "tribe-info-value", colspan: "3" }, moment(chat.createdAt).format("YYYY/MM/DD HH:mm")) + ), + isRestrictedInviteOnly ? null : tr( + td({ class: "tribe-info-value", colspan: "4" }, + a({ href: `/author/${encodeURIComponent(chat.author)}`, class: "user-link" }, chat.author) + ) + ), + tr( + td({ class: "tribe-info-label" }, i18n.chatStatus), + td({ class: "tribe-info-value", colspan: "3" }, statusLabel) + ), + !isRestrictedInviteOnly && chat.category ? tr( + td({ class: "tribe-info-label" }, i18n.chatCategoryLabel), + td({ class: "tribe-info-value", colspan: "3" }, catLabel(chat.category)) + ) : null + ), + isRestrictedInviteOnly ? null : div({ class: "tribe-side-actions" }, + isAuthor + ? form({ method: "POST", action: `/chats/generate-invite` }, + input({ type: "hidden", name: "chatId", value: chat.key }), + input({ type: "hidden", name: "returnTo", value: returnTo }), + button({ type: "submit", class: "tribe-action-btn" }, i18n.chatGenerateCode) + ) + : null, + form( + { method: "POST", action: chat.isFavorite ? `/chats/favorites/remove/${encodeURIComponent(chat.key)}` : `/chats/favorites/add/${encodeURIComponent(chat.key)}` }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + button({ type: "submit", class: "tribe-action-btn" }, chat.isFavorite ? i18n.chatRemoveFavorite : i18n.chatAddFavorite) + ), + chat.author && String(chat.author) !== String(userId) + ? form({ method: "GET", action: "/pm" }, + input({ type: "hidden", name: "recipients", value: chat.author }), + button({ type: "submit", class: "tribe-action-btn" }, i18n.chatPM || i18n.privateMessage) + ) + : null, + isAuthor + ? form({ method: "GET", action: `/chats/edit/${encodeURIComponent(chat.key)}` }, + button({ type: "submit", class: "tribe-action-btn" }, i18n.chatUpdate) + ) + : null, + isAuthor && chat.status !== "CLOSED" + ? form({ method: "POST", action: `/chats/close/${encodeURIComponent(chat.key)}` }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + button({ type: "submit", class: "tribe-action-btn" }, i18n.chatClose) + ) + : null, + isAuthor + ? form({ method: "POST", action: `/chats/delete/${encodeURIComponent(chat.key)}` }, + button({ type: "submit", class: "tribe-action-btn" }, i18n.chatDelete) + ) + : null, + !isAuthor && isMember + ? form({ method: "POST", action: `/chats/leave/${encodeURIComponent(chat.key)}` }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + button({ type: "submit", class: "tribe-action-btn" }, i18n.chatLeave) + ) + : null + ), + !isMember && chat.status === "INVITE-ONLY" + ? div({ class: "chat-join-section" }, + div({ class: "chat-invite-form" }, + form({ method: "POST", action: "/chats/join-code" }, + input({ type: "hidden", name: "returnTo", value: `/chats/${encodeURIComponent(chat.key)}` }), + label(i18n.chatInviteCodeLabel), br(), + input({ type: "text", name: "code", required: true, placeholder: i18n.chatInviteCode }), br(), br(), + button({ type: "submit", class: "filter-btn" }, i18n.chatJoinByInvite) + ) + ) + ) + : null, + !isRestrictedInviteOnly && safeArr(chat.tags).length + ? div({ class: "tribe-side-tags" }, + safeArr(chat.tags).map(tag => a({ href: `/search?query=%23${encodeURIComponent(tag)}`, class: "tag-link" }, `#${tag}`)) + ) + : null + ) + + const msgList = safeArr(messages) + const canWrite = (isMember || chat.status === "OPEN") && chat.status !== "CLOSED" + + const chatMain = isRestrictedInviteOnly + ? div({ class: "tribe-main chat-full-width" }, p({ class: "access-denied-msg" }, i18n.chatAccessDenied)) + : div({ class: "tribe-main chat-full-width" }, + canWrite + ? div({ class: "chat-message-form" }, + form({ method: "POST", action: `/chats/${encodeURIComponent(chat.key)}/message`, enctype: "multipart/form-data" }, + input({ type: "hidden", name: "returnTo", value: `/chats/${encodeURIComponent(chat.key)}` }), + textarea({ name: "text", rows: 3, placeholder: i18n.chatMessagePlaceholder }), br(), + span(i18n.chatImageLabel || "Select an image file (.jpeg, .jpg, .png, .gif)"), br(), + input({ type: "file", name: "image", accept: "image/*" }), br(), br(), + button({ type: "submit", class: "filter-btn" }, i18n.chatSendMessage) + ) + ) + : null, + div({ class: "chat-messages-list" }, + msgList.length + ? msgList.map(msg => renderMessage(msg, chat.author)) + : p({ class: "chat-no-messages" }, i18n.chatNoMessages) + ) + ) + + return template( + chat.title || i18n.chatUntitled, + section( + div({ class: "tags-header" }, + h2(i18n.chatsTitle), + p(i18n.modulesChatsDescription) + ), + renderModeButtons(filter || "all") + ), + section( + div({ class: "tribe-details" }, + chatSide, + chatMain + ) + ) + ) +} diff --git a/nodejs-project/nodejs-project/src/views/cipher_view.js b/nodejs-project/nodejs-project/src/views/cipher_view.js index 03512ab4..6e3ecb08 100644 --- a/nodejs-project/nodejs-project/src/views/cipher_view.js +++ b/nodejs-project/nodejs-project/src/views/cipher_view.js @@ -49,7 +49,7 @@ const cipherView = async (encryptedText = "", decryptedText = "", iv = "", passw value: encryptedText }), br(), - label(i18n.cipherPasswordLabel), + label(i18n.cipherPasswordDecryptLabel), br(), input({ type: "password", @@ -67,10 +67,7 @@ const cipherView = async (encryptedText = "", decryptedText = "", iv = "", passw ? div({ class: "cipher-result visible encrypted-result" }, label(i18n.cipherEncryptedMessageLabel), br(),br(), - div({ class: "cipher-text" }, encryptedText), - label(i18n.cipherPasswordUsedLabel), - br(),br(), - div({ class: "cipher-text" }, password) + div({ class: "cipher-text" }, encryptedText) ) : null; @@ -102,4 +99,3 @@ const cipherView = async (encryptedText = "", decryptedText = "", iv = "", passw }; exports.cipherView = cipherView; - diff --git a/nodejs-project/nodejs-project/src/views/courts_view.js b/nodejs-project/nodejs-project/src/views/courts_view.js index 39e1f078..71f3724b 100644 --- a/nodejs-project/nodejs-project/src/views/courts_view.js +++ b/nodejs-project/nodejs-project/src/views/courts_view.js @@ -83,7 +83,6 @@ const CaseForm = () => placeholder: 'Subject or short description' }), br(), - br(), label('Case type'), br(), select( @@ -98,10 +97,11 @@ const CaseForm = () => type: 'text', name: 'respondentId', placeholder: i18n.courtsCaseRespondentPh, - required: true + required: true, + pattern: '^@[A-Za-z0-9+/]+=*\\.ed25519$', + title: i18n.courtsRespondentInvalid || 'Must be a valid SSB ID (@...ed25519)' }), br(), - br(), label(i18n.courtsCaseMethod), br(), select( @@ -162,7 +162,7 @@ const EvidenceForm = (caseId) => br(), label(i18n.uploadMedia || 'Upload media (max-size: 50MB)'), br(), - input({ type: 'file', name: 'image', accept: 'image/*' }), + input({ type: 'file', name: 'image' }), br(), br(), button({ type: 'submit', class: 'create-button' }, i18n.courtsEvidenceSubmit) @@ -961,7 +961,7 @@ const NominationsTable = (nominations = [], currentUserId = '') => { method: 'POST', action: `/courts/judges/${encodeURIComponent(n.id)}/vote` }, - button({ type: 'submit', class: 'vote-btn' }, i18n.courtsThVote) + button({ class: 'vote-btn' }, i18n.courtsThVote) ) ) ); diff --git a/nodejs-project/nodejs-project/src/views/cv_view.js b/nodejs-project/nodejs-project/src/views/cv_view.js index 5f0c071e..1172867c 100644 --- a/nodejs-project/nodejs-project/src/views/cv_view.js +++ b/nodejs-project/nodejs-project/src/views/cv_view.js @@ -48,7 +48,7 @@ exports.createCVView = async (cv = {}, editMode = false) => { label(i18n.cvLanguagesLabel), br(), input({ type: "text", name: "languages", value: cv.languages || "" }), br(), label(i18n.cvPhotoLabel), br(), - input({ type: "file", name: "image", accept: "image/*" }), br(), br(), + input({ type: "file", name: "image" }), br(), br(), label(i18n.cvPersonalExperiencesLabel), br(), textarea({ name: "personalExperiences", rows: 4 }, cv.personalExperiences || ""), br(), label(i18n.cvPersonalSkillsLabel), br(), diff --git a/nodejs-project/nodejs-project/src/views/document_view.js b/nodejs-project/nodejs-project/src/views/document_view.js index 366a5cb8..0c828018 100644 --- a/nodejs-project/nodejs-project/src/views/document_view.js +++ b/nodejs-project/nodejs-project/src/views/document_view.js @@ -98,7 +98,7 @@ const renderDocumentCommentsSection = (documentKey, rootId, comments = [], retur class: "comment-textarea", placeholder: i18n.voteNewCommentPlaceholder }), - div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob", accept: "image/*,audio/*,video/*,application/pdf" })), + div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob" })), br(), button({ type: "submit", class: "comment-submit-btn" }, i18n.voteNewCommentButton) ) @@ -179,8 +179,6 @@ const renderDocumentList = (documents, filter, params = {}) => { doc?.url ? div({ id: pdfId, class: "pdf-viewer-container", "data-pdf-url": `/blob/${encodeURIComponent(doc.url)}` }) : p(i18n.documentNoFile), - safeText(doc.description) ? p(...renderUrl(doc.description)) : null, - renderTags(doc.tags), div( { class: "card-comments-summary" }, span({ class: "card-label" }, i18n.voteCommentsLabel + ":"), @@ -213,20 +211,7 @@ const renderDocumentList = (documents, filter, params = {}) => { ) : null ); - })(), - div( - { class: "voting-buttons" }, - opinionCategories.map((category) => - form( - { method: "POST", action: `/documents/opinions/${encodeURIComponent(doc.key)}/${category}` }, - input({ type: "hidden", name: "returnTo", value: returnTo }), - button( - { type: "submit", class: "vote-btn" }, - `${i18n[`vote${category.charAt(0).toUpperCase() + category.slice(1)}`] || category} [${doc.opinions?.[category] || 0}]` - ) - ) - ) - ) + })() ); }) : p(params.q ? i18n.documentNoMatch : i18n.noDocuments); @@ -251,20 +236,18 @@ const renderDocumentForm = (filter, documentId, docToEdit, params = {}) => { input({ type: "file", name: "document", accept: "application/pdf", required: filter !== "edit" }), br(), br(), - label(i18n.documentTagsLabel), - br(), - input({ type: "text", name: "tags", placeholder: i18n.documentTagsPlaceholder, value: tagsValue }), - br(), - br(), label(i18n.documentTitleLabel), br(), input({ type: "text", name: "title", placeholder: i18n.documentTitlePlaceholder, value: docToEdit?.title || "" }), br(), - br(), label(i18n.documentDescriptionLabel), br(), textarea({ name: "description", placeholder: i18n.documentDescriptionPlaceholder, rows: "4" }, docToEdit?.description || ""), br(), + label(i18n.documentTagsLabel), + br(), + input({ type: "text", name: "tags", placeholder: i18n.documentTagsPlaceholder, value: tagsValue }), + br(), br(), button({ type: "submit" }, filter === "edit" ? i18n.documentUpdateButton : i18n.documentCreateButton) ) @@ -441,7 +424,7 @@ exports.singleDocumentView = async (doc, filter = "all", comments = [], params = { method: "POST", action: `/documents/opinions/${encodeURIComponent(doc.key)}/${category}` }, input({ type: "hidden", name: "returnTo", value: returnTo }), button( - { type: "submit", class: "vote-btn" }, + { class: "vote-btn" }, `${i18n[`vote${category.charAt(0).toUpperCase() + category.slice(1)}`] || category} [${doc.opinions?.[category] || 0}]` ) ) diff --git a/nodejs-project/nodejs-project/src/views/event_view.js b/nodejs-project/nodejs-project/src/views/event_view.js index 6f73b6f1..92eabacb 100644 --- a/nodejs-project/nodejs-project/src/views/event_view.js +++ b/nodejs-project/nodejs-project/src/views/event_view.js @@ -3,6 +3,7 @@ const { template, i18n } = require("./main_views"); const moment = require("../server/node_modules/moment"); const { config } = require("../server/SSB_server.js"); const { renderUrl } = require("../backend/renderUrl"); +const { renderMapLocationUrl, renderMapEmbed, renderMapLocationVisitLabel } = require("./maps_view"); const userId = config.keys.id; @@ -75,6 +76,7 @@ const renderEventOwnerActions = (e, returnTo) => { const renderEventAttendAction = (e, isAttending, returnTo) => { const st = normalizeEventStatus(e.status); if (st !== "OPEN") return null; + if (e.organizer === userId) return null; return form( { method: "POST", action: `/events/attend/${encodeURIComponent(e.id)}` }, input({ type: "hidden", name: "returnTo", value: returnTo }), @@ -156,7 +158,7 @@ const renderEventCommentsSection = (eventId, comments = [], currentFilter = "all class: "comment-textarea", placeholder: i18n.voteNewCommentPlaceholder }), - div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob", accept: "image/*,audio/*,video/*,application/pdf" })), + div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob" })), br(), button({ type: "submit", class: "comment-submit-btn" }, i18n.voteNewCommentButton) ) @@ -209,32 +211,14 @@ const renderEventItem = (e, filter) => { renderCardField(i18n.eventDescriptionLabel + ":", ""), p(...renderUrl(e.description)), renderCardField(i18n.eventDateLabel + ":", e.date ? moment(e.date).format("YYYY/MM/DD HH:mm:ss") : ""), - e.location && String(e.location).trim() ? renderCardField(i18n.eventLocationLabel + ":", e.location) : null, - renderCardField(i18n.eventPrivacyLabel + ":", privacyLabel(e.isPublic)), renderCardField(i18n.eventStatus + ":", eventStatusLabel(e.status)), + renderCardField(i18n.eventPrivacyLabel + ":", privacyLabel(e.isPublic)), + e.location && String(e.location).trim() ? renderCardField(i18n.eventLocationLabel + ":", e.location) : null, + renderMapLocationVisitLabel(e.mapUrl), urlHref ? renderCardField(i18n.eventUrlLabel + ":", a({ href: urlHref, target: "_blank", rel: "noopener noreferrer" }, urlHref)) : null, renderCardField(i18n.eventPriceLabel + ":", parseFloat(e.price || 0).toFixed(6) + " ECO"), - br(), - div( - { class: "card-field" }, - span({ class: "card-label" }, i18n.eventAttendees + ":"), - span( - { class: "card-value" }, - attendees.length - ? attendees - .filter(Boolean) - .map((id, i) => [i > 0 ? ", " : "", a({ class: "user-link", href: `/author/${encodeURIComponent(id)}` }, id)]) - .flat() - : i18n.noAttendees - ) - ), - br(), - e.tags && e.tags.filter(Boolean).length - ? div( - { class: "card-tags" }, - e.tags.filter(Boolean).map((tag) => a({ href: `/search?query=%23${encodeURIComponent(tag)}`, class: "tag-link" }, `#${tag}`)) - ) - : null, + renderCardField(i18n.eventAttendees + ":", String(attendees.length)), + br, div( { class: "card-comments-summary" }, span({ class: "card-label" }, i18n.voteCommentsLabel + ":"), @@ -330,7 +314,8 @@ exports.eventView = async (events, filter, eventId, returnTo) => { form( { action: currentFilter === "edit" ? `/events/update/${encodeURIComponent(eventId)}` : "/events/create", - method: "POST" + method: "POST", + enctype: "multipart/form-data" }, input({ type: "hidden", name: "returnTo", value: ret }), label(i18n.eventTitleLabel), @@ -343,7 +328,6 @@ exports.eventView = async (events, filter, eventId, returnTo) => { value: currentFilter === "edit" ? eventToEdit.title || "" : "" }), br(), - br(), label(i18n.eventDescriptionLabel), br(), textarea( @@ -351,6 +335,10 @@ exports.eventView = async (events, filter, eventId, returnTo) => { currentFilter === "edit" ? eventToEdit.description || "" : "" ), br(), + label(i18n.uploadMedia), + br(), + input({ type: "file", name: "image", accept: "image/*" }), + br(), br(), label(i18n.eventDateLabel), br(), @@ -383,6 +371,10 @@ exports.eventView = async (events, filter, eventId, returnTo) => { value: currentFilter === "edit" ? eventToEdit.location || "" : "" }), br(), + label(i18n.mapLocationTitle || "Map Location"), + br(), + input({ type: "text", name: "mapUrl", placeholder: i18n.mapUrlPlaceholder || "/maps/MAP_ID", value: eventToEdit?.mapUrl || "" }), + br(), br(), label(i18n.eventUrlLabel), br(), @@ -414,31 +406,44 @@ exports.eventView = async (events, filter, eventId, returnTo) => { ); }; -exports.singleEventView = async (event, filter, comments = []) => { +exports.singleEventView = async (event, filter, comments = [], params = {}) => { const currentFilter = filter || "all"; const commentCount = typeof event.commentCount === "number" ? event.commentCount : 0; const attendees = safeArray(event.attendees); const urlHref = safeExternalHref(event.url); + const isPrivateNoAccess = normalizePrivacy(event.isPublic) === "private" && + String(event.organizer) !== String(userId) && + !attendees.includes(userId); + + const filterBar = div( + { class: "filters" }, + form( + { method: "GET", action: "/events" }, + button({ type: "submit", name: "filter", value: "all", class: currentFilter === "all" ? "filter-btn active" : "filter-btn" }, i18n.eventFilterAll), + button({ type: "submit", name: "filter", value: "mine", class: currentFilter === "mine" ? "filter-btn active" : "filter-btn" }, i18n.eventFilterMine), + button({ type: "submit", name: "filter", value: "today", class: currentFilter === "today" ? "filter-btn active" : "filter-btn" }, i18n.eventFilterToday), + button({ type: "submit", name: "filter", value: "week", class: currentFilter === "week" ? "filter-btn active" : "filter-btn" }, i18n.eventFilterWeek), + button({ type: "submit", name: "filter", value: "month", class: currentFilter === "month" ? "filter-btn active" : "filter-btn" }, i18n.eventFilterMonth), + button({ type: "submit", name: "filter", value: "year", class: currentFilter === "year" ? "filter-btn active" : "filter-btn" }, i18n.eventFilterYear), + button({ type: "submit", name: "filter", value: "archived", class: currentFilter === "archived" ? "filter-btn active" : "filter-btn" }, i18n.eventFilterArchived), + button({ type: "submit", name: "filter", value: "create", class: "create-button" }, i18n.eventCreateButton) + ) + ); + + if (isPrivateNoAccess) { + return template( + event.title, + section(filterBar, p({ class: "access-denied-msg" }, i18n.contentAccessDenied)) + ); + } + const topbar = renderEventTopbar(event, currentFilter, { single: true }); return template( event.title, section( - div( - { class: "filters" }, - form( - { method: "GET", action: "/events" }, - button({ type: "submit", name: "filter", value: "all", class: currentFilter === "all" ? "filter-btn active" : "filter-btn" }, i18n.eventFilterAll), - button({ type: "submit", name: "filter", value: "mine", class: currentFilter === "mine" ? "filter-btn active" : "filter-btn" }, i18n.eventFilterMine), - button({ type: "submit", name: "filter", value: "today", class: currentFilter === "today" ? "filter-btn active" : "filter-btn" }, i18n.eventFilterToday), - button({ type: "submit", name: "filter", value: "week", class: currentFilter === "week" ? "filter-btn active" : "filter-btn" }, i18n.eventFilterWeek), - button({ type: "submit", name: "filter", value: "month", class: currentFilter === "month" ? "filter-btn active" : "filter-btn" }, i18n.eventFilterMonth), - button({ type: "submit", name: "filter", value: "year", class: currentFilter === "year" ? "filter-btn active" : "filter-btn" }, i18n.eventFilterYear), - button({ type: "submit", name: "filter", value: "archived", class: currentFilter === "archived" ? "filter-btn active" : "filter-btn" }, i18n.eventFilterArchived), - button({ type: "submit", name: "filter", value: "create", class: "create-button" }, i18n.eventCreateButton) - ) - ), + filterBar, div( { class: "card card-section event" }, topbar ? topbar : null, @@ -446,11 +451,18 @@ exports.singleEventView = async (event, filter, comments = []) => { renderCardField(i18n.eventDescriptionLabel + ":", ""), p(...renderUrl(event.description)), renderCardField(i18n.eventDateLabel + ":", event.date ? moment(event.date).format("YYYY/MM/DD HH:mm:ss") : ""), - event.location && String(event.location).trim() ? renderCardField(i18n.eventLocationLabel + ":", event.location) : null, - renderCardField(i18n.eventPrivacyLabel + ":", privacyLabel(event.isPublic)), renderCardField(i18n.eventStatus + ":", eventStatusLabel(event.status)), + renderCardField(i18n.eventPrivacyLabel + ":", privacyLabel(event.isPublic)), + event.location && String(event.location).trim() ? renderCardField(i18n.eventLocationLabel + ":", event.location) : null, + renderMapEmbed(params.mapData, event.mapUrl), urlHref ? renderCardField(i18n.eventUrlLabel + ":", a({ href: urlHref, target: "_blank", rel: "noopener noreferrer" }, urlHref)) : null, renderCardField(i18n.eventPriceLabel + ":", parseFloat(event.price || 0).toFixed(6) + " ECO"), + event.tags && event.tags.filter(Boolean).length + ? div( + { class: "card-tags" }, + event.tags.filter(Boolean).map((tag) => a({ href: `/search?query=%23${encodeURIComponent(tag)}`, class: "tag-link" }, `#${tag}`)) + ) + : null, br(), div( { class: "card-field" }, @@ -466,18 +478,6 @@ exports.singleEventView = async (event, filter, comments = []) => { ) ), br(), - event.tags && event.tags.filter(Boolean).length - ? div( - { class: "card-tags" }, - event.tags.filter(Boolean).map((tag) => a({ href: `/search?query=%23${encodeURIComponent(tag)}`, class: "tag-link" }, `#${tag}`)) - ) - : null, - div( - { class: "card-comments-summary" }, - span({ class: "card-label" }, i18n.voteCommentsLabel + ":"), - span({ class: "card-value" }, String(commentCount)) - ), - br(), p( { class: "card-footer" }, span({ class: "date-link" }, `${moment(event.createdAt).format("YYYY/MM/DD HH:mm:ss")} ${i18n.performed} `), diff --git a/nodejs-project/nodejs-project/src/views/favorites_view.js b/nodejs-project/nodejs-project/src/views/favorites_view.js index bc276da5..72eea86b 100644 --- a/nodejs-project/nodejs-project/src/views/favorites_view.js +++ b/nodejs-project/nodejs-project/src/views/favorites_view.js @@ -131,9 +131,29 @@ exports.favoritesView = async (items, filter = "all", counts = {}) => { { type: "submit", name: "filter", value: "images", class: filter === "images" ? "filter-btn active" : "filter-btn" }, `${i18n.favoritesFilterImages} (${c.images || 0})` ), + button( + { type: "submit", name: "filter", value: "maps", class: filter === "maps" ? "filter-btn active" : "filter-btn" }, + `${i18n.favoritesFilterMaps} (${c.maps || 0})` + ), + button( + { type: "submit", name: "filter", value: "pads", class: filter === "pads" ? "filter-btn active" : "filter-btn" }, + `${i18n.favoritesFilterPads || "PADS"} (${c.pads || 0})` + ), + button( + { type: "submit", name: "filter", value: "chats", class: filter === "chats" ? "filter-btn active" : "filter-btn" }, + `${i18n.favoritesFilterChats || "CHATS"} (${c.chats || 0})` + ), + button( + { type: "submit", name: "filter", value: "calendars", class: filter === "calendars" ? "filter-btn active" : "filter-btn" }, + `${i18n.favoritesFilterCalendars || "CALENDARS"} (${c.calendars || 0})` + ), button( { type: "submit", name: "filter", value: "videos", class: filter === "videos" ? "filter-btn active" : "filter-btn" }, `${i18n.favoritesFilterVideos} (${c.videos || 0})` + ), + button( + { type: "submit", name: "filter", value: "torrents", class: filter === "torrents" ? "filter-btn active" : "filter-btn" }, + `${i18n.favoritesFilterTorrents || "TORRENTS"} (${c.torrents || 0})` ) ) ), diff --git a/nodejs-project/nodejs-project/src/views/feed_view.js b/nodejs-project/nodejs-project/src/views/feed_view.js index a432e5c5..4c36810c 100644 --- a/nodejs-project/nodejs-project/src/views/feed_view.js +++ b/nodejs-project/nodejs-project/src/views/feed_view.js @@ -1,9 +1,11 @@ -const { div, h2, p, section, button, form, a, span, textarea, br, input, h1 } = require("../server/node_modules/hyperaxe"); +const { div, h2, p, section, button, form, a, span, textarea, br, input, h1, label } = require("../server/node_modules/hyperaxe"); const { template, i18n } = require("./main_views"); const { config } = require("../server/SSB_server.js"); const { renderTextWithStyles } = require("../backend/renderTextWithStyles"); const opinionCategories = require("../backend/opinion_categories"); +const moment = require("../server/node_modules/moment"); const { sanitizeHtml } = require('../backend/sanitizeHtml'); +const { renderUrl } = require("../backend/renderUrl"); const FEED_TEXT_MIN = Number(config?.feed?.minLength ?? 1); const FEED_TEXT_MAX = Number(config?.feed?.maxLength ?? 280); @@ -70,6 +72,76 @@ const renderVotesSummary = (opinions = {}) => { ); }; +const renderCardField = (labelText, value) => + div( + { class: "card-field" }, + span({ class: "card-label" }, labelText), + span({ class: "card-value" }, value) + ); + +const renderFeedCommentsSection = (feedKey, comments = []) => { + const list = Array.isArray(comments) ? comments : []; + const commentsCount = list.length; + + return div( + { class: "vote-comments-section" }, + div( + { class: "comments-count" }, + span({ class: "card-label" }, i18n.voteCommentsLabel + ": "), + span({ class: "card-value" }, String(commentsCount)) + ), + div( + { class: "comment-form-wrapper" }, + h2({ class: "comment-form-title" }, i18n.voteNewCommentLabel || i18n.feedPostComment || "Post a comment"), + form( + { method: "POST", action: `/feed/${encodeURIComponent(feedKey)}/comments`, class: "comment-form", enctype: "multipart/form-data" }, + textarea({ + id: "comment-text", + name: "text", + rows: 4, + class: "comment-textarea", + placeholder: i18n.voteNewCommentPlaceholder || "" + }), + div({ class: "comment-file-upload" }, label(i18n.uploadMedia || "Upload media"), input({ type: "file", name: "blob" })), + br(), + button({ type: "submit", class: "comment-submit-btn" }, i18n.voteNewCommentButton || i18n.feedPostComment || "Send") + ) + ), + list.length + ? div( + { class: "comments-list" }, + list.map((c) => { + const author = c?.value?.author || ""; + const ts = c?.value?.timestamp || c?.timestamp; + const absDate = ts ? moment(ts).format("YYYY/MM/DD HH:mm:ss") : ""; + const relDate = ts ? moment(ts).fromNow() : ""; + const userName = author && author.includes("@") ? author.split("@")[1] : author; + + const content = c?.value?.content || {}; + const text = content.text || c?.value?.text || ""; + const threadRoot = content.fork || content.root || null; + + return div( + { class: "votations-comment-card" }, + span( + { class: "created-at" }, + span(i18n.createdBy), + author ? a({ href: `/author/${encodeURIComponent(author)}` }, `@${userName}`) : span("(unknown)"), + absDate ? span(" | ") : "", + absDate ? span({ class: "votations-comment-date" }, absDate) : "", + relDate ? span({ class: "votations-comment-date" }, " | ", i18n.sendTime) : "", + relDate && threadRoot + ? a({ href: `/thread/${encodeURIComponent(threadRoot)}#${encodeURIComponent(c.key)}` }, relDate) + : "" + ), + p({ class: "votations-comment-text" }, ...renderUrl(text)) + ); + }) + ) + : p({ class: "votations-no-comments" }, i18n.voteNoCommentsYet || i18n.noComments || "") + ); +}; + const renderFeedCard = (feed) => { const content = feed.value.content || {}; const rawText = typeof content.text === "string" ? content.text : ""; @@ -86,6 +158,7 @@ const renderFeedCard = (feed) => { const authorId = content.author || feed.value.author || ""; const refeedsNum = Number(content.refeeds || 0) || 0; + const commentCount = Number(content.commentCount || 0); const styledHtml = rewriteHashtagLinks(renderTextWithStyles(safeText)); return div( @@ -97,7 +170,7 @@ const renderFeedCard = (feed) => { h1(String(refeedsNum)), form( { method: "POST", action: `/feed/refeed/${encodeURIComponent(feed.key)}` }, - button({ class: alreadyRefeeded ? "refeed-btn active" : "refeed-btn", type: "submit", disabled: !!alreadyRefeeded }, i18n.refeedButton) + button({ class: alreadyRefeeded ? "refeed-btn active" : "refeed-btn", type: "submit", ...(alreadyRefeeded ? { disabled: true } : {}) }, i18n.refeedButton) ), alreadyRefeeded ? p({ class: "muted" }, i18n.alreadyRefeeded) : null ), @@ -126,21 +199,15 @@ const renderFeedCard = (feed) => { ) ), div( - { class: "votes-wrapper" }, - renderVotesSummary(content.opinions || {}), - div( - { class: "voting-buttons" }, - opinionCategories.map((cat) => - form( - { method: "POST", action: `/feed/opinions/${encodeURIComponent(feed.key)}/${cat}` }, - button( - { class: alreadyVoted ? "vote-btn disabled" : "vote-btn", type: "submit", disabled: !!alreadyVoted }, - `${i18n["vote" + cat.charAt(0).toUpperCase() + cat.slice(1)] || cat} [${content.opinions?.[cat] || 0}]` - ) - ) - ) - ), - alreadyVoted ? p({ class: "muted" }, i18n.alreadyVoted) : null + { class: "card-comments-summary" }, + span({ class: "card-label" }, `${i18n.voteCommentsLabel || "Comments"}:`), + span({ class: "card-value" }, String(commentCount)), + br(), + br(), + form( + { method: "GET", action: `/feed/${encodeURIComponent(feed.key)}` }, + button({ type: "submit", class: "filter-btn" }, i18n.voteCommentsForumButton || i18n.feedOpenDiscussion || "Open Discussion") + ) ) ); }; @@ -240,3 +307,81 @@ exports.feedCreateView = (opts = {}) => { ); }; +exports.singleFeedView = (feed, comments = []) => { + const content = feed.value?.content || {}; + const rawText = typeof content.text === "string" ? content.text : ""; + const safeText = rawText.trim(); + const authorId = content.author || feed.value?.author || ""; + const createdAt = formatDate(feed); + const styledHtml = rewriteHashtagLinks(renderTextWithStyles(safeText)); + const me = config?.keys?.id; + const alreadyVoted = Array.isArray(content.opinions_inhabitants) && me ? content.opinions_inhabitants.includes(me) : false; + const alreadyRefeeded = Array.isArray(content.refeeds_inhabitants) && me ? content.refeeds_inhabitants.includes(me) : false; + const refeedsNum = Number(content.refeeds || 0) || 0; + const tags = extractTags(safeText); + + return template( + i18n.feedDetailTitle || "Feed", + section( + div( + { class: "filters" }, + form( + { method: "GET", action: "/feed", class: "ui-toolbar ui-toolbar--filters" }, + button({ type: "submit", name: "filter", value: "ALL", class: "filter-btn" }, i18n.ALLButton || "ALL"), + button({ type: "submit", name: "filter", value: "MINE", class: "filter-btn" }, i18n.MINEButton || "MINE"), + button({ type: "submit", name: "filter", value: "TODAY", class: "filter-btn" }, i18n.TODAYButton || "TODAY"), + button({ type: "submit", name: "filter", value: "TOP", class: "filter-btn" }, i18n.TOPButton || "TOP"), + form({ method: "GET", action: "/feed/create" }, button({ type: "submit", class: "create-button" }, i18n.createFeedTitle || "Create Feed")) + ) + ), + div( + { class: "bookmark-item card feed-detail-card" }, + br, + div( + { class: "feed-row" }, + div( + { class: "refeed-column" }, + h1(String(refeedsNum)), + form( + { method: "POST", action: `/feed/refeed/${encodeURIComponent(feed.key)}` }, + button({ class: alreadyRefeeded ? "refeed-btn active" : "refeed-btn", type: "submit", ...(alreadyRefeeded ? { disabled: true } : {}) }, i18n.refeedButton) + ), + alreadyRefeeded ? p({ class: "muted" }, i18n.alreadyRefeeded) : null + ), + div( + { class: "feed-main" }, + div({ class: "feed-text", innerHTML: sanitizeHtml(styledHtml) }), + tags.length + ? div( + { class: "card-tags" }, + tags.map((tag) => a({ href: `/search?query=%23${encodeURIComponent(tag)}`, class: "tag-link" }, `#${tag}`)) + ) + : null, + br, + p( + { class: "card-footer" }, + span({ class: "date-link" }, `${createdAt} ${i18n.performed} `), + a({ href: `/author/${encodeURIComponent(authorId)}`, class: "user-link" }, authorId), + content._textEdited ? span({ class: "edited-badge" }, ` · ${i18n.edited || "edited"}`) : null + ) + ) + ), + div( + { class: "voting-buttons" }, + opinionCategories.map((cat) => + form( + { method: "POST", action: `/feed/opinions/${encodeURIComponent(feed.key)}/${cat}` }, + button( + { class: alreadyVoted ? "vote-btn disabled" : "vote-btn", type: "submit", ...(alreadyVoted ? { disabled: true } : {}) }, + `${i18n["vote" + cat.charAt(0).toUpperCase() + cat.slice(1)] || cat} [${content.opinions?.[cat] || 0}]` + ) + ) + ) + ), + alreadyVoted ? p({ class: "muted" }, i18n.alreadyVoted) : null + ), + renderFeedCommentsSection(feed.key, comments) + ) + ); +}; + diff --git a/nodejs-project/nodejs-project/src/views/forum_view.js b/nodejs-project/nodejs-project/src/views/forum_view.js index a88d0151..20614ab9 100644 --- a/nodejs-project/nodejs-project/src/views/forum_view.js +++ b/nodejs-project/nodejs-project/src/views/forum_view.js @@ -6,6 +6,8 @@ const moment = require("../server/node_modules/moment"); const { template, i18n } = require('./main_views'); const { config } = require('../server/SSB_server.js'); const { renderUrl } = require('../backend/renderUrl'); +const { renderTextWithStyles } = require('../backend/renderTextWithStyles'); +const { sanitizeHtml } = require('../backend/sanitizeHtml'); const userId = config.keys.id; const BASE_FILTERS = ['hot','all','mine','recent','top']; @@ -62,9 +64,9 @@ const renderCreateForumButton = () => const renderVotes = (target, score, forumId) => div({ class: 'forum-score-box' }, form({ method: 'POST', action: `/forum/${encodeURIComponent(forumId)}/vote`, class: 'forum-score-form' }, - button({ type: 'submit', name: 'value', value: 1, class: 'score-btn' }, '▲'), + button({ name: 'value', value: 1, class: 'score-btn' }, '▲'), div({ class: 'score-total' }, String(score || 0)), - button({ type: 'submit', name: 'value', value: -1, class: 'score-btn' }, '▼'), + button({ name: 'value', value: -1, class: 'score-btn' }, '▼'), input({ type: 'hidden', name: 'target', value: target }), input({ type: 'hidden', name: 'forumId', value: forumId }) ) @@ -181,7 +183,10 @@ const renderForumList = (forums, currentFilter) => href: `/forum/${encodeURIComponent(f.key)}` }, f.title) ), - div({ class: 'forum-body' }, ...renderUrl(f.text || '')), + div({ + class: 'forum-body', + innerHTML: sanitizeHtml(renderTextWithStyles(f.text || '')) + }), div({ class: 'forum-meta' }, span({ class: 'forum-positive-votes' }, `▲: ${f.positiveVotes || 0}`), @@ -263,7 +268,7 @@ exports.singleForumView = async (forum, messagesData, currentFilter) => { h2(i18n.forumTitle), p(i18n.forumDescription) ), - div({ class: 'mode-buttons' }, + div({ class: 'mode-buttons-cols' }, generateFilterButtons(BASE_FILTERS, currentFilter, '/forum', { hot: i18n.forumFilterHot, all: i18n.forumFilterAll, @@ -313,12 +318,10 @@ exports.singleForumView = async (forum, messagesData, currentFilter) => { style: 'margin-left:12px;' }, forum.author) ), - div( - ...(forum.text || '').split('\n') - .map(l => l.trim()) - .filter(l => l) - .map(l => p(...renderUrl(l))) - ), + div({ + class: 'forum-body', + innerHTML: sanitizeHtml(renderTextWithStyles(forum.text || '')) + }), div({ class: 'forum-meta' }, span({ class: 'votes-count' }, `▲: ${messagesData.positiveVotes}`), diff --git a/nodejs-project/nodejs-project/src/views/games_view.js b/nodejs-project/nodejs-project/src/views/games_view.js new file mode 100644 index 00000000..839305c3 --- /dev/null +++ b/nodejs-project/nodejs-project/src/views/games_view.js @@ -0,0 +1,151 @@ +const { div, h2, h3, p, section, form, input, button, a, img, table, tr, td, th, span, iframe } = require("../server/node_modules/hyperaxe"); +const { template, i18n } = require('./main_views'); +const moment = require("../server/node_modules/moment"); + +const getGames = () => [ + { id: 'cocoland', title: () => i18n.gamesCocolandTitle, desc: () => i18n.gamesCocolandDesc }, + { id: 'ecoinflow', title: () => i18n.gamesTheFlowTitle, desc: () => i18n.gamesTheFlowDesc }, + { id: 'neoninfiltrator', title: () => i18n.gamesNeonInfiltratorTitle, desc: () => i18n.gamesNeonInfiltratorDesc }, + { id: 'audiopendulum', title: () => i18n.gamesAudioPendulumTitle, desc: () => i18n.gamesAudioPendulumDesc }, + { id: 'spaceinvaders', title: () => i18n.gamesSpaceInvadersTitle, desc: () => i18n.gamesSpaceInvadersDesc }, + { id: 'arkanoid', title: () => i18n.gamesArkanoidTitle, desc: () => i18n.gamesArkanoidDesc }, + { id: 'pingpong', title: () => i18n.gamesPingPongTitle, desc: () => i18n.gamesPingPongDesc }, + { id: 'asteroids', title: () => i18n.gamesAsteroidsTitle, desc: () => i18n.gamesAsteroidsDesc }, + { id: 'rockpaperscissors', title: () => i18n.gamesRockPaperScissorsTitle, desc: () => i18n.gamesRockPaperScissorsDesc }, + { id: 'tiktaktoe', title: () => i18n.gamesTikTakToeTitle, desc: () => i18n.gamesTikTakToeDesc }, + { id: 'flipflop', title: () => i18n.gamesFlipFlopTitle, desc: () => i18n.gamesFlipFlopDesc }, + { id: '8ball', title: () => i18n.games8BallTitle, desc: () => i18n.games8BallDesc }, + { id: 'artillery', title: () => i18n.gamesArtilleryTitle, desc: () => i18n.gamesArtilleryDesc }, + { id: 'labyrinth', title: () => i18n.gamesLabyrinthTitle, desc: () => i18n.gamesLabyrinthDesc }, + { id: 'cocoman', title: () => i18n.gamesCocomanTitle, desc: () => i18n.gamesCocomanDesc }, + { id: 'tetris', title: () => i18n.gamesTetrisTitle, desc: () => i18n.gamesTetrisDesc } +]; + +const shortId = (feedId) => feedId ? '@' + feedId.slice(1, 9) + '...' : '?'; + +const renderHallOfFame = (hall) => { + const games = getGames(); + const gamesWithScores = games.filter(g => hall[g.id] && hall[g.id].length > 0); + if (gamesWithScores.length === 0) { + return p({ class: 'no-content' }, i18n.gamesNoScores || 'No scores yet.'); + } + return div({ class: 'games-scoring-list' }, + gamesWithScores.map(game => + div({ class: 'game-scoring-section' }, + div({ class: 'game-scoring-header' }, + img({ src: `/game-assets/${game.id}/thumbnail.svg`, alt: game.title(), class: 'game-scoring-thumb', loading: 'lazy' }), + div({ class: 'game-scoring-info' }, + h3({ class: 'game-card-title' }, game.title()), + p({ class: 'game-card-desc game-desc-yellow' }, game.desc()) + ) + ), + table({ class: 'hall-of-fame-table' }, + tr(th('#'), th(i18n.gamesHallPlayer), th(i18n.gamesHallScore), th(i18n.gamesHallDate || 'Date')), + ...hall[game.id].map((entry, idx) => + tr( + td(String(idx + 1)), + td(a({ href: `/author/${encodeURIComponent(entry.author)}`, class: 'user-link' }, entry.author)), + td({ class: idx === 0 ? 'score-first' : '' }, String(entry.score)), + td(entry.ts ? moment(entry.ts).format('YYYY-MM-DD') : '\u2014') + ) + ) + ) + ) + ) + ); +}; + +const VALID_GAME_IDS = new Set(['cocoland','ecoinflow','neoninfiltrator','audiopendulum','spaceinvaders','arkanoid','pingpong','asteroids','rockpaperscissors','tiktaktoe','flipflop','8ball','artillery','labyrinth','cocoman','tetris']); + +exports.gameShellView = (name) => { + if (!VALID_GAME_IDS.has(name)) { + return template(i18n.gamesTitle, section(p(i18n.notFound || 'Not found'))); + } + const game = getGames().find(g => g.id === name); + const filterBar = div({ class: 'filter-group' }, + form({ method: 'GET', action: '/games' }, + input({ type: 'hidden', name: 'filter', value: 'all' }), + button({ type: 'submit', class: 'filter-btn' }, i18n.gamesFilterAll) + ), + form({ method: 'GET', action: '/games' }, + input({ type: 'hidden', name: 'filter', value: 'scoring' }), + button({ type: 'submit', class: 'filter-btn' }, i18n.gamesFilterScoring) + ) + ); + return template( + game ? game.title() : name, + section( + div({ class: 'tags-header' }, + h2(i18n.gamesTitle), + p(i18n.gamesDescription || 'Discover and play some mini-games in your network.') + ), + filterBar + ), + section({ class: 'game-shell-section' }, + iframe({ + src: `/game-assets/${name}/index.html`, + class: `game-iframe game-iframe-${name}`, + scrolling: 'no', + allowfullscreen: true + }) + ) + ); +}; + +exports.gamesView = (filter = 'all', hall = null) => { + const games = getGames(); + + const filterBar = div({ class: 'filter-group' }, + form({ method: 'GET', action: '/games' }, + input({ type: 'hidden', name: 'filter', value: 'all' }), + button({ type: 'submit', class: filter === 'all' ? 'filter-btn active' : 'filter-btn' }, + i18n.gamesFilterAll + ) + ), + form({ method: 'GET', action: '/games' }, + input({ type: 'hidden', name: 'filter', value: 'scoring' }), + button({ type: 'submit', class: filter === 'scoring' ? 'filter-btn active' : 'filter-btn' }, + i18n.gamesFilterScoring + ) + ) + ); + + const content = filter === 'scoring' && hall + ? renderHallOfFame(hall) + : div({ class: 'games-single-col' }, + games.map(game => { + const topScore = hall && hall[game.id] && hall[game.id].length > 0 ? hall[game.id][0] : null; + return div({ class: 'game-row' }, + div({ class: 'game-row-media' }, + img({ src: `/game-assets/${game.id}/thumbnail.svg`, alt: game.title(), loading: 'lazy' }) + ), + div({ class: 'game-row-body' }, + h2({ class: 'game-card-title' }, game.title()), + p({ class: 'game-card-desc game-desc-yellow' }, game.desc()), + topScore + ? p({ class: 'game-top-score' }, + a({ href: `/author/${encodeURIComponent(topScore.author)}`, class: 'user-link' }, topScore.author), + span({ class: 'game-new-record-label' }, ' - ' + (i18n.gamesNewRecord || 'New Record') + ': '), + String(topScore.score) + ) + : null + ), + div({ class: 'game-row-actions' }, + a({ href: `/games/${game.id}`, class: 'filter-btn' }, i18n.gamesPlayButton) + ) + ); + }) + ); + + return template( + i18n.gamesTitle, + section( + div({ class: 'tags-header' }, + h2(i18n.gamesTitle), + p(filter === 'scoring' ? i18n.gamesHallOfFame : (i18n.gamesDescription || 'Discover and play some mini-games in your network.')) + ), + filterBar + ), + section(content) + ); +}; diff --git a/nodejs-project/nodejs-project/src/views/image_view.js b/nodejs-project/nodejs-project/src/views/image_view.js index 88ec6e7f..197f68c0 100644 --- a/nodejs-project/nodejs-project/src/views/image_view.js +++ b/nodejs-project/nodejs-project/src/views/image_view.js @@ -4,7 +4,8 @@ const { form, button, div, h2, p, section, input, label, br, a, img, span, texta const moment = require("../server/node_modules/moment"); const { template, i18n } = require("./main_views"); const { config } = require("../server/SSB_server.js"); -const { renderUrl } = require("../backend/renderUrl"); +const { renderUrl } = require("../backend/renderUrl") +const { renderMapLocationVisitLabel } = require("./maps_view"); const opinionCategories = require("../backend/opinion_categories"); const userId = config.keys.id; @@ -134,8 +135,6 @@ const renderImageList = (images, filter, params = {}) => { ), title ? h2(title) : null, renderImageMedia(imgObj, filter, params), - safeText(imgObj.description) ? p(...renderUrl(imgObj.description)) : null, - renderTags(imgObj.tags), div( { class: "card-comments-summary" }, span({ class: "card-label" }, i18n.voteCommentsLabel + ":"), @@ -151,6 +150,7 @@ const renderImageList = (images, filter, params = {}) => { button({ type: "submit", class: "filter-btn" }, i18n.voteCommentsForumButton) ) ), + renderMapLocationVisitLabel(imgObj.mapUrl), br(), (() => { const createdTs = imgObj.createdAt ? new Date(imgObj.createdAt).getTime() : NaN; @@ -168,22 +168,7 @@ const renderImageList = (images, filter, params = {}) => { ) : null ); - })(), - div( - { class: "voting-buttons" }, - opinionCategories.map((category) => - form( - { method: "POST", action: `/images/opinions/${encodeURIComponent(imgObj.key)}/${category}` }, - input({ type: "hidden", name: "returnTo", value: returnTo }), - button( - { type: "submit", class: "vote-btn" }, - `${i18n[`vote${category.charAt(0).toUpperCase() + category.slice(1)}`] || category} [${ - imgObj.opinions?.[category] || 0 - }]` - ) - ) - ) - ) + })() ); }) : p(params.q ? i18n.imageNoMatch : i18n.noImages); @@ -205,31 +190,30 @@ const renderImageForm = (filter, imageId, imageToEdit, params = {}) => { input({ type: "hidden", name: "returnTo", value: returnTo }), label(i18n.imageFileLabel), br(), - input({ type: "file", name: "image", accept: "image/*", required: filter !== "edit" }), + input({ type: "file", name: "image", required: filter !== "edit" }), br(), br(), imageToEdit?.url ? img({ src: `/blob/${encodeURIComponent(imageToEdit.url)}`, class: "media-preview", alt: imageToEdit?.title || "" }) : null, - br(), - label(i18n.imageTagsLabel), - br(), - input({ type: "text", name: "tags", placeholder: i18n.imageTagsPlaceholder, value: tagsValue }), - br(), - br(), label(i18n.imageTitleLabel), br(), input({ type: "text", name: "title", placeholder: i18n.imageTitlePlaceholder, value: imageToEdit?.title || "" }), br(), - br(), label(i18n.imageDescriptionLabel), br(), textarea({ name: "description", placeholder: i18n.imageDescriptionPlaceholder, rows: "4" }, imageToEdit?.description || ""), br(), + label(i18n.mapLocationTitle || "Map Location"), + br(), + input({ type: "text", name: "mapUrl", placeholder: i18n.mapUrlPlaceholder || "/maps/MAP_ID", value: imageToEdit?.mapUrl || "" }), br(), input({ type: "hidden", name: "meme", value: "0" }), - label(i18n.imageMemeLabel), + label(i18n.imageTagsLabel), br(), + input({ type: "text", name: "tags", placeholder: i18n.imageTagsPlaceholder, value: tagsValue }), + br(), + label(i18n.imageMemeLabel), input({ id: "meme-checkbox", type: "checkbox", @@ -294,7 +278,7 @@ const renderImageCommentsSection = (imageKey, comments = [], returnTo = null) => class: "comment-textarea", placeholder: i18n.voteNewCommentPlaceholder }), - div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob", accept: "image/*,audio/*,video/*,application/pdf" })), + div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob" })), br(), button({ type: "submit", class: "comment-submit-btn" }, i18n.voteNewCommentButton) ) @@ -481,6 +465,8 @@ exports.singleImageView = async (imageObj, filter = "all", comments = [], params safeText(imageObj.description) ? p(...renderUrl(imageObj.description)) : null, renderTags(imageObj.tags), br(), + renderMapLocationVisitLabel(imageObj.mapUrl), + br(), (() => { const createdTs = imageObj.createdAt ? new Date(imageObj.createdAt).getTime() : NaN; const updatedTs = imageObj.updatedAt ? new Date(imageObj.updatedAt).getTime() : NaN; @@ -505,7 +491,7 @@ exports.singleImageView = async (imageObj, filter = "all", comments = [], params { method: "POST", action: `/images/opinions/${encodeURIComponent(imageObj.key)}/${category}` }, input({ type: "hidden", name: "returnTo", value: returnTo }), button( - { type: "submit", class: "vote-btn" }, + { class: "vote-btn" }, `${i18n[`vote${category.charAt(0).toUpperCase() + category.slice(1)}`] || category} [${ imageObj.opinions?.[category] || 0 }]` diff --git a/nodejs-project/nodejs-project/src/views/inhabitants_view.js b/nodejs-project/nodejs-project/src/views/inhabitants_view.js index e58d978c..b3e29d32 100644 --- a/nodejs-project/nodejs-project/src/views/inhabitants_view.js +++ b/nodejs-project/nodejs-project/src/views/inhabitants_view.js @@ -90,9 +90,17 @@ const renderInhabitantCard = async (user, filter, currentUserId) => { img({ class: 'inhabitant-photo-details', src: resolvePhoto(user.photo, 256), alt: user.name || 'Anonymous' }) ), br(), - span(`${i18n.bankingUserEngagementScore}: `), - h2(strong(typeof user.karmaScore === 'number' ? user.karmaScore : 0)), - ...lastActivityBadge(user, isMe) + ...lastActivityBadge(user, isMe), + div({ class: 'inhabitant-karma-ubi' }, + span({ class: 'karma-line' }, `${i18n.bankingUserEngagementScore}: `, strong(String(typeof user.karmaScore === 'number' ? user.karmaScore : 0))), + span({ class: 'ubi-line' }, `${i18n.bankUbiThisMonth}: `, strong(`${Number(user.estimatedUBI || 0).toFixed(6)} ECO`)), + span({ class: 'ubi-line' }, `${i18n.bankUbiLastClaimed}: `, + user.lastClaimedDate + ? a({ href: '/transfers?filter=ubi', class: 'user-link' }, new Date(user.lastClaimedDate).toLocaleDateString()) + : strong(i18n.bankUbiNeverClaimed) + ), + span({ class: 'ubi-line' }, `${i18n.bankUbiTotalClaimed}: `, strong(`${Number(user.totalClaimed || 0).toFixed(6)} ECO`)) + ) ), div({ class: 'inhabitant-details' }, h2(user.name || 'Anonymous'), diff --git a/nodejs-project/nodejs-project/src/views/jobs_view.js b/nodejs-project/nodejs-project/src/views/jobs_view.js index 40295da8..14bddcc2 100644 --- a/nodejs-project/nodejs-project/src/views/jobs_view.js +++ b/nodejs-project/nodejs-project/src/views/jobs_view.js @@ -3,6 +3,7 @@ const { template, i18n } = require("./main_views") const moment = require("../server/node_modules/moment") const { config } = require("../server/SSB_server.js") const { renderUrl } = require("../backend/renderUrl") +const { renderMapLocationUrl, renderMapEmbed, renderMapLocationVisitLabel } = require("./maps_view") const renderMediaBlob = (value) => { if (!value) return null @@ -104,12 +105,13 @@ const renderTags = (tags = []) => { const renderApplicantsProgress = (subsCount, vacants) => { const s = Math.max(0, Number(subsCount || 0)) const v = Math.max(1, Number(vacants || 1)) + const colorClass = s < v ? "applicants-under" : s === v ? "applicants-at" : "applicants-over" return div( { class: "confirmations-block" }, div( { class: "card-field" }, span({ class: "card-label" }, `${i18n.jobsApplicants}: `), - span({ class: "card-value" }, `${s}/${v}`) + span({ class: `card-value ${colorClass}` }, `${s}/${v}`) ), progress({ class: "confirmations-progress", value: s, max: v }) ) @@ -235,20 +237,15 @@ const renderJobList = (jobs, filter, params = {}) => { topbar ? topbar : null, safeText(job.title) ? h2(job.title) : null, job.image ? div({ class: "activity-image-preview" }, renderMediaBlob(job.image)) : null, - tagsNode ? tagsNode : null, br(), safeText(job.description) ? renderCardFieldRich(`${i18n.jobDescription}:`, renderUrl(job.description)) : null, br(), renderApplicantsProgress(subs.length, job.vacants), - renderSubscribers(subs), - renderCardField(`${i18n.jobStatus}:`, i18n["jobStatus" + String(job.status || "").toUpperCase()] || String(job.status || "").toUpperCase()), renderCardField(`${i18n.jobLanguages}:`, String(job.languages || "").toUpperCase()), renderCardField(`${i18n.jobType}:`, i18n["jobType" + String(job.job_type || "").toUpperCase()] || String(job.job_type || "").toUpperCase()), renderCardField(`${i18n.jobLocation}:`, String(job.location || "").toUpperCase()), + renderMapLocationVisitLabel(job.mapUrl), renderCardField(`${i18n.jobTime}:`, i18n["jobTime" + String(job.job_time || "").toUpperCase()] || String(job.job_time || "").toUpperCase()), - renderCardField(`${i18n.jobVacants}:`, job.vacants), - safeText(job.requirements) ? renderCardFieldRich(`${i18n.jobRequirements}:`, renderUrl(job.requirements)) : null, - safeText(job.tasks) ? renderCardFieldRich(`${i18n.jobTasks}:`, renderUrl(job.tasks)) : null, renderCardFieldRich(`${i18n.jobSalary}:`, [span({ class: "card-salary" }, salaryText)]), br(), div( @@ -306,7 +303,7 @@ const renderJobForm = (job = {}, mode = "create") => { br(), label(i18n.jobImage), br(), - input({ type: "file", name: "image", accept: "image/*" }), + input({ type: "file", name: "image" }), br(), job.image ? renderMediaBlob(job.image) : null, br(), @@ -353,6 +350,11 @@ const renderJobForm = (job = {}, mode = "create") => { ), br(), br(), + label(i18n.mapLocationTitle || "Map Location"), + br(), + input({ type: "text", name: "mapUrl", placeholder: i18n.mapUrlPlaceholder || "/maps/MAP_ID", value: job.mapUrl || "" }), + br(), + br(), label(i18n.jobVacants), br(), input({ type: "number", name: "vacants", min: "1", placeholder: i18n.jobVacantsPlaceholder, value: job.vacants || 1, required: true }), @@ -496,7 +498,7 @@ const renderJobCommentsSection = (jobId, returnTo, comments = []) => { { method: "POST", action: `/jobs/${encodeURIComponent(jobId)}/comments`, class: "comment-form", enctype: "multipart/form-data" }, input({ type: "hidden", name: "returnTo", value: returnTo }), textarea({ id: "comment-text", name: "text", rows: 4, class: "comment-textarea", placeholder: i18n.voteNewCommentPlaceholder }), - div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob", accept: "image/*,audio/*,video/*,application/pdf" })), + div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob" })), br(), button({ type: "submit", class: "comment-submit-btn" }, i18n.voteNewCommentButton) ) @@ -561,21 +563,21 @@ exports.singleJobsView = async (job, filter = "ALL", comments = [], params = {}) topbar ? topbar : null, safeText(job.title) ? h2(job.title) : null, job.image ? div({ class: "activity-image-preview" }, renderMediaBlob(job.image)) : null, - tagsNode ? tagsNode : null, - br(), safeText(job.description) ? renderCardFieldRich(`${i18n.jobDescription}:`, renderUrl(job.description)) : null, - br(), - renderApplicantsProgress(subs.length, job.vacants), - renderSubscribers(subs), renderCardField(`${i18n.jobStatus}:`, i18n["jobStatus" + String(job.status || "").toUpperCase()] || String(job.status || "").toUpperCase()), + renderCardFieldRich(`${i18n.jobSalary}:`, [span({ class: "card-salary" }, salaryText)]), + renderCardField(`${i18n.jobVacants}:`, job.vacants), renderCardField(`${i18n.jobLanguages}:`, String(job.languages || "").toUpperCase()), renderCardField(`${i18n.jobType}:`, i18n["jobType" + String(job.job_type || "").toUpperCase()] || String(job.job_type || "").toUpperCase()), renderCardField(`${i18n.jobLocation}:`, String(job.location || "").toUpperCase()), + renderMapEmbed(params.mapData, job.mapUrl), renderCardField(`${i18n.jobTime}:`, i18n["jobTime" + String(job.job_time || "").toUpperCase()] || String(job.job_time || "").toUpperCase()), - renderCardField(`${i18n.jobVacants}:`, job.vacants), safeText(job.requirements) ? renderCardFieldRich(`${i18n.jobRequirements}:`, renderUrl(job.requirements)) : null, safeText(job.tasks) ? renderCardFieldRich(`${i18n.jobTasks}:`, renderUrl(job.tasks)) : null, - renderCardFieldRich(`${i18n.jobSalary}:`, [span({ class: "card-salary" }, salaryText)]), + renderApplicantsProgress(subs.length, job.vacants), + renderSubscribers(subs), + br(), + tagsNode ? tagsNode : null, br(), p( { class: "card-footer" }, diff --git a/nodejs-project/nodejs-project/src/views/logs_view.js b/nodejs-project/nodejs-project/src/views/logs_view.js new file mode 100644 index 00000000..c389d5ed --- /dev/null +++ b/nodejs-project/nodejs-project/src/views/logs_view.js @@ -0,0 +1,246 @@ +const { div, h2, p, section, button, form, span, table, thead, tbody, tr, th, td, input, textarea, br, option, select } = require("../server/node_modules/hyperaxe"); +const { template, i18n } = require("./main_views"); +const moment = require("../server/node_modules/moment"); +const { renderUrl } = require("../backend/renderUrl"); + +const safeArr = v => Array.isArray(v) ? v : []; + +const FILTERS = ["today", "week", "month", "year", "always"]; + +const filterLabel = (f) => { + const map = { + today: i18n.logsFilterToday || 'TODAY', + week: i18n.logsFilterWeek || 'LAST WEEK', + month: i18n.logsFilterMonth || 'LAST MONTH', + year: i18n.logsFilterYear || 'LAST YEAR', + always: i18n.logsFilterAlways || 'ALWAYS' + }; + return map[f] || f.toUpperCase(); +}; + +const renderFilterBar = (current) => + div({ class: "logs-toolbar" }, + form({ method: "GET", action: "/logs", class: "logs-toolbar-inline" }, + FILTERS.map(f => + button({ + type: "submit", name: "filter", value: f, + class: current === f ? "filter-btn active" : "filter-btn" + }, filterLabel(f)) + ) + ), + form({ method: "GET", action: "/logs", class: "logs-toolbar-inline" }, + input({ type: "hidden", name: "view", value: "create" }), + button({ type: "submit", class: "create-button" }, i18n.logsCreate || 'Create Log') + ), + form({ method: "GET", action: "/logs/export", class: "logs-toolbar-inline" }, + button({ type: "submit", class: "create-button" }, i18n.logsExport || 'Export Logs') + ) + ); + +const renderSearchBox = (current, search) => { + const q = search || {}; + return div({ class: "logs-search" }, + form({ method: "GET", action: "/logs", class: "filter-box" }, + input({ type: "hidden", name: "filter", value: current || 'today' }), + input({ + type: "text", name: "q", class: "filter-box__input", + placeholder: i18n.logsSearchText || 'Search in logs...', + value: q.q || '' + }), + div({ class: "filter-box__controls" }, + input({ + type: "date", name: "date", class: "filter-box__select", + value: q.date || '' + }), + select({ name: "type", class: "filter-box__select" }, + option({ value: '', ...(q.type ? {} : { selected: true }) }, i18n.logsSearchAnyType || 'Any type'), + option({ value: 'manual', ...(q.type === 'manual' ? { selected: true } : {}) }, i18n.logsModeManual || 'Manual'), + option({ value: 'ai', ...(q.type === 'ai' ? { selected: true } : {}) }, i18n.logsModeAI || 'AI') + ), + button({ type: "submit", class: "filter-box__button" }, i18n.logsSearchButton || 'Search') + ) + ) + ); +}; + +const renderToolbar = (current, search) => + div({ class: "logs-toolbar-wrap" }, + renderFilterBar(current), + renderSearchBox(current, search) + ); + +const MAX_PREVIEW = 140; + +const truncate = (str) => { + const s = String(str || ''); + if (s.length <= MAX_PREVIEW) return s; + return s.slice(0, MAX_PREVIEW).replace(/\s+\S*$/, '') + '…'; +}; + +const renderLogPreview = (item) => { + const text = truncate(item.text); + return div({ class: "logs-entry-text" }, ...renderUrl(text)); +}; + +const renderTable = (items) => { + if (!safeArr(items).length) return p({ class: "no-content" }, i18n.logsEmpty || 'No logs yet.'); + return table({ class: "logs-table" }, + thead( + tr( + th(i18n.logsColumnDate || 'Date'), + th(i18n.logsColumnType || 'Type'), + th(i18n.logsColumnLog || 'Log'), + th(''), + th('') + ) + ), + tbody( + items.map(item => + tr( + td({ class: "logs-col-date" }, + span({ class: "logs-date-day" }, moment(item.ts).format("DD/MM/YYYY")), + ' ', + span({ class: "logs-date-time" }, moment(item.ts).format("HH:mm")) + ), + td({ class: "logs-col-type" }, + span({ class: item.mode === 'ai' ? "logs-type-text logs-type-ai" : "logs-type-text logs-type-manual" }, + item.mode === 'ai' ? (i18n.logsModeAI || 'AI') : (i18n.logsModeManual || 'Manual') + ) + ), + td({ class: "logs-col-log" }, + item.label ? div({ class: "logs-entry-label" }, item.label) : null, + renderLogPreview(item) + ), + td({ class: "logs-col-actions" }, + form({ method: "GET", action: `/logs/view/${encodeURIComponent(item.key)}` }, + button({ type: "submit", class: "filter-btn" }, i18n.logsViewDetails || 'View Details') + ) + ), + td({ class: "logs-col-actions" }, + form({ method: "GET", action: `/logs/export/${encodeURIComponent(item.key)}` }, + button({ type: "submit", class: "filter-btn" }, i18n.logsExportOne || 'Export') + ) + ) + ) + ) + ) + ); +}; + +const renderModeToggle = (mode, aiModOn) => { + const isAi = mode === 'ai'; + const isManual = !mode || mode === 'manual'; + return form({ method: "GET", action: "/logs", class: "logs-mode-form" }, + input({ type: "hidden", name: "view", value: "create" }), + div({ class: "logs-mode-group" }, + button({ + type: "submit", name: "mode", value: "manual", + class: isManual ? "filter-btn active" : "filter-btn" + }, i18n.logsModeManual || 'Manual'), + aiModOn + ? button({ + type: "submit", name: "mode", value: "ai", + class: isAi ? "filter-btn active" : "filter-btn" + }, i18n.logsModeAIWritten || 'AI-Assistant') + : null + ) + ); +}; + +const renderCreateForm = (mode, aiModOn) => { + const isAi = mode === 'ai' && aiModOn; + const inner = isAi + ? div({ class: "div-center audio-form" }, + form({ method: "POST", action: "/logs/create" }, + input({ type: "hidden", name: "mode", value: "ai" }), + button({ type: "submit", class: "create-button" }, i18n.logsGenerateButton || 'Generate Text') + ) + ) + : div({ class: "div-center audio-form" }, + form({ method: "POST", action: "/logs/create" }, + input({ type: "hidden", name: "mode", value: "manual" }), + span(i18n.logsManualPrompt || 'Write your log'), br(), + textarea({ name: "text", rows: "8", required: true, placeholder: i18n.logsTextPlaceholder || 'Describe your experiences...' }), + br(), br(), + button({ type: "submit", class: "create-button" }, i18n.logsWriteButton || 'Write') + ) + ); + return div(renderModeToggle(mode, aiModOn), inner); +}; + +const renderEditForm = (entry) => { + return div({ class: "div-center audio-form" }, + h2(i18n.logsEditTitle || 'Edit Log'), + form({ method: "POST", action: `/logs/edit/${encodeURIComponent(entry.key)}` }, + span(i18n.logsManualPrompt || 'Write your log...'), br(), + textarea({ name: "text", rows: "8", required: true }, entry.text || ''), + input({ type: "hidden", name: "label", value: entry.label || '' }), + br(), br(), + button({ type: "submit", class: "create-button" }, i18n.logsUpdateButton || 'Update') + ) + ); +}; + +const renderDetail = (entry) => { + const headerLine = `[${moment(entry.ts).format("DD/MM/YYYY HH:mm:ss")}]:`; + return div({ class: "div-center audio-form logs-detail" }, + h2(headerLine), + entry.label ? div({ class: "logs-entry-label" }, entry.label) : null, + div({ class: "logs-detail-text" }, ...renderUrl(String(entry.text || ''))), + div({ class: "logs-detail-actions" }, + form({ method: "GET", action: "/logs" }, + button({ type: "submit", class: "filter-btn" }, i18n.walletBack || 'Back') + ), + form({ method: "GET", action: `/logs/export/${encodeURIComponent(entry.key)}` }, + button({ type: "submit", class: "filter-btn" }, i18n.logsExportOne || 'Export') + ), + form({ method: "GET", action: "/logs" }, + input({ type: "hidden", name: "view", value: "edit" }), + input({ type: "hidden", name: "id", value: entry.key }), + button({ type: "submit", class: "filter-btn" }, i18n.logsEdit || 'Edit') + ), + form({ method: "POST", action: `/logs/delete/${encodeURIComponent(entry.key)}` }, + button({ type: "submit", class: "filter-btn" }, i18n.logsDelete || 'Delete') + ) + ) + ); +}; + +exports.logsView = (items, filter, mode, opts = {}) => { + const listTitle = i18n.logsTitle || 'Logs'; + const description = i18n.logsDescription || 'Record your experience in the network.'; + const view = opts.view || 'list'; + const aiModOn = !!opts.aiModOn; + + if (view === 'create') { + const h = i18n.logsCreateTitle || 'Create Log'; + const body = section( + div({ class: "tags-header" }, h2(h), p(description)), + renderFilterBar(filter), + renderCreateForm(mode, aiModOn) + ); + return template(h, body); + } + if (view === 'edit' && opts.entry) { + const h = i18n.logsEditTitle || 'Edit Log'; + const body = section( + div({ class: "tags-header" }, h2(h), p(description)), + renderEditForm(opts.entry) + ); + return template(h, body); + } + if (view === 'detail' && opts.entry) { + const h = i18n.logsViewTitle || 'Log'; + const body = section( + div({ class: "tags-header" }, h2(h), p(description)), + renderDetail(opts.entry) + ); + return template(h, body); + } + const body = section( + div({ class: "tags-header" }, h2(listTitle), p(description)), + renderToolbar(filter, opts.search || {}), + div({ class: "logs-list" }, renderTable(items)) + ); + return template(listTitle, body); +}; diff --git a/nodejs-project/nodejs-project/src/views/main_views.js b/nodejs-project/nodejs-project/src/views/main_views.js index 685bdf4f..6da9e869 100644 --- a/nodejs-project/nodejs-project/src/views/main_views.js +++ b/nodejs-project/nodejs-project/src/views/main_views.js @@ -327,6 +327,51 @@ const renderImagesLink = () => { return ""; }; +const renderTorrentsLink = () => { + const torrentsMod = getConfig().modules.torrentsMod === "on"; + if (torrentsMod) { + return [ + navLink({ + href: "/torrents", + emoji: "ꖅ", + text: i18n.torrentsLabel, + class: "torrents-link enabled" + }) + ]; + } + return ""; +}; + +const renderMapsLink = () => { + const mapsMod = getConfig().modules.mapsMod === "on"; + if (mapsMod) { + return [ + navLink({ + href: "/maps", + emoji: "ꔌ", + text: i18n.mapsLabel, + class: "maps-link enabled" + }) + ]; + } + return ""; +}; + +const renderChatsLink = () => { + const chatsMod = getConfig().modules.chatsMod === "on"; + if (chatsMod) { + return [ + navLink({ + href: "/chats", + emoji: "ꖒ", + text: i18n.chatsTitle, + class: "chats-link enabled" + }) + ]; + } + return ""; +}; + const renderVideosLink = () => { const videosMod = getConfig().modules.videosMod === "on"; if (videosMod) { @@ -424,6 +469,19 @@ const renderJobsLink = () => { : ""; }; +const renderShopsLink = () => { + const shopsMod = getConfig().modules.shopsMod === "on"; + return shopsMod + ? [ + navLink({ + href: "/shops", + emoji: "ꔜ", + text: i18n.shopsTitle + }) + ] + : ""; +}; + const renderProjectsLink = () => { const projectsMod = getConfig().modules.projectsMod === "on"; return projectsMod @@ -544,6 +602,20 @@ const renderOpinionsLink = () => { : ""; }; +const renderPadsLink = () => { + const padsMod = getConfig().modules.padsMod === "on"; + return padsMod + ? [ + navLink({ + href: "/pads", + emoji: "ꔗ", + text: i18n.padsTitle, + class: "pads-link enabled" + }) + ] + : ""; +}; + const renderTransfersLink = () => { const transfersMod = getConfig().modules.transfersMod === "on"; return transfersMod @@ -584,6 +656,13 @@ const renderPixeliaLink = () => { : ""; }; +const renderGamesLink = () => { + const gamesMod = getConfig().modules.gamesMod === "on"; + return gamesMod + ? [navLink({ href: "/games", emoji: "ꕇ", text: i18n.gamesTitle, class: "games-link enabled" })] + : ""; +}; + const renderForumLink = () => { const forumMod = getConfig().modules.forumMod === "on"; return forumMod @@ -626,6 +705,20 @@ const renderFavoritesLink = () => { : ""; }; +const renderLogsLink = () => { + const logsMod = getConfig().modules.logsMod === "on"; + return logsMod + ? [ + navLink({ + href: "/logs", + emoji: "ꗯ", + text: i18n.logsTitle || "Logs", + class: "logs-link enabled" + }) + ] + : ""; +}; + const renderAILink = () => { const aiMod = getConfig().modules.aiMod === "on"; return aiMod @@ -654,6 +747,20 @@ const renderEventsLink = () => { : ""; }; +const renderCalendarsLink = () => { + const calendarsMod = getConfig().modules.calendarsMod === "on"; + return calendarsMod + ? [ + navLink({ + href: "/calendars", + emoji: "ꖯ", + text: i18n.calendarsTitle || "Calendars", + class: "calendars-link enabled" + }) + ] + : ""; +}; + const renderTasksLink = () => { const tasksMod = getConfig().modules.tasksMod === "on"; return tasksMod @@ -794,6 +901,7 @@ const template = (titlePrefix, ...elements) => { }), renderAgendaLink(), renderFavoritesLink(), + renderLogsLink(), renderWalletLink(), navLink({ href: "/modules", @@ -847,6 +955,7 @@ const template = (titlePrefix, ...elements) => { }, renderVotationsLink(), renderEventsLink(), + renderCalendarsLink(), renderTasksLink(), renderReportsLink() ), @@ -890,7 +999,10 @@ const template = (titlePrefix, ...elements) => { }), renderTrendingLink(), renderOpinionsLink(), + renderPadsLink(), renderForumLink(), + renderMapsLink(), + renderChatsLink(), renderInvitesLink(), navLink({ href: "/peers", @@ -905,6 +1017,7 @@ const template = (titlePrefix, ...elements) => { title: i18n.menuCreative }, renderFeedLink(), + renderGamesLink(), renderPixeliaLink() ), navGroup( @@ -917,6 +1030,7 @@ const template = (titlePrefix, ...elements) => { renderMarketLink(), renderProjectsLink(), renderJobsLink(), + renderShopsLink(), renderTransfersLink() ), navGroup( @@ -929,6 +1043,7 @@ const template = (titlePrefix, ...elements) => { renderBookmarksLink(), renderDocsLink(), renderImagesLink(), + renderTorrentsLink(), renderVideosLink() ) ) diff --git a/nodejs-project/nodejs-project/src/views/maps_view.js b/nodejs-project/nodejs-project/src/views/maps_view.js new file mode 100644 index 00000000..062584ff --- /dev/null +++ b/nodejs-project/nodejs-project/src/views/maps_view.js @@ -0,0 +1,495 @@ +const { form, button, div, h2, h3, p, section, input, label, br, a, span, textarea, select, option, img, strong } = + require("../server/node_modules/hyperaxe"); + +const moment = require("../server/node_modules/moment"); +const { template, i18n } = require("./main_views"); +const { config } = require("../server/SSB_server.js"); +const { renderMapWithPins, renderZoomedMapWithPins, getViewportBounds, latLngToPx, pxToLatLng, MAP_W, MAP_H, getMaxTileZoom } = require("../maps/map_renderer"); +const { sanitizeHtml } = require('../backend/sanitizeHtml'); + +const userId = config.keys.id; +const safeArr = (v) => (Array.isArray(v) ? v : []); +const safeText = (v) => String(v || "").trim(); + +const buildReturnTo = (filter, params = {}) => { + const f = safeText(filter || "all"); + const q = safeText(params.q || ""); + const parts = [`filter=${encodeURIComponent(f)}`]; + if (q) parts.push(`q=${encodeURIComponent(q)}`); + return `/maps?${parts.join("&")}`; +}; + +const renderPMButton = (recipient) => { + const r = safeText(recipient); + if (!r || String(r) === String(userId)) return null; + return form({ method: "GET", action: "/pm" }, + input({ type: "hidden", name: "recipients", value: r }), + button({ type: "submit", class: "filter-btn" }, i18n.privateMessage)); +}; + +const renderTags = (tags) => { + const list = safeArr(tags).map((t) => String(t || "").trim()).filter(Boolean); + return list.length + ? div({ class: "card-tags" }, list.map((tag) => a({ href: `/search?query=%23${encodeURIComponent(tag)}`, class: "tag-link" }, `#${tag}`))) + : null; +}; + +const renderMapFavoriteToggle = (mapObj, returnTo = "") => + form({ + method: "POST", + action: mapObj.isFavorite ? `/maps/favorites/remove/${encodeURIComponent(mapObj.key)}` : `/maps/favorites/add/${encodeURIComponent(mapObj.key)}` + }, + returnTo ? input({ type: "hidden", name: "returnTo", value: returnTo }) : null, + button({ type: "submit", class: "filter-btn" }, mapObj.isFavorite ? i18n.mapRemoveFavoriteButton : i18n.mapAddFavoriteButton)); + +let areaCounter = 0; + +const buildAreas = (clickUrl, latParam = "lat", lngParam = "lng", viewport = null) => { + const GRID = 16; + const cellW = MAP_W / GRID; + const cellH = MAP_H / GRID; + const areas = []; + for (let gy = 0; gy < GRID; gy++) { + for (let gx = 0; gx < GRID; gx++) { + let c; + if (viewport) { + const lat = viewport.latMax - (gy + 0.5) / GRID * (viewport.latMax - viewport.latMin); + const lng = viewport.lngMin + (gx + 0.5) / GRID * (viewport.lngMax - viewport.lngMin); + c = { lat: Math.round(lat * 10000) / 10000, lng: Math.round(lng * 10000) / 10000 }; + } else { + const cx = Math.round(gx * cellW + cellW / 2); + const cy = Math.round(gy * cellH + cellH / 2); + c = pxToLatLng(cx, cy); + } + const x1 = Math.round(gx * cellW); + const y1 = Math.round(gy * cellH); + const x2 = Math.round((gx + 1) * cellW); + const y2 = Math.round((gy + 1) * cellH); + areas.push(`${c.lat},${c.lng}`); + } + } + return areas; +}; + +const renderMap = (markers, clickUrl, mainIdx, opts = {}) => { + areaCounter++; + const mapName = `m${areaCounter}`; + const latParam = opts.latParam || "lat"; + const lngParam = opts.lngParam || "lng"; + const pinLabels = opts.pinLabels || []; + const pinImages = opts.pinImages || []; + const pfx = opts.pinPrefix || `pin${areaCounter}`; + const zoom = parseInt(opts.zoom) || 2; + const centerLat = typeof opts.centerLat === "number" ? opts.centerLat : 0; + const centerLng = typeof opts.centerLng === "number" ? opts.centerLng : 0; + + const pinList = safeArr(markers).filter((m) => m && typeof m.lat === "number" && typeof m.lng === "number"); + const useZoom = zoom > 2; + const mapFile = useZoom + ? renderZoomedMapWithPins(centerLat, centerLng, zoom, pinList, mainIdx) + : (pinList.length > 0 ? renderMapWithPins(pinList, mainIdx) : null); + const imgSrc = mapFile ? `/mapcache/${mapFile}` : "/assets/images/worldmap-z2.png"; + const viewport = useZoom && clickUrl ? getViewportBounds(centerLat, centerLng, zoom) : null; + + const useMap = clickUrl || pinLabels.length > 0; + const mapTag = useMap ? mapName : ""; + + let gridAreasHtml = ""; + if (clickUrl) { + const clickUrlWithZoom = zoom > 2 ? `${clickUrl}zoom=${zoom}&` : clickUrl; + gridAreasHtml = buildAreas(clickUrlWithZoom, latParam, lngParam, viewport).join(""); + } + let popupAreasHtml = ""; + let popupsHtml = ""; + if (pinLabels.length > 0) { + const vp = useZoom ? getViewportBounds(centerLat, centerLng, zoom) : null; + pinList.forEach((m, i) => { + const lbl = pinLabels[i] || ""; + let px; + if (vp) { + px = { + x: ((m.lng - vp.lngMin) / (vp.lngMax - vp.lngMin)) * MAP_W, + y: ((vp.latMax - m.lat) / (vp.latMax - vp.latMin)) * MAP_H + }; + } else { + px = latLngToPx(m.lat, m.lng); + } + const escaped = lbl.replace(/&/g, "&").replace(/"/g, """).replace(//g, ">"); + const withLinks = escaped.replace(/https?:\/\/[^\s&"<>]+/g, (url) => { + const clean = url.replace(/&/g, "&"); + return `${url}`; + }).replace(/\n/g, "
"); + const sz = 20 * Math.pow(2, Math.max(0, zoom - getMaxTileZoom())); + const x1 = Math.max(0, px.x - sz); + const y1 = Math.max(0, px.y - sz); + const x2 = Math.min(MAP_W, px.x + sz); + const y2 = Math.min(MAP_H, px.y + sz); + const popupId = `${pfx}_${i}`; + const latStr = typeof m.lat === "number" ? m.lat.toFixed(4) : ""; + const lngStr = typeof m.lng === "number" ? m.lng.toFixed(4) : ""; + const imgBlobId = pinImages[i] && String(pinImages[i]).startsWith("&") ? pinImages[i] : ""; + const imgHtml = imgBlobId ? `` : ""; + popupAreasHtml += `${escaped}`; + popupsHtml += `
${imgHtml}
${sanitizeHtml(withLinks)}
${latStr}, ${lngStr}
`; + }); + } + const mapHtml = useMap ? `${popupAreasHtml}${gridAreasHtml}` : ""; + const useAttr = useMap ? ` usemap="#${mapTag}"` : ""; + + const mapWrapHtml = `
map${mapHtml}
`; + const viewerEl = div({ class: "map-viewer" }, { innerHTML: mapWrapHtml }); + if (!popupsHtml) return viewerEl; + return div({ class: "map-zone" }, viewerEl, div({ class: "map-popup-container", innerHTML: popupsHtml })); +}; + +const renderCoordPreview = (lat, lng) => { + if (!lat && !lng) return null; + return span({ class: "map-coord-inline" }, + span({ class: "map-coord-pin" }, "📍"), + strong(`${lat}, ${lng}`)); +}; + +const renderLocalEmbed = (lat, lng) => { + const la = parseFloat(lat) || 0; + const lo = parseFloat(lng) || 0; + if (!la && !lo) return null; + return renderMap([{ lat: la, lng: lo }], null, 0); +}; + +const renderMapUrl = (mapObj) => + div({ class: "map-url-container" }, + span({ class: "card-label" }, i18n.mapUrlLabel + ": "), + a({ href: `/maps/${encodeURIComponent(mapObj.key)}`, class: "map-url-link" }, + `/maps/${encodeURIComponent(mapObj.key)}`)); + +const renderMapOwnerActions = (filter, mapObj, params = {}) => { + const returnTo = buildReturnTo(filter, params); + if (String(mapObj.author) !== String(userId)) return []; + return [ + form({ method: "GET", action: `/maps/edit/${encodeURIComponent(mapObj.key)}` }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + button({ class: "update-btn", type: "submit" }, i18n.mapUpdateButton)), + form({ method: "POST", action: `/maps/delete/${encodeURIComponent(mapObj.key)}` }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + button({ class: "delete-btn", type: "submit" }, i18n.mapDeleteButton)) + ]; +}; + +const renderFilters = (filter, q) => + div({ class: "filters" }, + form({ method: "GET", action: "/maps", class: "ui-toolbar ui-toolbar--filters" }, + input({ type: "hidden", name: "q", value: q || "" }), + button({ type: "submit", name: "filter", value: "all", class: filter === "all" ? "filter-btn active" : "filter-btn" }, i18n.mapFilterAll), + button({ type: "submit", name: "filter", value: "mine", class: filter === "mine" ? "filter-btn active" : "filter-btn" }, i18n.mapFilterMine), + button({ type: "submit", name: "filter", value: "recent", class: filter === "recent" ? "filter-btn active" : "filter-btn" }, i18n.mapFilterRecent), + button({ type: "submit", name: "filter", value: "favorites", class: filter === "favorites" ? "filter-btn active" : "filter-btn" }, i18n.mapFilterFavorites), + button({ type: "submit", name: "filter", value: "create", class: "create-button" }, i18n.mapUploadButton))); + +const renderMapForm = (filter, mapId, mapToEdit, params = {}) => { + const returnFilter = filter === "create" ? "all" : params.filter || "all"; + const returnTo = safeText(params.returnTo) || buildReturnTo(returnFilter, params); + const latVal = params.lat !== undefined ? String(params.lat) : String(mapToEdit?.lat || ""); + const lngVal = params.lng !== undefined ? String(params.lng) : String(mapToEdit?.lng || ""); + const titleVal = params.title || mapToEdit?.title || ""; + const descVal = params.description || mapToEdit?.description || ""; + const markerLabelVal = params.markerLabel !== undefined ? params.markerLabel : (mapToEdit?.markerLabel || ""); + const tagsValue = params.tags !== undefined ? params.tags : safeArr(mapToEdit?.tags).join(", "); + const mapTypeVal = params.mapType || mapToEdit?.mapType || "SINGLE"; + const maxTileZoom = getMaxTileZoom(); + const zoomVal = parseInt(params.zoom) || 2; + const cleanUrl = `/maps?filter=create${params.tribeId ? '&tribeId=' + encodeURIComponent(params.tribeId) : ''}`; + const pickerMarkers = latVal && lngVal ? [{ lat: parseFloat(latVal), lng: parseFloat(lngVal) }] : []; + + return div({ class: "map-create-layout" }, + div({ class: "map-form map-form-full" }, + form({ + action: filter === "edit" ? `/maps/update/${encodeURIComponent(mapId)}` : "/maps/create", + method: "POST", + enctype: "multipart/form-data" + }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + input({ type: "hidden", name: "filter", value: "create" }), + params.tribeId ? input({ type: "hidden", name: "tribeId", value: params.tribeId }) : null, + label(i18n.title || "Title"), + input({ type: "text", name: "title", placeholder: i18n.mapTitlePlaceholder || "Map title", value: titleVal }), + label(i18n.mapDescriptionLabel), + textarea({ name: "description", placeholder: i18n.mapDescriptionPlaceholder, rows: "3" }, descVal), + label(i18n.mapTagsLabel), + input({ type: "text", name: "tags", placeholder: i18n.mapTagsPlaceholder, value: tagsValue }), + label(i18n.mapTypeLabel), + select({ name: "mapType" }, + option({ value: "SINGLE", ...(mapTypeVal === "SINGLE" ? { selected: true } : {}) }, "SINGLE"), + option({ value: "OPEN", ...(mapTypeVal === "OPEN" ? { selected: true } : {}) }, "OPEN"), + option({ value: "CLOSED", ...(mapTypeVal === "CLOSED" ? { selected: true } : {}) }, "CLOSED")), + br(),br(), + label(i18n.mapMarkerLabelField), + textarea({ name: "markerLabel", placeholder: i18n.mapMarkerLabelPlaceholder, rows: "3" }, markerLabelVal), + label(i18n.markerImageLabel || "Marker Image"), + input({ type: "file", name: "image", accept: "image/*" }), + br(), br(), + label(i18n.mapLatLabel), + input({ type: "text", name: "lat", placeholder: i18n.mapLatPlaceholder, value: latVal }), + label(i18n.mapLngLabel), + input({ type: "text", name: "lng", placeholder: i18n.mapLngPlaceholder, value: lngVal }), + div({ class: "map-form-row" }, + button({ type: "submit", attrs: { formmethod: "GET" }, formaction: "/maps", class: "filter-btn" }, i18n.mapAddMarkerButton || "Add Marker"), + a({ href: cleanUrl, class: "filter-btn" }, i18n.mapCleanMarkerButton || "Clean Marker")), + renderCoordPreview(latVal, lngVal), + label(i18n.mapZoomLabel || "Zoom"), + select({ name: "zoom" }, + [2, 3, 4, 5, 6, 7, 8].map(z => + option({ value: String(z), ...(zoomVal === z ? { selected: true } : {}) }, String(z)))), + br(),br(), + button({ type: "submit", attrs: { formmethod: "GET" }, formaction: "/maps", class: "filter-btn" }, i18n.mapApplyZoom || "Apply Zoom"), + div({ class: "map-form-map-slot" }, + renderMap(pickerMarkers, null, 0, { zoom: zoomVal, centerLat: parseFloat(latVal) || 0, centerLng: parseFloat(lngVal) || 0 })), + button({ type: "submit", class: "create-button" }, filter === "edit" ? i18n.mapUpdateButton : i18n.mapCreateButton)))); +}; + +const renderMarkerForm = (mapObj, returnTo, params = {}, tribeMembers = []) => { + if (mapObj.mapType === "SINGLE") return null; + if (mapObj.mapType === "CLOSED" && String(mapObj.author) !== String(userId)) return null; + if (mapObj.mapType === "OPEN" && mapObj.tribeId && !tribeMembers.includes(userId)) return null; + const mkLat = params.mkLat || ""; + const mkLng = params.mkLng || ""; + const zoomVal = parseInt(params.zoom) || 2; + + const existingMarkers = [{ lat: mapObj.lat, lng: mapObj.lng }].concat( + safeArr(mapObj.markers).map((m) => ({ lat: m.lat, lng: m.lng }))); + if (mkLat && mkLng) existingMarkers.push({ lat: parseFloat(mkLat), lng: parseFloat(mkLng) }); + + const pinLabels = [mapObj.markerLabel || mapObj.description || mapObj.title || ""].concat( + safeArr(mapObj.markers).map((m) => m.label || "")); + + const mkCleanUrl = `/maps/${encodeURIComponent(mapObj.key)}?filter=${encodeURIComponent(params.filter || "all")}`; + const clickUrl = `/maps/${encodeURIComponent(mapObj.key)}?filter=${encodeURIComponent(params.filter || "all")}&zoom=${zoomVal}&`; + return div({ class: "map-marker-form", id: "add-marker" }, + h3(i18n.mapAddMarkerTitle), + form({ method: "POST", action: `/maps/${encodeURIComponent(mapObj.key)}/marker`, class: "map-form", enctype: "multipart/form-data" }, + returnTo ? input({ type: "hidden", name: "returnTo", value: returnTo }) : null, + label(i18n.mapMarkerLabelField), + textarea({ name: "label", placeholder: i18n.mapMarkerLabelPlaceholder, rows: "3" }, params.mkMarkerLabel || ""), + label(i18n.markerImageLabel || "Marker Image"), + input({ type: "file", name: "image", accept: "image/*" }), + br(),br(), + label(i18n.mapMarkerLatLabel), + input({ type: "text", name: "mkLat", placeholder: i18n.mapLatPlaceholder, value: String(mkLat) }), + label(i18n.mapMarkerLngLabel), + input({ type: "text", name: "mkLng", placeholder: i18n.mapLngPlaceholder, value: String(mkLng) }), + div({ class: "map-form-row" }, + button({ type: "submit", attrs: { formmethod: "GET" }, formaction: `/maps/${encodeURIComponent(mapObj.key)}`, class: "filter-btn" }, i18n.mapAddMarkerButton || "Add Marker"), + a({ href: mkCleanUrl, class: "filter-btn" }, i18n.mapCleanMarkerButton || "Clean Marker")), + renderCoordPreview(mkLat, mkLng), + label(i18n.mapZoomLabel || "Zoom"), + select({ name: "zoom" }, + [2, 3, 4, 5, 6, 7, 8].map(z => + option({ value: String(z), ...(zoomVal === z ? { selected: true } : {}) }, String(z)))), + br(),br(), + button({ type: "submit", attrs: { formmethod: "GET" }, formaction: `/maps/${encodeURIComponent(mapObj.key)}`, class: "filter-btn" }, i18n.mapApplyZoom || "Apply Zoom"), + div({ class: "map-form-map-slot" }, + renderMap(existingMarkers, clickUrl, 0, { latParam: "mkLat", lngParam: "mkLng", pinLabels, pinPrefix: `mk${areaCounter}`, zoom: zoomVal, centerLat: parseFloat(mkLat) || parseFloat(mapObj.lat) || 0, centerLng: parseFloat(mkLng) || parseFloat(mapObj.lng) || 0 })), + button({ type: "submit", class: "create-button" }, i18n.mapAddMarkerButton))); +}; + +const renderMarkersList = (markers, mapObj) => { + const allMarkers = []; + if (mapObj) { + allMarkers.push({ + lat: mapObj.lat, + lng: mapObj.lng, + label: mapObj.markerLabel || mapObj.description || mapObj.title || i18n.mapMarkerDefault, + author: mapObj.author, + createdAt: mapObj.createdAt + }); + } + allMarkers.push(...safeArr(markers)); + if (!allMarkers.length) return null; + return div({ class: "map-markers-list" }, + h3(i18n.mapMarkersTitle), + br(), + div(allMarkers.flatMap((mk, i) => [ + ...(i > 0 ? [br()] : []), + div({ class: "map-marker-info" }, + span({ class: "map-marker-dot" }, "ꔌ"), + span({ class: "map-marker-coords" }, `${(typeof mk.lat === 'number' ? mk.lat : 0).toFixed(4)}, ${(typeof mk.lng === 'number' ? mk.lng : 0).toFixed(4)}`), + span({ class: "map-marker-meta" }, + a({ href: `/author/${encodeURIComponent(mk.author)}`, class: "user-link" }, mk.author), + ` · ${moment(mk.createdAt).fromNow()}`)) + ]))); +}; + +const renderMapCard = (mapObj, filter, params = {}) => { + const returnTo = buildReturnTo(filter, params); + const ownerActions = renderMapOwnerActions(filter, mapObj, params); + const markerCount = safeArr(mapObj.markers).length; + + const thumbMarkers = [{ lat: mapObj.lat, lng: mapObj.lng }].concat( + safeArr(mapObj.markers).map((m) => ({ lat: m.lat, lng: m.lng }))); + const thumbFile = renderMapWithPins(thumbMarkers, 0); + const thumbSrc = thumbFile ? `/mapcache/${thumbFile}` : "/assets/images/worldmap-z2.png"; + + return div({ class: "map-card" }, + a({ href: `/maps/${encodeURIComponent(mapObj.key)}?filter=${encodeURIComponent(filter)}`, class: "map-card-thumb-link" }, + { innerHTML: `map` }), + div({ class: "map-card-body" }, + mapObj.title ? h2(a({ href: `/maps/${encodeURIComponent(mapObj.key)}?filter=${encodeURIComponent(filter)}` }, mapObj.title)) : null, + div({ class: "map-card-header" }, + div({ class: "map-card-info" }, + span({ class: "map-type-badge" }, mapObj.mapType), + span({ class: "map-coords" }, `📍 ${mapObj.lat.toFixed(4)}, ${mapObj.lng.toFixed(4)}`), + markerCount > 0 ? span({ class: "map-marker-count" }, `▾ ${markerCount}`) : null, + mapObj.key ? renderMapUrl(mapObj) : null), + div({ class: "map-card-actions" }, + form({ method: "GET", action: `/maps/${encodeURIComponent(mapObj.key)}` }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + input({ type: "hidden", name: "filter", value: filter || "all" }), + button({ type: "submit", class: "filter-btn" }, i18n.viewDetails)), + renderMapFavoriteToggle(mapObj, returnTo), + renderPMButton(mapObj.author), + ...ownerActions)), + safeText(mapObj.description) ? p({ class: "map-description" }, mapObj.description) : null, + p({ class: "card-footer" }, + span({ class: "date-link" }, moment(mapObj.createdAt).fromNow()), + span(" · "), + a({ href: `/author/${encodeURIComponent(mapObj.author)}`, class: "user-link" }, mapObj.author)))); +}; + +const renderMapList = (maps, filter, params = {}) => + maps.length + ? maps.map((mapObj) => renderMapCard(mapObj, filter, params)) + : p(params.q ? i18n.mapNoMatch : i18n.noMaps); + +exports.mapsView = async (maps, filter = "all", mapId = null, params = {}) => { + const title = filter === "mine" ? i18n.mapMineSectionTitle + : filter === "create" ? i18n.mapCreateSectionTitle + : filter === "edit" ? i18n.mapUpdateSectionTitle + : filter === "recent" ? i18n.mapRecentSectionTitle + : filter === "favorites" ? i18n.mapFavoritesSectionTitle + : i18n.mapAllSectionTitle; + + const q = safeText(params.q || ""); + const list = safeArr(maps); + const mapToEdit = mapId ? list.find((m) => m.key === mapId) : null; + const allMarkers = list.map((m) => ({ lat: m.lat, lng: m.lng, href: `/maps/${encodeURIComponent(m.key)}` })); + + return template(title, + section( + div({ class: "tags-header" }, h2(title), p(i18n.mapDescription)), + renderFilters(filter, q)), + section( + filter === "create" || filter === "edit" + ? renderMapForm(filter, mapId, mapToEdit, { ...params, filter }) + : section( + div({ class: "maps-search" }, + form({ method: "GET", action: "/maps", class: "filter-box" }, + input({ type: "hidden", name: "filter", value: filter }), + input({ type: "text", name: "q", value: q, placeholder: i18n.mapSearchPlaceholder, class: "filter-box__input" }), + div({ class: "filter-box__controls" }, button({ type: "submit", class: "filter-box__button" }, i18n.mapSearchButton)))), + div({ class: "maps-list" }, renderMapList(list, filter, { q }))))); +}; + +exports.singleMapView = async (mapObj, filter = "all", params = {}) => { + const q = safeText(params.q || ""); + const returnTo = safeText(params.returnTo) || buildReturnTo(filter, { q }); + const ownerActions = renderMapOwnerActions(filter, mapObj, { q }); + const tribeMembers = safeArr(params.tribeMembers); + const zoomVal = parseInt(params.zoom) || 2; + + const allMarkers = [{ lat: mapObj.lat, lng: mapObj.lng }].concat( + safeArr(mapObj.markers).map((m) => ({ lat: m.lat, lng: m.lng }))); + + const pinLabels = [mapObj.markerLabel || mapObj.description || mapObj.title || ""].concat( + safeArr(mapObj.markers).map((m) => m.label || "")); + const pinImages = [mapObj.image || ""].concat(safeArr(mapObj.markers).map((m) => m.image || "")); + + return template(mapObj.title || i18n.mapTitle, + section(renderFilters(filter, q)), + section( + div({ class: "map-detail" }, + mapObj.title ? h2(mapObj.title) : null, + safeText(mapObj.description) ? p({ class: "map-description" }, mapObj.description) : null, + div({ class: "map-detail-header" }, + div({ class: "map-detail-info" }, + span({ class: "map-type-badge" }, mapObj.mapType), + span({ class: "map-coords-detail" }, `📍 ${mapObj.lat.toFixed(6)}, ${mapObj.lng.toFixed(6)}`)), + div({ class: "map-detail-actions" }, + renderMapFavoriteToggle(mapObj, returnTo), + renderPMButton(mapObj.author), + ...ownerActions)), + renderMapUrl(mapObj), + br(), + form({ method: "GET", action: `/maps/${encodeURIComponent(mapObj.key)}` }, + label(i18n.mapZoomLabel || "Zoom"), + br(), + select({ name: "zoom" }, + [2, 3, 4, 5, 6, 7, 8].map(z => + option({ value: String(z), ...(zoomVal === z ? { selected: true } : {}) }, String(z)))), + br(), br(), + button({ type: "submit", class: "filter-btn" }, i18n.mapApplyZoom || "Apply Zoom")), + br(), + renderMap(allMarkers, null, 0, { pinLabels, pinImages, pinPrefix: `detail${areaCounter}`, zoom: zoomVal, centerLat: parseFloat(mapObj.lat) || 0, centerLng: parseFloat(mapObj.lng) || 0 }), + renderMarkersList(mapObj.markers, mapObj), + renderTags(mapObj.tags), + br(), + p({ class: "card-footer" }, + span({ class: "date-link" }, `${moment(mapObj.createdAt).format("YYYY/MM/DD HH:mm:ss")} ${i18n.performed} `), + a({ href: `/author/${encodeURIComponent(mapObj.author)}`, class: "user-link" }, mapObj.author), + mapObj.updatedAt && mapObj.updatedAt !== mapObj.createdAt + ? span({ class: "votations-comment-date" }, ` · ${i18n.mapUpdatedAt}: ${moment(mapObj.updatedAt).format("YYYY/MM/DD HH:mm:ss")}`) + : null), + renderMarkerForm(mapObj, returnTo, params, tribeMembers)))); +}; + +exports.renderMapLocationUrl = (mapUrl) => { + if (!mapUrl) return null; + return span({ class: "map-location-inline" }, + span({ class: "map-location-icon" }, "ꔌ"), + a({ href: mapUrl, class: "map-location-link" }, mapUrl)); +}; + +exports.renderMapLocationVisitLabel = (mapUrl) => { + if (!mapUrl) return null; + return div({ class: "card-field" }, + span({ class: "card-label" }, (i18n.mapLocationTitle || "Map Location") + ":"), + span({ class: "card-value" }, + a({ href: mapUrl, class: "map-location-link" }, i18n.mapVisitLabel || "Visit map"))); +}; + +exports.renderMapEmbed = (mapData, mapUrl) => { + if (!mapData || (parseFloat(mapData.lat) === 0 && parseFloat(mapData.lng) === 0)) + return exports.renderMapLocationVisitLabel(mapUrl); + return div({ class: "map-embed-section" }, + span({ class: "card-label" }, (i18n.mapLocationTitle || "Map Location") + ":"), + span({ class: "card-value map-zoom-info" }, "Zoom: 2"), + renderLocalEmbed(mapData.lat, mapData.lng), + mapUrl ? div({ class: "map-embed-url" }, + a({ href: mapUrl, class: "map-location-link" }, mapUrl)) : null); +}; + +exports.renderMapEmbedWithZoom = (mapData, mapUrl, detailUrl, zoom) => { + if (!mapData || (parseFloat(mapData.lat) === 0 && parseFloat(mapData.lng) === 0)) + return exports.renderMapLocationVisitLabel(mapUrl); + const zoomVal = parseInt(zoom) || 2; + const la = parseFloat(mapData.lat) || 0; + const lo = parseFloat(mapData.lng) || 0; + return div({ class: "map-embed-section" }, + span({ class: "card-label" }, (i18n.mapLocationTitle || "Map Location") + ":"), + form({ method: "GET", action: detailUrl }, + label(i18n.mapZoomLabel || "Zoom"), + br(), + select({ name: "zoom" }, + [2, 3, 4, 5, 6, 7, 8].map(z => + option({ value: String(z), ...(zoomVal === z ? { selected: true } : {}) }, String(z)))), + br(), br(), + button({ type: "submit", class: "filter-btn" }, i18n.mapApplyZoom || "Apply Zoom")), + br(), + renderMap([{ lat: la, lng: lo }], null, 0, { zoom: zoomVal, centerLat: la, centerLng: lo }), + mapUrl ? div({ class: "map-embed-url" }, + a({ href: mapUrl, class: "map-location-link" }, mapUrl)) : null); +}; + +exports.renderMapLocationGrid = (lat, lng) => { + if (lat === undefined || lng === undefined) return null; + return div({ class: "map-location-embed" }, + renderMap([{ lat: parseFloat(lat) || 0, lng: parseFloat(lng) || 0 }], null, 0)); +}; diff --git a/nodejs-project/nodejs-project/src/views/market_view.js b/nodejs-project/nodejs-project/src/views/market_view.js index 9564588d..c2ea0b78 100644 --- a/nodejs-project/nodejs-project/src/views/market_view.js +++ b/nodejs-project/nodejs-project/src/views/market_view.js @@ -3,6 +3,7 @@ const { template, i18n } = require("./main_views") const moment = require("../server/node_modules/moment") const { config } = require("../server/SSB_server.js") const { renderUrl } = require("../backend/renderUrl") +const { renderMapLocationUrl, renderMapEmbed, renderMapLocationVisitLabel, renderMapEmbedWithZoom } = require("./maps_view") const renderMediaBlob = (value, fallbackSrc = null) => { if (!value) return fallbackSrc ? img({ src: fallbackSrc }) : null @@ -132,7 +133,7 @@ const renderMarketCommentsSection = (itemId, returnTo, comments = []) => { { method: "POST", action: `/market/${encodeURIComponent(itemId)}/comments`, class: "comment-form", enctype: "multipart/form-data" }, input({ type: "hidden", name: "returnTo", value: returnTo }), textarea({ id: "comment-text", name: "text", rows: 4, class: "comment-textarea", placeholder: i18n.voteNewCommentPlaceholder }), - div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob", accept: "image/*,audio/*,video/*,application/pdf" })), + div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob" })), br(), button({ type: "submit", class: "comment-submit-btn" }, i18n.voteNewCommentButton) ) @@ -425,7 +426,7 @@ exports.marketView = async (items, filter, itemToEdit = null, params = {}) => { br(), label(i18n.marketCreateFormImageLabel), br(), - input({ type: "file", name: "image", id: "image", accept: "image/*" }), + input({ type: "file", name: "image", id: "image" }), br(), br(), label(i18n.marketItemStatus), @@ -443,6 +444,11 @@ exports.marketView = async (items, filter, itemToEdit = null, params = {}) => { input({ type: "number", name: "stock", id: "stock", value: (itemEdit && itemEdit.stock) || 1, required: true, min: "1", step: "1" }), br(), br(), + label(i18n.mapLocationTitle || "Map Location"), + br(), + input({ type: "text", name: "mapUrl", placeholder: i18n.mapUrlPlaceholder || "/maps/MAP_ID", value: itemEdit?.mapUrl || "" }), + br(), + br(), label(i18n.marketItemPrice), br(), input({ type: "number", name: "price", id: "price", value: (itemEdit && itemEdit.price) || "", required: true, step: "0.000001", min: "0.000001" }), @@ -476,8 +482,7 @@ exports.marketView = async (items, filter, itemToEdit = null, params = {}) => { class: "meme-checkbox", ...(itemEdit && itemEdit.includesShipping ? { checked: true } : {}) }), - br(), - br(), + br(),br(), button({ type: "submit" }, filter === "edit" ? i18n.marketUpdateButton : i18n.marketCreateButton) ) ) @@ -515,25 +520,12 @@ exports.marketView = async (items, filter, itemToEdit = null, params = {}) => { ].filter(Boolean) const actionNodes = Array.isArray(actionNodesRaw) ? actionNodesRaw.filter(Boolean) : [] - const buttonsBlock = - actionNodes.length > 0 - ? div( - { class: "market-card buttons" }, - div({ style: "display:flex;gap:8px;flex-wrap:wrap;align-items:center;" }, ...actionNodes) - ) - : stockLeft <= 0 - ? div( - { class: "market-card buttons" }, - div({ class: "card-field" }, span({ class: "card-value" }, i18n.marketOutOfStock)) - ) - : null - return div( { class: "market-item" }, div( { class: "market-card left-col" }, div( - { style: "display:flex;gap:8px;flex-wrap:wrap;align-items:center;" }, + { class: "market-owner-actions-inline" }, form( { method: "GET", action: `/market/${encodeURIComponent(item.id)}` }, input({ type: "hidden", name: "returnTo", value: returnTo }), @@ -549,6 +541,9 @@ exports.marketView = async (items, filter, itemToEdit = null, params = {}) => { ), h2({ class: "market-card type" }, `${i18n.marketItemType}: ${String(item.item_type || "").toUpperCase()}`), h2(item.title), + item.shopId && item.shopTitle + ? div({ class: "card-field" }, span({ class: "card-label" }, `${i18n.marketShopLabel || "Shop"}:`), span({ class: "card-value" }, a({ href: `/shops/${encodeURIComponent(item.shopId)}`, class: "user-link" }, item.shopTitle))) + : null, renderCardField(`${i18n.marketItemStatus}:`, item.status), renderCountdownField(item), item.deadline ? renderCardField(`${i18n.marketItemAvailable}:`, moment(item.deadline).format("YYYY/MM/DD HH:mm:ss")) : null, @@ -558,21 +553,14 @@ exports.marketView = async (items, filter, itemToEdit = null, params = {}) => { { class: "market-card image" }, renderMediaBlob(item.image, "/assets/images/default-market.png") ), - p(...renderUrl(item.description)), - item.tags && item.tags.filter(Boolean).length - ? div( - { class: "card-tags" }, - item.tags - .filter(Boolean) - .map((tag) => a({ class: "tag-link", href: `/search?query=%23${encodeURIComponent(tag)}` }, `#${tag}`)) - ) - : null + p(...renderUrl(item.description)) ), div( { class: "market-card right-col" }, div({ class: "market-card price" }, renderCardField(`${i18n.marketItemPrice}:`, `${item.price} ECO`)), renderCardField(`${i18n.marketItemCondition}:`, item.item_status), renderCardField(`${i18n.marketItemIncludesShipping}:`, item.includesShipping ? i18n.YESLabel : i18n.NOLabel), + renderMapLocationVisitLabel(item.mapUrl), br(), renderStockBar(item.stock, maxStock), item.item_type === "auction" && parsedBids.length > 0 @@ -611,7 +599,6 @@ exports.marketView = async (items, filter, itemToEdit = null, params = {}) => { button({ type: "submit", class: "filter-btn" }, i18n.voteCommentsForumButton) ) ), - buttonsBlock ) ) }) @@ -665,6 +652,9 @@ exports.singleMarketView = async (item, filter, comments = [], params = {}) => { topbar ? topbar : null, h2(item.title), renderCardField(`${i18n.marketItemType}:`, `${String(item.item_type || "").toUpperCase()}`), + item.shopId && item.shopTitle + ? div({ class: "card-field" }, span({ class: "card-label" }, `${i18n.marketShopLabel || "Shop"}:`), span({ class: "card-value" }, a({ href: `/shops/${encodeURIComponent(item.shopId)}`, class: "user-link" }, item.shopTitle))) + : null, renderCardField(`${i18n.marketItemStatus}:`, item.status), renderCountdownField(item), renderCardField(`${i18n.marketItemCondition}:`, item.item_status), @@ -686,6 +676,7 @@ exports.singleMarketView = async (item, filter, comments = [], params = {}) => { renderStockBar(item.stock, maxStock), br(), renderCardField(`${i18n.marketItemIncludesShipping}:`, `${item.includesShipping ? i18n.YESLabel : i18n.NOLabel}`), + renderMapEmbedWithZoom(params.mapData, item.mapUrl, `/market/${encodeURIComponent(item.id)}`, params.zoom), item.deadline ? renderCardField(`${i18n.marketItemAvailable}:`, `${moment(item.deadline).format("YYYY/MM/DD HH:mm:ss")}`) : null, renderCardFieldRich(`${i18n.marketItemSeller}:`, [a({ class: "user-link", href: `/author/${encodeURIComponent(item.seller)}` }, item.seller)]) ), diff --git a/nodejs-project/nodejs-project/src/views/modules_view.js b/nodejs-project/nodejs-project/src/views/modules_view.js index 6d9e0efb..5a048f88 100644 --- a/nodejs-project/nodejs-project/src/views/modules_view.js +++ b/nodejs-project/nodejs-project/src/views/modules_view.js @@ -10,6 +10,8 @@ const modulesView = () => { { name: 'audios', label: i18n.modulesAudiosLabel, description: i18n.modulesAudiosDescription }, { name: 'banking', label: i18n.modulesBankingLabel, description: i18n.modulesBankingDescription }, { name: 'bookmarks', label: i18n.modulesBookmarksLabel, description: i18n.modulesBookmarksDescription }, + { name: 'calendars', label: i18n.modulesCalendarsLabel, description: i18n.modulesCalendarsDescription }, + { name: 'chats', label: i18n.modulesChatsLabel, description: i18n.modulesChatsDescription }, { name: 'cipher', label: i18n.modulesCipherLabel, description: i18n.modulesCipherDescription }, { name: 'courts', label: i18n.modulesCourtsLabel, description: i18n.modulesCourtsDescription }, { name: 'docs', label: i18n.modulesDocsLabel, description: i18n.modulesDocsDescription }, @@ -17,23 +19,29 @@ const modulesView = () => { { name: 'favorites', label: i18n.modulesFavoritesLabel, description: i18n.modulesFavoritesDescription }, { name: 'feed', label: i18n.modulesFeedLabel, description: i18n.modulesFeedDescription }, { name: 'forum', label: i18n.modulesForumLabel, description: i18n.modulesForumDescription }, + { name: 'games', label: i18n.modulesGamesLabel, description: i18n.modulesGamesDescription }, { name: 'images', label: i18n.modulesImagesLabel, description: i18n.modulesImagesDescription }, { name: 'invites', label: i18n.modulesInvitesLabel, description: i18n.modulesInvitesDescription }, { name: 'jobs', label: i18n.modulesJobsLabel, description: i18n.modulesJobsDescription }, { name: 'legacy', label: i18n.modulesLegacyLabel, description: i18n.modulesLegacyDescription }, { name: 'latest', label: i18n.modulesLatestLabel, description: i18n.modulesLatestDescription }, + { name: 'logs', label: i18n.modulesLogsLabel, description: i18n.modulesLogsDescription }, + { name: 'maps', label: i18n.modulesMapLabel, description: i18n.modulesMapDescription }, { name: 'market', label: i18n.modulesMarketLabel, description: i18n.modulesMarketDescription }, { name: 'multiverse', label: i18n.modulesMultiverseLabel, description: i18n.modulesMultiverseDescription }, { name: 'opinions', label: i18n.modulesOpinionsLabel, description: i18n.modulesOpinionsDescription }, + { name: 'pads', label: i18n.modulesPadsLabel, description: i18n.modulesPadsDescription }, { name: 'parliament', label: i18n.modulesParliamentLabel, description: i18n.modulesParliamentDescription }, { name: 'pixelia', label: i18n.modulesPixeliaLabel, description: i18n.modulesPixeliaDescription }, { name: 'projects', label: i18n.modulesProjectsLabel, description: i18n.modulesProjectsDescription }, { name: 'popular', label: i18n.modulesPopularLabel, description: i18n.modulesPopularDescription }, { name: 'reports', label: i18n.modulesReportsLabel, description: i18n.modulesReportsDescription }, + { name: 'shops', label: i18n.modulesShopsLabel, description: i18n.modulesShopsDescription }, { name: 'summaries', label: i18n.modulesSummariesLabel, description: i18n.modulesSummariesDescription }, { name: 'tags', label: i18n.modulesTagsLabel, description: i18n.modulesTagsDescription }, { name: 'tasks', label: i18n.modulesTasksLabel, description: i18n.modulesTasksDescription }, { name: 'threads', label: i18n.modulesThreadsLabel, description: i18n.modulesThreadsDescription }, + { name: 'torrents', label: i18n.modulesTorrentsLabel, description: i18n.modulesTorrentsDescription }, { name: 'transfers', label: i18n.modulesTransfersLabel, description: i18n.modulesTransfersDescription }, { name: 'trending', label: i18n.modulesTrendingLabel, description: i18n.modulesTrendingDescription }, { name: 'tribes', label: i18n.modulesTribesLabel, description: i18n.modulesTribesDescription }, @@ -72,9 +80,9 @@ const modulesView = () => { ); const PRESETS = { - minimal: ['feed', 'forum', 'images', 'videos', 'audios', 'bookmarks', 'tags', 'trending', 'popular', 'latest', 'threads', 'opinions', 'cipher', 'legacy'], - social: ['agenda', 'audios', 'bookmarks', 'cipher', 'courts', 'docs', 'events', 'favorites', 'feed', 'forum', 'images', 'invites', 'legacy', 'multiverse', 'opinions', 'parliament', 'pixelia', 'projects', 'reports', 'tags', 'tasks', 'threads', 'trending', 'tribes', 'videos', 'votes'], - economy: ['agenda', 'audios', 'bookmarks', 'cipher', 'courts', 'docs', 'events', 'favorites', 'feed', 'forum', 'images', 'invites', 'legacy', 'multiverse', 'opinions', 'parliament', 'pixelia', 'projects', 'reports', 'tags', 'tasks', 'threads', 'trending', 'tribes', 'videos', 'votes', 'banking', 'wallet', 'transfers', 'market', 'jobs'], + minimal: ['feed', 'forum', 'games', 'images', 'videos', 'audios', 'bookmarks', 'tags', 'trending', 'popular', 'latest', 'threads', 'opinions', 'cipher', 'legacy'], + social: ['agenda', 'audios', 'bookmarks', 'calendars', 'chats', 'cipher', 'courts', 'docs', 'events', 'favorites', 'feed', 'forum', 'games', 'images', 'invites', 'legacy', 'logs', 'maps', 'multiverse', 'opinions', 'pads', 'parliament', 'pixelia', 'projects', 'reports', 'tags', 'tasks', 'threads', 'trending', 'tribes', 'videos', 'votes'], + economy: ['agenda', 'audios', 'bookmarks', 'calendars', 'chats', 'cipher', 'courts', 'docs', 'events', 'favorites', 'feed', 'forum', 'games', 'images', 'invites', 'legacy', 'logs', 'maps', 'multiverse', 'opinions', 'pads', 'parliament', 'pixelia', 'projects', 'reports', 'tags', 'tasks', 'threads', 'trending', 'tribes', 'videos', 'votes', 'banking', 'wallet', 'transfers', 'market', 'jobs', 'shops'], full: modules.map(m => m.name) }; diff --git a/nodejs-project/nodejs-project/src/views/opinions_view.js b/nodejs-project/nodejs-project/src/views/opinions_view.js index 25c21b26..4a7a6550 100644 --- a/nodejs-project/nodejs-project/src/views/opinions_view.js +++ b/nodejs-project/nodejs-project/src/views/opinions_view.js @@ -21,7 +21,7 @@ const renderContentHtml = (content, key) => { span({ class: 'card-label' }, p(a({ href: content.url, target: '_blank', class: "bookmark-url" }, content.url))) ) : ""), content.lastVisit ? div({ class: 'card-field' }, - span({ class: 'card-label' }, i18n.bookmarkLastVisit + ':'), + span({ class: 'card-label' }, i18n.bookmarkLastVisitLabel + ':'), span({ class: 'card-value' }, new Date(content.lastVisit).toLocaleString()) ) : "", content.description @@ -114,6 +114,15 @@ const renderContentHtml = (content, key) => { ) ) ); + case 'torrent': + return div({ class: 'opinion-torrent' }, + div({ class: 'card-section' }, + form({ method: "GET", action: `/torrents/${encodeURIComponent(key)}` }, + button({ type: "submit", class: "filter-btn" }, i18n.viewDetails)), + br(), + content.title ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.torrentTitleLabel || 'Title') + ':'), span({ class: 'card-value' }, content.title)) : "" + ) + ); case 'document': { const t = content.title?.trim(); if (t && seenDocumentTitles.has(t)) return null; @@ -143,11 +152,14 @@ const renderContentHtml = (content, key) => { case 'feed': return div({ class: 'opinion-feed' }, div({ class: 'card-section feed' }, + form({ method: "GET", action: `/feed/${encodeURIComponent(key)}` }, + button({ type: "submit", class: "filter-btn" }, i18n.viewDetails) + ), + br, div({ class: 'feed-text', innerHTML: sanitizeHtml(renderTextWithStyles(content.text)) }), - h2({ class: 'card-field' }, - span({ class: 'card-label' }, `${i18n.tribeFeedRefeeds}: `), - span({ class: 'card-value' }, content.refeeds) - ) + content.refeeds + ? h2({ class: 'card-field' }, span({ class: 'card-label' }, `${i18n.tribeFeedRefeeds}: `), span({ class: 'card-value' }, content.refeeds)) + : "" ) ); case 'votes': { @@ -219,7 +231,6 @@ const renderContentHtml = (content, key) => { return div({ class: 'styled-text' }, div({ class: 'card-section styled-text-content' }, div({ class: 'card-field' }, - span({ class: 'card-label' }, i18n.textContentLabel + ':'), span({ class: 'card-value', innerHTML: sanitizeHtml(content.text || content.description || content.title || '[no content]') }) ) ) @@ -288,7 +299,7 @@ exports.opinionsView = (items, filter) => { return button({ class: 'vote-btn', type: 'button' }, label); } return form({ method: 'POST', action: `/opinions/${encodeURIComponent(key)}/${cat}` }, - button({ type: 'submit', class: 'vote-btn' }, label) + button({ class: 'vote-btn' }, label) ); }) ) diff --git a/nodejs-project/nodejs-project/src/views/pads_view.js b/nodejs-project/nodejs-project/src/views/pads_view.js new file mode 100644 index 00000000..fcfdeaf8 --- /dev/null +++ b/nodejs-project/nodejs-project/src/views/pads_view.js @@ -0,0 +1,350 @@ +const { div, h2, h3, h4, p, section, button, form, a, span, br, textarea, input, label, select, option, table, tr, td } = require("../server/node_modules/hyperaxe") +const { template, i18n } = require("./main_views") +const moment = require("../server/node_modules/moment") +const { config } = require("../server/SSB_server.js") + +const userId = config.keys.id + +const PAD_COLOR_CLASSES = ["pad-author-color-0","pad-author-color-1","pad-author-color-2","pad-author-color-3","pad-author-color-4","pad-author-color-5","pad-author-color-6","pad-author-color-7","pad-author-color-8","pad-author-color-9"] +const memberColorClass = (members, feedId) => { + const idx = members.indexOf(feedId) + return idx >= 0 ? PAD_COLOR_CLASSES[idx % PAD_COLOR_CLASSES.length] : "pad-author-color-none" +} + +const sliceChunksByOffset = (chunks, from, to) => { + const out = [] + let pos = 0 + for (const c of chunks) { + const cStart = pos + const cEnd = pos + c.text.length + if (cEnd <= from) { pos = cEnd; continue } + if (cStart >= to) break + const sliceStart = Math.max(0, from - cStart) + const sliceEnd = Math.min(c.text.length, to - cStart) + if (sliceEnd > sliceStart) out.push({ text: c.text.slice(sliceStart, sliceEnd), author: c.author }) + pos = cEnd + } + return out +} + +const mergeAdjacent = (chunks) => { + const out = [] + for (const c of chunks) { + if (!c.text) continue + if (out.length > 0 && out[out.length - 1].author === c.author) { + out[out.length - 1].text += c.text + } else { + out.push({ ...c }) + } + } + return out +} + +const computeAttributedChunks = (entries) => { + if (!entries || entries.length === 0) return [] + let chunks = [{ text: entries[0].text || "", author: entries[0].author }] + for (let i = 1; i < entries.length; i++) { + const prev = entries[i - 1].text || "" + const curr = entries[i].text || "" + const author = entries[i].author + let start = 0 + const maxStart = Math.min(prev.length, curr.length) + while (start < maxStart && prev.charCodeAt(start) === curr.charCodeAt(start)) start++ + let endPrev = prev.length + let endCurr = curr.length + while (endPrev > start && endCurr > start && prev.charCodeAt(endPrev - 1) === curr.charCodeAt(endCurr - 1)) { + endPrev-- + endCurr-- + } + const inserted = curr.slice(start, endCurr) + const headChunks = sliceChunksByOffset(chunks, 0, start) + const tailChunks = sliceChunksByOffset(chunks, endPrev, prev.length) + const middle = inserted ? [{ text: inserted, author }] : [] + chunks = mergeAdjacent([...headChunks, ...middle, ...tailChunks]) + } + return chunks +} + +const renderStatus = (status, isClosed) => { + if (isClosed) return span({ class: "pad-status-closed" }, i18n.padStatusClosed || "CLOSED") + if (status === "INVITE-ONLY") return span({ class: "pad-status-invite" }, i18n.padStatusInviteOnly || "INVITE-ONLY") + return span({ class: "pad-status-open" }, i18n.padStatusOpen || "OPEN") +} + +const renderModeButtons = (currentFilter) => + div({ class: "tribe-mode-buttons" }, + ["all", "mine", "recent", "open", "closed"].map(f => + form({ method: "GET", action: "/pads" }, + input({ type: "hidden", name: "filter", value: f }), + button({ type: "submit", class: currentFilter === f ? "filter-btn active" : "filter-btn" }, + i18n[`padFilter${f.charAt(0).toUpperCase() + f.slice(1)}`] || f.toUpperCase()) + ) + ), + form({ method: "GET", action: "/pads" }, + input({ type: "hidden", name: "filter", value: "create" }), + button({ type: "submit", class: "create-button" }, i18n.padCreate || "Create Pad") + ) + ) + + +const renderPadCard = (pad, filter) => { + const returnTo = `/pads?filter=${encodeURIComponent(filter || "all")}` + return div({ class: "tribe-card" }, + div({ class: "tribe-card-body" }, + h2({ class: "tribe-card-title" }, + span(null, "\uD83D\uDD12 "), + a({ href: `/pads/${encodeURIComponent(pad.rootId)}` }, pad.title || "\u2014") + ), + table({ class: "tribe-info-table" }, + tr(td(i18n.padStatusLabel || "Status"), td(renderStatus(pad.status, pad.isClosed))), + pad.deadline ? tr(td(i18n.padDeadlineLabel || "Deadline"), td(moment(pad.deadline).format("YYYY-MM-DD HH:mm"))) : null + ), + div({ class: "tribe-card-members" }, + span({ class: "tribe-members-count" }, `${i18n.padMembersLabel || "Members"}: ${pad.members.length}`) + ), + div({ class: "visit-btn-centered" }, + a({ href: `/pads/${encodeURIComponent(pad.rootId)}`, class: "filter-btn" }, i18n.padVisitPad || "Visit Pad") + ) + ) + ) +} + +const renderCreateForm = (padToEdit, params) => { + const tribeId = (params && params.tribeId) || "" + return div({ class: "div-center audio-form" }, + h2(padToEdit ? (i18n.padUpdateSectionTitle || "Update Pad") : (i18n.padCreateSectionTitle || "Create New Pad")), + form({ + method: "POST", + action: padToEdit ? `/pads/update/${encodeURIComponent(padToEdit.rootId)}` : "/pads/create" + }, + tribeId ? input({ type: "hidden", name: "tribeId", value: tribeId }) : null, + span(i18n.padTitleLabel || "Title"), require("../server/node_modules/hyperaxe").br(), + input({ type: "text", name: "title", value: padToEdit ? padToEdit.title : "", placeholder: i18n.padTitlePlaceholder || "Enter pad title...", required: true }), + require("../server/node_modules/hyperaxe").br(), require("../server/node_modules/hyperaxe").br(), + span(i18n.padStatusLabel || "Status"), require("../server/node_modules/hyperaxe").br(), + select({ name: "status" }, + ["OPEN", "INVITE-ONLY"].map(s => + option({ value: s, ...(padToEdit && padToEdit.status === s ? { selected: true } : {}) }, s) + ) + ), + require("../server/node_modules/hyperaxe").br(), require("../server/node_modules/hyperaxe").br(), + span(i18n.padDeadlineLabel || "Deadline"), require("../server/node_modules/hyperaxe").br(), + input({ + type: "datetime-local", + name: "deadline", + value: padToEdit && padToEdit.deadline ? moment(padToEdit.deadline).format("YYYY-MM-DDTHH:mm") : "", + min: moment().format("YYYY-MM-DDTHH:mm") + }), + require("../server/node_modules/hyperaxe").br(), require("../server/node_modules/hyperaxe").br(), + span(i18n.padTagsLabel || "Tags"), require("../server/node_modules/hyperaxe").br(), + input({ type: "text", name: "tags", value: padToEdit ? padToEdit.tags.join(", ") : "", placeholder: i18n.padTagsPlaceholder || "tag1, tag2, ..." }), + require("../server/node_modules/hyperaxe").br(), require("../server/node_modules/hyperaxe").br(), + button({ type: "submit", class: "create-button" }, padToEdit ? (i18n.padUpdate || "Update Pad") : (i18n.padCreate || "Create Pad")) + ) + ) +} + +exports.renderPadInvitePage = (code) => { + const pageContent = div({ class: "invite-page" }, + h2(i18n.tribeInviteCodeText, code), + form({ method: "GET", action: "/pads" }, + input({ type: "hidden", name: "filter", value: "all" }), + button({ type: "submit", class: "filter-btn" }, i18n.walletBack) + ) + ) + return template(i18n.padInviteMode || "Invite", section(pageContent)) +} + +exports.padsView = async (pads, filter, padToEdit, params) => { + const q = String((params && params.q) || "").trim() + const isForm = filter === "create" || filter === "edit" + const headerMap = { + all: i18n.padAllSectionTitle || "Pads", + mine: i18n.padMineSectionTitle || "Your Pads", + recent: i18n.padRecentSectionTitle || "Recent Pads", + open: i18n.padOpenSectionTitle || "Open Pads", + closed: i18n.padClosedSectionTitle || "Closed Pads" + } + const headerText = headerMap[filter] || headerMap.all + + const filteredPads = q + ? pads.filter(pd => String(pd.title || "").toLowerCase().includes(q.toLowerCase())) + : pads + + const body = div({ class: "main-column" }, + div({ class: "tags-header" }, + h2(headerText), + p(i18n.padsDescription || "Manage collaborative encrypted text editors in your network.") + ), + renderModeButtons(filter), + !isForm + ? div({ class: "filters" }, + form({ method: "GET", action: "/pads" }, + input({ type: "hidden", name: "filter", value: filter }), + input({ type: "text", name: "q", placeholder: i18n.padSearchPlaceholder || "Search pads...", value: q }), + br(), + button({ type: "submit" }, i18n.search), + br() + ) + ) + : null, + isForm + ? renderCreateForm(padToEdit, params) + : div( + filteredPads.length === 0 + ? p({ class: "no-content" }, i18n.padsNoItems || "No pads found.") + : div({ class: "tribe-grid" }, ...filteredPads.map(pd => renderPadCard(pd, filter))) + ) + ) + + return template(i18n.padsTitle || "Pads", body) +} + +exports.singlePadView = async (pad, entries, params) => { + const isAuthor = String(pad.author) === String(userId) + const isMember = pad.members.includes(userId) + const padClosed = pad.isClosed + const returnTo = `/pads/${encodeURIComponent(pad.rootId)}` + const shareUrl = `/pads/${encodeURIComponent(pad.rootId)}` + const isRestrictedInviteOnly = !isMember && !isAuthor && pad.status === "INVITE-ONLY" + + const tags = !isRestrictedInviteOnly && Array.isArray(pad.tags) && pad.tags.length > 0 + ? div({ class: "tribe-side-tags" }, ...pad.tags.map(t => a({ href: `/search?query=%23${encodeURIComponent(t)}` }, `#${t}`))) + : null + + const padSide = div({ class: "tribe-side" }, + h2(null, + span(null, "\uD83D\uDD12 "), + pad.title || "\u2014" + ), + div({ class: "shop-share" }, + span({ class: "tribe-info-label" }, i18n.padShareUrl || "Share URL"), + input({ type: "text", readonly: true, value: shareUrl, class: "shop-share-input" }) + ), + div({ class: "tribe-card-members" }, + span({ class: "tribe-members-count" }, `${i18n.padMembersLabel || "Members"}: ${pad.members.length}`) + ), + table({ class: "tribe-info-table" }, + tr(td({ class: "tribe-info-label" }, i18n.padCreated || "Created"), td({ class: "tribe-info-value", colspan: "3" }, moment(pad.createdAt).format("YYYY-MM-DD"))), + isRestrictedInviteOnly ? null : tr(td({ class: "tribe-info-value", colspan: "4" }, a({ href: `/author/${encodeURIComponent(pad.author)}`, class: "user-link" }, pad.author))), + tr(td({ class: "tribe-info-label" }, i18n.padStatusLabel || "Status"), td({ class: "tribe-info-value", colspan: "3" }, renderStatus(pad.status, padClosed))), + isRestrictedInviteOnly ? null : tr(td({ class: "tribe-info-label" }, i18n.padDeadlineLabel || "Deadline"), td({ class: "tribe-info-value", colspan: "3" }, pad.deadline ? moment(pad.deadline).format("YYYY-MM-DD HH:mm") : "\u2014")) + ), + isRestrictedInviteOnly ? null : div({ class: "tribe-side-actions" }, + isAuthor + ? form({ method: "POST", action: `/pads/generate-invite/${encodeURIComponent(pad.rootId)}` }, + button({ type: "submit", class: "tribe-action-btn" }, i18n.padGenerateCode || "Generate Code") + ) + : null, + form( + { method: "POST", action: pad.isFavorite ? `/pads/favorites/remove/${encodeURIComponent(pad.key)}` : `/pads/favorites/add/${encodeURIComponent(pad.key)}` }, + returnTo ? input({ type: "hidden", name: "returnTo", value: returnTo }) : null, + button({ type: "submit", class: "tribe-action-btn" }, pad.isFavorite ? (i18n.padRemoveFavorite || "Remove Favorite") : (i18n.padAddFavorite || "Add Favorite")) + ), + !isAuthor + ? a({ href: `/pm?to=${encodeURIComponent(pad.author)}`, class: "tribe-action-btn" }, "PM") + : null, + isAuthor + ? form({ method: "GET", action: "/pads" }, + input({ type: "hidden", name: "filter", value: "edit" }), + input({ type: "hidden", name: "id", value: pad.rootId }), + button({ type: "submit", class: "tribe-action-btn" }, i18n.padUpdate || "Update") + ) + : null, + isAuthor && pad.status !== "CLOSED" && !padClosed + ? form({ method: "POST", action: `/pads/close/${encodeURIComponent(pad.rootId)}` }, + button({ type: "submit", class: "tribe-action-btn" }, i18n.padClose || "Close Pad") + ) + : null, + isAuthor + ? form({ method: "POST", action: `/pads/delete/${encodeURIComponent(pad.rootId)}` }, + button({ type: "submit", class: "tribe-action-btn" }, i18n.padDelete || "Delete") + ) + : null + ), + !isAuthor && pad.status === "INVITE-ONLY" && !isMember + ? div({ class: "pad-invite-section" }, + form({ method: "POST", action: "/pads/join-code" }, + label(i18n.padInviteCodeLabel || "Invite Code"), + input({ type: "text", name: "code", placeholder: i18n.padInviteCodePlaceholder || "Enter invite code..." }), + button({ type: "submit", class: "filter-btn" }, i18n.padValidateInvite || "Validate") + ) + ) + : null, + !isRestrictedInviteOnly && (!isAuthor && (pad.status === "OPEN" || isMember) && !padClosed) + ? form({ method: "POST", action: `/pads/join/${encodeURIComponent(pad.rootId)}` }, + button({ type: "submit", class: "create-button" }, i18n.padStartEditing || "START EDITING!") + ) + : null, + tags + ) + + let canonicalEntries = entries + if (params.selectedVersion) { + const idx = entries.findIndex(e => e.key === params.selectedVersion.key) + if (idx >= 0) canonicalEntries = entries.slice(0, idx + 1) + } + const chunks = computeAttributedChunks(canonicalEntries) + const lastEntry = canonicalEntries.length > 0 ? canonicalEntries[canonicalEntries.length - 1] : null + const currentText = lastEntry ? lastEntry.text : "" + + const coloredView = chunks.length > 0 + ? div({ class: "pad-readonly-colored" }, + ...chunks.map(c => + span({ class: "pad-author-span " + memberColorClass(pad.members, c.author) }, c.text) + ) + ) + : p(i18n.padNoEntries || "No entries yet.") + + const versionList = entries.length > 0 + ? div({ class: "pad-version-list" }, + h4(i18n.padVersionHistory || "Version History"), + ...entries.slice().reverse().map((e, idx) => + div({ class: "pad-version-item" }, + span({ class: "pad-version-date" }, moment(e.createdAt).format("YYYY-MM-DD HH:mm")), + span({ class: "pad-version-author" }, + span({ class: "pad-author-swatch " + memberColorClass(pad.members, e.author) }), + a({ href: `/author/${encodeURIComponent(e.author)}`, class: "user-link" }, "@" + e.author.slice(1, 9) + "\u2026") + ), + a({ href: `/pads/${encodeURIComponent(pad.rootId)}?version=${encodeURIComponent(e.key || idx)}`, class: "pad-version-link" }, i18n.padVersionView || "View") + ) + ) + ) + : null + + const editorArea = isMember && !padClosed && !params.selectedVersion + ? div({ class: "pad-editor-area" }, + coloredView, + form({ method: "POST", action: `/pads/entry/${encodeURIComponent(pad.rootId)}` }, + textarea({ name: "text", rows: "12", class: "pad-editor-white", placeholder: i18n.padEditorPlaceholder || "Start writing..." }, currentText), + button({ type: "submit", class: "create-button" }, i18n.padSubmitEntry || "Submit") + ), + versionList ? div({ class: "pad-version-section" }, versionList) : null + ) + : div({ class: "pad-editor-area" }, + params.selectedVersion + ? div({ class: "pad-viewer-back" }, + a({ href: `/pads/${encodeURIComponent(pad.rootId)}`, class: "filter-btn" }, + "\u2190 " + (i18n.padBackToEditor || "Back to editor")) + ) + : null, + coloredView, + versionList ? div({ class: "pad-version-section" }, versionList) : null + ) + + const padMain = isRestrictedInviteOnly + ? div({ class: "tribe-main" }, p({ class: "access-denied-msg" }, i18n.padAccessDenied)) + : div({ class: "tribe-main" }, editorArea) + + return template( + pad.title || i18n.padsTitle || "Pad", + section( + div({ class: "tags-header" }, + h2(i18n.padsTitle || "Pads"), + p(i18n.padsDescription || "Manage collaborative encrypted text editors in your network.") + ), + renderModeButtons("all") + ), + section(div({ class: "tribe-details" }, padSide, padMain)) + ) +} diff --git a/nodejs-project/nodejs-project/src/views/parliament_view.js b/nodejs-project/nodejs-project/src/views/parliament_view.js index f27d45f1..620cf7cb 100644 --- a/nodejs-project/nodejs-project/src/views/parliament_view.js +++ b/nodejs-project/nodejs-project/src/views/parliament_view.js @@ -153,6 +153,7 @@ const GovernmentCard = (g, meta) => { { class: 'card' }, h2(i18n.parliamentGovernmentCard), GovHeader(g), + div({ class: 'method-image-centered' }, img({ src: methodImageSrc(methodKey), alt: methodLabel })), div( { class: 'table-wrap' }, applyEl(table, { class: 'table table--centered gov-overview' }, [ @@ -166,7 +167,7 @@ const GovernmentCard = (g, meta) => { th(i18n.parliamentEfficiency || '% EFFICIENCY') )), tbody(tr( - td(div({ class: 'method-cell' }, img({ src: methodImageSrc(methodKey), alt: methodLabel }))), + td(methodLabel), td(String(g.proposed || 0)), td(String(g.approved || 0)), td(String(g.declined || 0)), @@ -294,7 +295,7 @@ const CandidaturesTable = (candidatures) => { td({ class: 'nowrap' }, c.method), td(c.targetType === 'inhabitant' ? String(c.karma || 0) : '-'), td(String(c.votes || 0)), - td(form({ method: 'POST', action: `/parliament/candidatures/${encodeURIComponent(c.id)}/vote` }, button({ type: 'submit', class: 'vote-btn' }, i18n.parliamentVoteBtn))) + td(form({ method: 'POST', action: `/parliament/candidatures/${encodeURIComponent(c.id)}/vote` }, button({ class: 'vote-btn' }, i18n.parliamentVoteBtn))) ); }); return div( diff --git a/nodejs-project/nodejs-project/src/views/pixelia_view.js b/nodejs-project/nodejs-project/src/views/pixelia_view.js index 7b578558..890aa5b2 100644 --- a/nodejs-project/nodejs-project/src/views/pixelia_view.js +++ b/nodejs-project/nodejs-project/src/views/pixelia_view.js @@ -40,13 +40,11 @@ exports.pixeliaView = (pixelArt, errorMessage) => { ), section( div({ class: "pixelia-form-wrap" }, - form({ method: "POST", action: "/pixelia/paint"}, + form({ method: "POST", action: "/pixelia/paint", class: "pixelia-paint-form" }, label({ for: "x" }, "X (1-50):"), input({ type: "number", id: "x", name: "x", min: 1, max: gridWidth, required: true }), - br(),br(), label({ for: "y" }, "Y (1-200):"), input({ type: "number", id: "y", name: "y", min: 1, max: gridHeight, required: true }), - br(),br(), label({ for: "color" }, i18n.colorLabel), select({ id: "color", name: "color", required: true }, option({ value: "#000000", style: "background-color:#000000;" }, "Black"), @@ -66,7 +64,6 @@ exports.pixeliaView = (pixelArt, errorMessage) => { option({ value: "#d3d3d3", style: "background-color:#d3d3d3;" }, "Light Grey"), option({ value: "#ff6347", style: "background-color:#ff6347;" }, "Tomato") ), - br(),br(), button({ type: "submit" }, i18n.paintButton) ) ), diff --git a/nodejs-project/nodejs-project/src/views/pm_view.js b/nodejs-project/nodejs-project/src/views/pm_view.js index 1ba12a56..9bf2d3c0 100644 --- a/nodejs-project/nodejs-project/src/views/pm_view.js +++ b/nodejs-project/nodejs-project/src/views/pm_view.js @@ -1,10 +1,13 @@ -const { div, h2, p, section, button, form, input, textarea, br, label, pre } = require("../server/node_modules/hyperaxe"); +const { div, h2, p, section, button, form, input, textarea, br, label, pre, span } = require("../server/node_modules/hyperaxe"); const { template, i18n } = require('./main_views'); +const { getConfig } = require('../configs/config-manager.js'); exports.pmView = async (initialRecipients = '', initialSubject = '', initialText = '', showPreview = false) => { const title = i18n.pmSendTitle; const description = i18n.pmDescription; const textLen = (initialText || '').length; + const pmVis = getConfig().pmVisibility === 'mutuals' ? 'mutuals' : 'whole'; + const pmVisLabel = pmVis === 'mutuals' ? i18n.settingsPmVisibilityMutuals : i18n.settingsPmVisibilityWhole; return template( title, @@ -16,6 +19,7 @@ exports.pmView = async (initialRecipients = '', initialSubject = '', initialText section( div({ class: "pm-form" }, form({ method: "POST", action: "/pm", id: "pm-form" }, + p({ class: "pm-visibility-note" }, span({ class: "accent" }, "* "), pmVisLabel), label({ for: "recipients" }, i18n.pmRecipients), br(), input({ diff --git a/nodejs-project/nodejs-project/src/views/projects_view.js b/nodejs-project/nodejs-project/src/views/projects_view.js index 3a90bd34..b3cf3515 100644 --- a/nodejs-project/nodejs-project/src/views/projects_view.js +++ b/nodejs-project/nodejs-project/src/views/projects_view.js @@ -3,6 +3,7 @@ const { template, i18n } = require("./main_views") const moment = require("../server/node_modules/moment") const { config } = require("../server/SSB_server.js") const { renderUrl } = require("../backend/renderUrl") +const { renderMapLocationUrl, renderMapEmbed, renderMapLocationVisitLabel, renderMapEmbedWithZoom } = require("./maps_view") const renderMediaBlob = (value) => { if (!value) return null @@ -129,9 +130,6 @@ const renderBudget = (project) => { const pct = S.goal > 0 ? clamp(Math.round((S.assigned / S.goal) * 100), 0, 100) : 0 return div( { class: `budget-summary${S.exceeded ? " over" : ""}` }, - renderCardField(i18n.projectBudgetGoal + ":", `${S.goal} ECO`), - renderCardField(i18n.projectBudgetAssigned + ":", `${S.assigned} ECO`), - renderCardField(i18n.projectBudgetRemaining + ":", `${S.remaining} ECO`), S.goal > 0 ? renderProgressBlock(i18n.projectBudgetAssigned + ":", `${S.assigned}/${S.goal}`, pct, 100) : null, S.exceeded ? p({ class: "warning" }, i18n.projectBudgetOver) : null ) @@ -494,16 +492,17 @@ const renderProjectList = (projects, filter) => { { class: `project-card ${statusClass}` }, topbar ? topbar : null, h2(pr.title), - pr.image ? div({ class: "activity-image-preview" }, renderMediaBlob(pr.image)) : null, safeText(pr.description) ? renderCardFieldRich(i18n.projectDescription + ":", renderUrl(pr.description)) : null, - renderCardField(i18n.projectStatus + ":", i18n["projectStatus" + statusUpper] || statusUpper), + pr.image ? div({ class: "activity-image-preview" }, renderMediaBlob(pr.image)) : null, + br(), + div({ class: "project-goal-highlight" }, renderCardField(i18n.projectGoal + ":", `${pr.goal} ECO`)), + div({ class: "project-goal-highlight" }, renderCardField(i18n.projectFollowers + ":", String(followersCount(pr)))), renderProgressBlock(i18n.projectProgress + ":", `${pct}%`, pct, 100), - renderCardField(i18n.projectGoal + ":", `${pr.goal} ECO`), - renderCardField(i18n.projectPledged + ":", `${pr.pledged || 0} ECO`), renderProgressBlock(i18n.projectFunding + ":", `${fundingPct}%`, fundingPct, 100), - renderCardField(i18n.projectMilestones + ":", `${mileDone}/${mileTotal}`), - renderCardField(i18n.projectFollowers + ":", String(followersCount(pr))), - renderCardField(i18n.projectBackers + ":", `${backersCount(pr)} · ${backersTotal(pr)} ECO`), + pr.mapUrl ? div({ class: "project-maploc" }, + span({ class: "card-label" }, (i18n.mapLocationTitle || "Map Location") + ":"), + br(), br(), + a({ href: pr.mapUrl, class: "map-location-link" }, pr.mapUrl)) : null, isMineAuthor ? div( { class: "project-admin-block" }, @@ -578,7 +577,6 @@ const renderProjectList = (projects, filter) => { ) ) : null, - br(), div( { class: "card-comments-summary" }, span({ class: "card-label" }, i18n.voteCommentsLabel + ":"), @@ -618,15 +616,13 @@ const renderProjectForm = (project, mode) => { br(), input({ type: "text", name: "title", required: true, placeholder: i18n.projectTitlePlaceholder, value: pr.title || "" }), br(), - br(), label(i18n.projectDescription), br(), textarea({ name: "description", rows: "6", required: true, placeholder: i18n.projectDescriptionPlaceholder }, pr.description || ""), br(), - br(), label(i18n.projectImage), br(), - input({ type: "file", name: "image", accept: "image/*" }), + input({ type: "file", name: "image" }), br(), pr.image ? renderMediaBlob(pr.image) : null, br(), @@ -635,6 +631,11 @@ const renderProjectForm = (project, mode) => { input({ type: "number", step: "0.01", min: "0.01", name: "goal", required: true, placeholder: i18n.projectGoalPlaceholder, value: pr.goal || "" }), br(), br(), + label(i18n.mapLocationTitle || "Map Location"), + br(), + input({ type: "text", name: "mapUrl", placeholder: i18n.mapUrlPlaceholder || "/maps/MAP_ID", value: pr.mapUrl || "" }), + br(), + br(), label(i18n.projectDeadline), br(), input({ type: "datetime-local", name: "deadline", id: "deadline", required: true, min: nowLocal, value: deadlineValue }), @@ -645,12 +646,10 @@ const renderProjectForm = (project, mode) => { br(), input({ type: "text", name: "milestoneTitle", required: true, placeholder: i18n.projectMilestoneTitlePlaceholder }), br(), - br(), label(i18n.projectMilestoneDescription), br(), textarea({ name: "milestoneDescription", rows: "3", placeholder: i18n.projectMilestoneDescriptionPlaceholder }), br(), - br(), label(i18n.projectMilestoneTargetPercent), br(), input({ type: "number", name: "milestoneTargetPercent", min: "0", max: "100", step: "1", value: "0" }), @@ -696,7 +695,7 @@ exports.projectsView = async (projectsOrForm, filter) => { ) } -exports.singleProjectView = async (project, filter, comments) => { +exports.singleProjectView = async (project, filter, comments, params = {}) => { const pr = project || {} const f = String(filter || "ALL").toUpperCase() const isAuthor = pr.author === userId @@ -730,23 +729,18 @@ exports.singleProjectView = async (project, filter, comments) => { topbar ? topbar : null, !isAuthor && safeArr(pr.followers).includes(userId) ? p({ class: "hint" }, i18n.projectYouFollowHint) : null, h2(pr.title), - pr.image ? div({ class: "activity-image-preview" }, renderMediaBlob(pr.image)) : null, safeText(pr.description) ? renderCardFieldRich(i18n.projectDescription + ":", renderUrl(pr.description)) : null, + pr.image ? renderMediaBlob(pr.image) : null, + renderMapEmbedWithZoom(params.mapData, pr.mapUrl, `/projects/${encodeURIComponent(pr.id || pr.key)}`, params.zoom), + div({ class: "project-goal-highlight" }, renderCardField(i18n.projectGoal + ":", `${pr.goal} ECO`)), + renderBackers(pr, f), renderCardField(i18n.projectStatus + ":", i18n["projectStatus" + statusUpper] || statusUpper), + br(), renderProgressBlock(i18n.projectProgress + ":", `${pct}%`, pct, 100), - renderCardField(i18n.projectGoal + ":", `${pr.goal} ECO`), - renderCardField(i18n.projectPledged + ":", `${pr.pledged || 0} ECO`), renderProgressBlock(i18n.projectFunding + ":", `${fundingPct}%`, fundingPct, 100), - div( - { class: "social-stats" }, - renderCardField(i18n.projectFollowers + ":", String(followersCount(pr))), - renderCardField(i18n.projectBackers + ":", `${backersCount(pr)} · ${backersTotal(pr)} ECO`) - ), renderBudget(pr), renderMilestonesAndBounties(pr, f, isAuthor), renderFollowers(pr), - br(), - renderBackers(pr, f), renderPledgeBox(pr, f, isAuthor), div( { class: "card-footer" }, @@ -760,7 +754,8 @@ exports.singleProjectView = async (project, filter, comments) => { form( { method: "POST", action: `/projects/${encodeURIComponent(pr.id || pr.key)}/comments`, class: "comment-form", enctype: "multipart/form-data" }, textarea({ id: "comment-text", name: "text", rows: 4, class: "comment-textarea", placeholder: i18n.voteNewCommentPlaceholder }), - div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob", accept: "image/*,audio/*,video/*,application/pdf" })), + div({ class: "comment-file-upload" }, label(i18n.uploadMedia), br(), + input({ type: "file", name: "blob" })), br(), button({ type: "submit", class: "comment-submit-btn" }, i18n.voteNewCommentButton) ) @@ -781,7 +776,7 @@ exports.singleProjectView = async (project, filter, comments) => { ) }) ) - : null + : p({ class: "votations-no-comments" }, i18n.voteNoCommentsYet) ) ) } diff --git a/nodejs-project/nodejs-project/src/views/report_view.js b/nodejs-project/nodejs-project/src/views/report_view.js index 805419f7..0178bbe6 100644 --- a/nodejs-project/nodejs-project/src/views/report_view.js +++ b/nodejs-project/nodejs-project/src/views/report_view.js @@ -210,7 +210,7 @@ const renderReportCommentsSection = (reportId, comments = []) => { class: "comment-textarea", placeholder: i18n.voteNewCommentPlaceholder }), - div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob", accept: "image/*,audio/*,video/*,application/pdf" })), + div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob" })), br(), button({ type: "submit", class: "comment-submit-btn" }, i18n.voteNewCommentButton) ) @@ -509,7 +509,8 @@ exports.reportView = async (reports, filter, reportId, createCategory) => { opt("CONTENT", selectedCategory === "CONTENT", i18n.reportsCategoryContent) ), br(), - button({ type: "submit", class: "filter-btn" }, applyLabel) + br(), + button({ type: "submit", class: "create-button" }, applyLabel) ), br(), h2({ class: "report-category-fixed" }, selectedCategory), @@ -533,7 +534,7 @@ exports.reportView = async (reports, filter, reportId, createCategory) => { renderTemplateForCategory(selectedCategory, {}), label(i18n.reportsUploadFile), br(), - input({ type: "file", name: "image", accept: "image/*" }), + input({ type: "file", name: "image" }), br(), br(), label("Tags"), @@ -541,7 +542,7 @@ exports.reportView = async (reports, filter, reportId, createCategory) => { input({ type: "text", name: "tags", value: "" }), br(), br(), - button({ type: "submit" }, i18n.reportsCreateButton) + button({ type: "submit", class: "create-button" }, i18n.reportsCreateButton) ) ) : div( @@ -581,7 +582,7 @@ exports.reportView = async (reports, filter, reportId, createCategory) => { br(), label(i18n.reportsUploadFile), br(), - input({ type: "file", name: "image", accept: "image/*" }), + input({ type: "file", name: "image" }), br(), br(), label("Tags"), diff --git a/nodejs-project/nodejs-project/src/views/search_view.js b/nodejs-project/nodejs-project/src/views/search_view.js index 112a6140..1482239a 100644 --- a/nodejs-project/nodejs-project/src/views/search_view.js +++ b/nodejs-project/nodejs-project/src/views/search_view.js @@ -4,6 +4,8 @@ const moment = require("../server/node_modules/moment"); const { renderTextWithStyles } = require('../backend/renderTextWithStyles'); const { renderUrl } = require('../backend/renderUrl'); const { sanitizeHtml } = require('../backend/sanitizeHtml'); +const { config } = require("../server/SSB_server.js"); +const userId = config.keys.id; const decodeMaybe = (s) => { try { return decodeURIComponent(String(s || '')); } catch { return String(s || ''); } @@ -30,8 +32,8 @@ const searchView = ({ messages = [], blobs = {}, query = "", type = "", types = const contentTypes = [ "post", "about", "curriculum", "tribe", "market", "transfer", "feed", "votes", - "report", "task", "event", "bookmark", "image", "audio", "video", "document", - "bankWallet", "bankClaim", "project", "job", "forum", "vote", "contact", "pub", "all" + "report", "task", "event", "bookmark", "image", "audio", "video", "document", "torrent", + "bankWallet", "bankClaim", "project", "job", "forum", "vote", "contact", "pub", "map", "shop", "shopProduct", "chat", "pad", "all" ]; const filterSelect = select( @@ -67,7 +69,8 @@ const searchView = ({ messages = [], blobs = {}, query = "", type = "", types = case 'votes': return `/votes/${encodeURIComponent(contentId)}`; case 'transfer': return `/transfers/${encodeURIComponent(contentId)}`; case 'tribe': return `/tribe/${encodeURIComponent(contentId)}`; - case 'curriculum': return `/inhabitant/${encodeURIComponent(contentId)}`; + case 'about': return content && (content.about || content.author) ? `/inhabitant/${encodeURIComponent(content.about || content.author)}` : '#'; + case 'curriculum': return content && content.author ? `/inhabitant/${encodeURIComponent(content.author)}` : '#'; case 'image': return `/images/${encodeURIComponent(contentId)}`; case 'audio': return `/audios/${encodeURIComponent(contentId)}`; case 'video': return `/videos/${encodeURIComponent(contentId)}`; @@ -86,12 +89,27 @@ const searchView = ({ messages = [], blobs = {}, query = "", type = "", types = case 'pub': return '#'; case 'bankWallet': return `/banking`; case 'bankClaim': return `/banking`; + case 'map': return `/maps/${encodeURIComponent(contentId)}`; + case 'shop': return `/shops/${encodeURIComponent(contentId)}`; + case 'shopProduct': return `/shops/product/${encodeURIComponent(contentId)}`; + case 'chat': return `/chats/${encodeURIComponent(contentId)}`; + case 'pad': return `/pads/${encodeURIComponent(contentId)}`; + case 'torrent': return `/torrents/${encodeURIComponent(contentId)}`; + case 'gameScore': return content && content.game ? `/games/${encodeURIComponent(content.game)}` : '/games'; default: return '#'; } }; let hasDocument = false; + const blobImg = (value) => { + if (!value) return null; + const s = String(value).trim().replace(/&/g, '&'); + const m = s.match(/!\[[^\]]*\]\(\s*(&[^)\s]+\.sha256)\s*\)/); + const src = m ? m[1] : s; + return src.startsWith('&') ? img({ src: `/blob/${encodeURIComponent(src)}`, class: 'search-result-image' }) : null; + }; + const renderContentHtml = (content) => { switch (content.type) { case 'post': @@ -119,10 +137,14 @@ const searchView = ({ messages = [], blobs = {}, query = "", type = "", types = : null ); } - case 'event': + case 'event': { + const rawEvDesc = content.description || ''; + const blobInEvDesc = rawEvDesc.match(/!\[[^\]]*\]\((&[^)\s]+\.sha256)\)/)?.[1] || null; + const cleanEvDesc = rawEvDesc.replace(/!\[[^\]]*\]\(&[^)]+\.sha256\)/g, '').trim(); return div({ class: 'search-event' }, content.title ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.eventTitleLabel + ':'), span({ class: 'card-value' }, content.title)) : null, - content.description ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.searchDescription + ':'), span({ class: 'card-value' }, content.description)) : null, + cleanEvDesc ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.searchDescription + ':'), span({ class: 'card-value' }, cleanEvDesc)) : null, + blobImg(content.image || blobInEvDesc), content.date ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.eventDate + ':'), span({ class: 'card-value' }, new Date(content.date).toLocaleString())) : null, content.location ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.eventLocation + ':'), span({ class: 'card-value' }, content.location)) : null, content.isPublic ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.eventPrivacyLabel + ':'), span({ class: 'card-value' }, content.isPublic)) : null, @@ -135,6 +157,7 @@ const searchView = ({ messages = [], blobs = {}, query = "", type = "", types = )) : null ); + } case 'votes': const votesList = content.votes && typeof content.votes === 'object' ? Object.entries(content.votes).map(([option, count]) => ({ option, count })) @@ -168,7 +191,7 @@ const searchView = ({ messages = [], blobs = {}, query = "", type = "", types = case 'tribe': return div({ class: 'search-tribe' }, content.title ? h2(content.title) : null, - content.image ? img({ src: `/blob/${encodeURIComponent(content.image)}`, class: 'feed-image' }) : img({ src: '/assets/images/default-tribe.png', class: 'feed-image' }), + (() => { const s = String(content.image || '').trim().replace(/&/g, '&'); const m = s.match(/!\[[^\]]*\]\(\s*(&[^)\s]+\.sha256)\s*\)/); const src = m ? m[1] : s; return src.startsWith('&') ? img({ src: `/blob/${encodeURIComponent(src)}`, class: 'feed-image' }) : img({ src: '/assets/images/default-tribe.png', class: 'feed-image' }); })(), br(), content.description ? content.description : null, br(),br(), @@ -249,6 +272,16 @@ const searchView = ({ messages = [], blobs = {}, query = "", type = "", types = )) : null ); + case 'torrent': + return div({ class: 'search-torrent' }, + content.title ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.torrentTitleLabel || 'Title') + ':'), span({ class: 'card-value' }, content.title)) : null, + content.description ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.torrentDescriptionLabel || 'Description') + ':'), span({ class: 'card-value' }, content.description)) : null, + content.tags && content.tags.length + ? div({ class: 'card-tags' }, content.tags.map(tag => + a({ href: `/search?query=%23${encodeURIComponent(tag)}`, class: 'tag-link' }, `#${tag}`) + )) + : null + ); case 'market': return div({ class: 'search-market' }, content.title ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.title + ':'), span({ class: 'card-value' }, content.title)) : null, @@ -257,7 +290,7 @@ const searchView = ({ messages = [], blobs = {}, query = "", type = "", types = content.status ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.marketItemCondition + ':'), span({ class: 'card-value' }, content.status)) : null, content.deadline ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.marketItemDeadline + ':'), span({ class: 'card-value' }, new Date(content.deadline).toLocaleString())) : null, br(), - content.image ? img({ src: `/blob/${encodeURIComponent(content.image)}`, class: 'market-image' }) : null, + blobImg(content.image), br(), content.seller ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.marketItemSeller + ':'), span({ class: 'card-value' }, a({ class: "user-link", href: `/author/${encodeURIComponent(content.seller)}` }, content.seller))) : null, content.stock ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.marketItemStock + ':'), span({ class: 'card-value' }, content.stock || 'N/A')) : null, @@ -439,6 +472,83 @@ const searchView = ({ messages = [], blobs = {}, query = "", type = "", types = return div({ class: 'search-pub' }, content.address && content.address.key ? p(a({ href: `/author/${encodeURIComponent(content.address.key)}`, class: 'activitySpreadInhabitant2' }, content.address.key)) : null ); + case 'shop': + return div({ class: 'search-shop' }, + content.title ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.title + ':'), span({ class: 'card-value' }, content.title)) : null, + blobImg(content.image), + content.shortDescription ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.searchDescription + ':'), span({ class: 'card-value' }, content.shortDescription)) : null, + content.visibility ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.shopStatus || 'STATUS') + ':'), span({ class: 'card-value' }, content.visibility)) : null, + content.location ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.searchLocationLabel || 'LOCATION') + ':'), span({ class: 'card-value' }, content.location)) : null, + content.tags && content.tags.length + ? div({ class: 'card-tags' }, content.tags.map(tag => a({ href: `/search?query=%23${encodeURIComponent(tag)}`, class: 'tag-link' }, `#${tag}`))) + : null + ); + case 'shopProduct': + return div({ class: 'search-shop-product' }, + content.title ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.title + ':'), span({ class: 'card-value' }, content.title)) : null, + blobImg(content.image), + content.description ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.searchDescription + ':'), span({ class: 'card-value' }, content.description)) : null, + content.price ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.searchPriceLabel || 'PRICE') + ':'), span({ class: 'card-value' }, `${content.price} ECO`)) : null, + content.stock !== undefined ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.marketItemStock + ':'), span({ class: 'card-value' }, content.stock)) : null + ); + case 'chat': { + const chatInviteOnly = content.status === 'INVITE-ONLY' && content.author !== userId && !(Array.isArray(content.members) && content.members.includes(userId)); + if (chatInviteOnly) return div({ class: 'search-chat' }, + content.title ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.chatsTitle || 'Chat') + ':'), span({ class: 'card-value' }, content.title)) : null, + div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.chatStatus || 'STATUS') + ':'), span({ class: 'card-value' }, i18n.chatStatusInviteOnly || 'INVITE-ONLY')) + ); + return div({ class: 'search-chat' }, + content.title ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.chatsTitle || 'Chat') + ':'), span({ class: 'card-value' }, content.title)) : null, + content.description ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.chatDescription || 'Description') + ':'), span({ class: 'card-value' }, content.description)) : null, + content.category ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.chatCategoryLabel || 'Category') + ':'), span({ class: 'card-value' }, content.category)) : null, + content.status ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.chatStatus || 'STATUS') + ':'), span({ class: 'card-value' }, content.status)) : null + ); + } + case 'pad': { + const padInviteOnly = content.status === 'INVITE-ONLY' && content.author !== userId && !(Array.isArray(content.members) && content.members.includes(userId)); + if (padInviteOnly) return div({ class: 'search-pad' }, + content.title ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.padTitle || 'Pad') + ':'), span({ class: 'card-value' }, content.title)) : null, + div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.padStatusLabel || 'Status') + ':'), span({ class: 'card-value' }, i18n.padStatusInviteOnly || 'INVITE-ONLY')) + ); + return div({ class: 'search-pad' }, + content.title ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.padTitle || 'Pad') + ':'), span({ class: 'card-value' }, content.title)) : null, + content.status ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.padStatusLabel || 'Status') + ':'), span({ class: 'card-value' }, content.status)) : null, + content.deadline ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.padDeadlineLabel || 'Deadline') + ':'), span({ class: 'card-value' }, content.deadline)) : null + ); + } + case 'gameScore': + return div({ class: 'search-game' }, + content.game ? div({ class: 'game-row' }, + img({ src: `/game-assets/${content.game}/thumbnail.svg`, alt: content.game, class: 'game-scoring-thumb', loading: 'lazy' }), + div({ class: 'game-row-body' }, + h2({ class: 'game-card-title' }, content.game.charAt(0).toUpperCase() + content.game.slice(1)), + content.score !== undefined ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.gamesHallScore || 'Score') + ':'), span({ class: 'card-value' }, String(content.score))) : null, + a({ href: `/games/${encodeURIComponent(content.game)}`, class: 'filter-btn' }, i18n.gamesPlayButton || 'PLAY!') + ) + ) : null + ); + case 'torrent': + return div({ class: 'search-torrent' }, + content.title ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.torrentTitleLabel || 'Title') + ':'), span({ class: 'card-value' }, content.title)) : null, + content.size ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.torrentSizeLabel || 'Size') + ':'), span({ class: 'card-value' }, String(content.size))) : null, + content.tags && content.tags.length + ? div({ class: 'card-tags' }, content.tags.map(tag => + a({ href: `/search?query=%23${encodeURIComponent(tag)}`, class: 'tag-link' }, `#${tag}`) + )) + : null + ); + case 'map': + return div({ class: 'search-map' }, + content.title ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.title + ':'), span({ class: 'card-value' }, content.title)) : null, + content.description ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.mapDescriptionLabel + ':'), span({ class: 'card-value' }, content.description)) : null, + content.lat && content.lng ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.mapLocationTitle + ':'), span({ class: 'card-value' }, `${content.lat}, ${content.lng}`)) : null, + content.mapType ? div({ class: 'card-field' }, span({ class: 'card-label' }, i18n.mapTypeLabel + ':'), span({ class: 'card-value' }, content.mapType)) : null, + content.tags && content.tags.length + ? div({ class: 'card-tags' }, content.tags.map(tag => + a({ href: `/search?query=%23${encodeURIComponent(tag)}`, class: 'tag-link' }, `#${tag}`) + )) + : null + ); default: return div({ class: 'styled-text', innerHTML: sanitizeHtml(renderTextWithStyles(content.text || content.description || content.title || '[no content]')) }); } @@ -448,7 +558,7 @@ const searchView = ({ messages = [], blobs = {}, query = "", type = "", types = ? Object.entries(results).map(([key, msgs]) => div( { class: "search-result-group" }, - h2(i18n[key + "Label"] || key), + h2(i18n[key + "Label"] || key.toUpperCase()), ...msgs.map((msg) => { const content = msg.value.content || {}; const created = new Date(msg.timestamp).toLocaleString(); @@ -474,6 +584,9 @@ const searchView = ({ messages = [], blobs = {}, query = "", type = "", types = } else if (content.type === 'votes') { author = content.createdBy || i18n.anonymous || "Anonymous"; authorUrl = `/author/${encodeURIComponent(content.createdBy || 'Anonymous')}`; + } else if (content.type === 'shop' || content.type === 'shopProduct' || content.type === 'chat' || content.type === 'gameScore') { + author = content.author || content.player || msg.value.author || i18n.anonymous || "Anonymous"; + authorUrl = `/author/${encodeURIComponent(content.author || content.player || msg.value.author || 'Anonymous')}`; } else { author = content.author; authorUrl = `/author/${encodeURIComponent(content.author || 'Anonymous')}`; diff --git a/nodejs-project/nodejs-project/src/views/settings_view.js b/nodejs-project/nodejs-project/src/views/settings_view.js index 8e1babe0..4ca13b34 100644 --- a/nodejs-project/nodejs-project/src/views/settings_view.js +++ b/nodejs-project/nodejs-project/src/views/settings_view.js @@ -25,9 +25,9 @@ const settingsView = ({ version, aiPrompt }) => { const walletUrl = currentConfig.wallet.url; const walletUser = currentConfig.wallet.user; const walletFee = currentConfig.wallet.fee; - const pubWalletUrl = currentConfig.walletPub.url || ''; - const pubWalletUser = currentConfig.walletPub.user || ''; - const pubWalletPass = currentConfig.walletPub.pass || ''; + const pubId = currentConfig.walletPub?.pubId || ''; + const currentWish = currentConfig.wish === 'mutuals' ? 'mutuals' : 'whole'; + const currentPmVisibility = currentConfig.pmVisibility === 'mutuals' ? 'mutuals' : 'whole'; const themeElements = [ option({ value: "Dark-SNH", selected: theme === "Dark-SNH" ? true : undefined }, "Dark-SNH"), @@ -92,7 +92,11 @@ const settingsView = ({ version, aiPrompt }) => { languageOption("Euskara", "eu"), languageOption("Deutsch", "de"), languageOption("Italiano", "it"), - languageOption("Português", "pt") + languageOption("Português", "pt"), + languageOption("中文", "zh"), + languageOption("العربية", "ar"), + languageOption("हिन्दी", "hi"), + languageOption("Русский", "ru") ]), br(), br(), @@ -143,6 +147,34 @@ const settingsView = ({ version, aiPrompt }) => { ) ) ), + section( + div({ class: "tags-header" }, + h2(i18n.settingsWishTitle), + p(i18n.settingsWishDesc), + form( + { action: "/settings/wish", method: "POST" }, + select({ name: "wish" }, + option({ value: "whole", selected: currentWish === "whole" ? true : undefined }, i18n.settingsWishWhole), + option({ value: "mutuals", selected: currentWish === "mutuals" ? true : undefined }, i18n.settingsWishMutuals) + ), br(), br(), + button({ type: "submit" }, i18n.saveSettings) + ) + ) + ), + section( + div({ class: "tags-header" }, + h2(i18n.settingsPmVisibilityTitle), + p(i18n.settingsPmVisibilityDesc), + form( + { action: "/settings/pm-visibility", method: "POST" }, + select({ name: "pmVisibility" }, + option({ value: "whole", selected: currentPmVisibility === "whole" ? true : undefined }, i18n.settingsPmVisibilityWhole), + option({ value: "mutuals", selected: currentPmVisibility === "mutuals" ? true : undefined }, i18n.settingsPmVisibilityMutuals) + ), br(), br(), + button({ type: "submit" }, i18n.saveSettings) + ) + ) + ), section( div({ class: "tags-header" }, h2(i18n.wallet), @@ -166,33 +198,18 @@ const settingsView = ({ version, aiPrompt }) => { ), section( div({ class: "tags-header" }, - h2(i18n.pubWallet), - p(i18n.pubWalletDescription), + h2(i18n.pubIdTitle || "PUB Wallet"), + p(i18n.pubIdDescription || "Set the PUB OASIS ID. This will be used for PUB transactions (including the UBI)."), form( - { action: "/settings/pub-wallet", method: "POST" }, - label({ for: "pub_wallet_url" }, i18n.walletAddress), br(), + { action: "/settings/pub-id", method: "POST" }, input({ type: "text", - id: "pub_wallet_url", - name: "wallet_url", - placeholder: pubWalletUrl, - value: pubWalletUrl + id: "pub_id", + name: "pub_id", + value: pubId, + placeholder: i18n.pubIdPlaceholder || "@example.ed25519" }), br(), - label({ for: "pub_wallet_user" }, i18n.walletUser), br(), - input({ - type: "text", - id: "pub_wallet_user", - name: "wallet_user", - placeholder: pubWalletUser, - value: pubWalletUser - }), br(), - label({ for: "pub_wallet_pass" }, i18n.walletPass), br(), - input({ - type: "password", - id: "pub_wallet_pass", - name: "wallet_pass" - }), br(), - button({ type: "submit" }, i18n.pubWalletConfiguration) + button({ type: "submit" }, i18n.pubIdSave || "Save configuration") ) ) ), diff --git a/nodejs-project/nodejs-project/src/views/shops_view.js b/nodejs-project/nodejs-project/src/views/shops_view.js new file mode 100644 index 00000000..553e2281 --- /dev/null +++ b/nodejs-project/nodejs-project/src/views/shops_view.js @@ -0,0 +1,488 @@ +const { div, h2, p, section, button, form, a, span, textarea, br, input, label, select, option, img, progress, video, table, tr, td } = require("../server/node_modules/hyperaxe") +const { template, i18n } = require("./main_views") +const moment = require("../server/node_modules/moment") +const { config } = require("../server/SSB_server.js") +const { renderUrl } = require("../backend/renderUrl") +const { renderMapLocationUrl, renderMapEmbed, renderMapLocationVisitLabel } = require("./maps_view") +const opinionCategories = require("../backend/opinion_categories") + +const userId = config.keys.id +const safeArr = (v) => (Array.isArray(v) ? v : []) +const safeText = (v) => String(v || "").trim() +const voteSum = (opinions = {}) => Object.values(opinions || {}).reduce((s, n) => s + (Number(n) || 0), 0) +const renderStarRating = (opinions, voterCount) => { + const total = voteSum(opinions) + const avg = voterCount > 0 ? Math.min(5, Math.round((total / voterCount) * 5) / 5) : 0 + const full = Math.floor(avg) + const stars = "\u2605".repeat(full) + "\u2606".repeat(5 - full) + return span({ class: "shop-product-stars" }, `${stars} (${voterCount})`) +} + +const renderMediaBlob = (value, fallbackSrc = null, attrs = {}) => { + if (!value) return fallbackSrc ? img({ src: fallbackSrc, ...attrs }) : null + const s = String(value).trim() + if (!s) return fallbackSrc ? img({ src: fallbackSrc, ...attrs }) : null + if (s.startsWith('&')) return img({ src: `/blob/${encodeURIComponent(s)}`, ...attrs }) + const mVideo = s.match(/\[video:[^\]]*\]\(\s*(&[^)\s]+\.sha256)\s*\)/) + if (mVideo) return video({ controls: true, class: attrs.class || 'post-video', src: `/blob/${encodeURIComponent(mVideo[1])}` }) + const mImg = s.match(/!\[[^\]]*\]\(\s*(&[^)\s]+\.sha256)\s*\)/) + if (mImg) return img({ src: `/blob/${encodeURIComponent(mImg[1])}`, ...attrs }) + return fallbackSrc ? img({ src: fallbackSrc, ...attrs }) : null +} + +const buildReturnTo = (filter, params = {}) => { + const f = safeText(filter || "all") + const q = safeText(params.q || "") + const sort = safeText(params.sort || "recent") + const parts = [`filter=${encodeURIComponent(f)}`] + if (q) parts.push(`q=${encodeURIComponent(q)}`) + if (sort) parts.push(`sort=${encodeURIComponent(sort)}`) + return `/shops?${parts.join("&")}` +} + +const renderModeButtons = (currentFilter) => + div({ class: "tribe-mode-buttons" }, + ["all", "recent", "mine", "top", "products", "prices", "favorites"].map(f => + form({ method: "GET", action: "/shops" }, + input({ type: "hidden", name: "filter", value: f }), + button({ type: "submit", class: currentFilter === f ? "filter-btn active" : "filter-btn" }, i18n[`shopFilter${f.charAt(0).toUpperCase() + f.slice(1)}`] || f.toUpperCase()) + ) + ), + form({ method: "GET", action: "/shops" }, + input({ type: "hidden", name: "filter", value: "create" }), + button({ type: "submit", class: "create-button" }, i18n.shopUpload) + ) + ) + +const renderFavoriteToggle = (shop, returnTo) => + form( + { method: "POST", action: shop.isFavorite ? `/shops/favorites/remove/${encodeURIComponent(shop.key)}` : `/shops/favorites/add/${encodeURIComponent(shop.key)}` }, + returnTo ? input({ type: "hidden", name: "returnTo", value: returnTo }) : null, + button({ type: "submit", class: "filter-btn" }, shop.isFavorite ? i18n.shopRemoveFavorite : i18n.shopAddFavorite) + ) + +const renderShopCard = (shop, filter, params = {}) => { + const returnTo = buildReturnTo(filter, params) + const isAuthor = String(shop.author) === String(userId) + + return div({ class: "tribe-card" }, + div({ class: "tribe-card-image-wrapper" }, + a({ href: `/shops/${encodeURIComponent(shop.key)}` }, + renderMediaBlob(shop.image, '/assets/images/default-avatar.png', { class: 'tribe-card-hero-image' }) + ), + form({ method: 'GET', action: `/shops/${encodeURIComponent(shop.key)}`, class: 'tribe-visit-btn-wrapper' }, + button({ type: 'submit', class: 'filter-btn' }, String(i18n.shopVisitShop || 'VISIT SHOP').toUpperCase()) + ) + ), + div({ class: "tribe-card-body" }, + h2({ class: "tribe-card-title" }, a({ href: `/shops/${encodeURIComponent(shop.key)}` }, shop.title || i18n.shopUntitled)), + shop.shortDescription ? p({ class: "tribe-card-description" }, shop.shortDescription) : null, + renderMapLocationVisitLabel(shop.mapUrl), + br(), + table({ class: "tribe-info-table" }, + tr( + td({ class: "tribe-info-label" }, i18n.shopStatus || "STATUS"), + td({ class: "tribe-info-value", colspan: "3" }, shop.visibility === "CLOSED" ? i18n.shopClosed : i18n.shopOpen) + ), + shop.location ? tr( + td({ class: "tribe-info-label" }, i18n.shopLocation), + td({ class: "tribe-info-value", colspan: "3" }, ...renderUrl(shop.location)) + ) : null + ), + div({ class: "tribe-card-members" }, + span({ class: "tribe-members-count" }, `${i18n.shopProducts}: ${shop.productCount || 0}`) + ), + safeArr(shop.featuredProducts).length + ? div({ class: "shop-featured-products" }, + safeArr(shop.featuredProducts).slice(0, 4).map(prod => + a({ href: `/shops/product/${encodeURIComponent(prod.key)}?shopId=${encodeURIComponent(prod.shopId)}`, class: "shop-featured-item" }, + prod.image ? renderMediaBlob(prod.image, null, { class: "shop-featured-thumb" }) : null, + span({ class: "shop-featured-price" }, `${Number(prod.price || 0).toFixed(6)} ECO`) + ) + ) + ) + : null + ) + ) +} + +const renderProductCard = (product, shopId, returnTo) => { + const isAuthor = String(product.author) === String(userId) + const stock = Number(product.stock) || 0 + const voterCount = safeArr(product.opinions_inhabitants).length + const productUrl = `/shops/product/${encodeURIComponent(product.key)}?shopId=${encodeURIComponent(shopId)}` + + return div({ class: "shop-product-card" }, + product.image ? div({ class: "shop-product-media" }, a({ href: productUrl }, renderMediaBlob(product.image))) : null, + div({ class: "shop-product-body" }, + product.shopTitle ? p(a({ href: `/shops/${encodeURIComponent(shopId)}`, class: "user-link" }, product.shopTitle)) : null, + h2(a({ href: productUrl }, product.title || i18n.shopProductUntitled)), + renderStarRating(product.opinions, voterCount), + product.description ? p(...renderUrl(product.description)) : null, + div({ class: "shop-product-price" }, `${Number(product.price || 0).toFixed(6)} ECO`), + div({ class: "confirmations-block stock-block" }, + div({ class: "card-field" }, + span({ class: "card-label" }, `${i18n.shopProductStock}: `), + span({ class: "card-value" }, stock > 0 ? String(stock) : i18n.shopOutOfStock) + ), + progress({ class: "confirmations-progress stock-progress", value: Math.min(stock, 100), max: 100 }) + ), + (() => { + const actions = []; + if (!isAuthor && stock > 0) { + actions.push(form({ method: "POST", action: `/shops/product/buy/${encodeURIComponent(product.key)}` }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + button({ type: "submit", class: "buy-btn" }, i18n.marketActionsBuy || i18n.shopBuy))); + } + actions.push(form({ method: "POST", action: product.isFavorite ? `/shops/favorites/remove/${encodeURIComponent(product.key)}` : `/shops/favorites/add/${encodeURIComponent(product.key)}` }, + returnTo ? input({ type: "hidden", name: "returnTo", value: returnTo }) : null, + button({ type: "submit", class: "filter-btn" }, product.isFavorite ? i18n.shopRemoveFavorite : i18n.shopAddFavorite))); + return actions.length ? div({ class: "shop-product-actions" }, ...actions) : null; + })() + ) + ) +} + +const renderCommentsSection = (parentId, returnTo, comments = []) => { + const count = Array.isArray(comments) ? comments.length : 0 + return div({ class: "vote-comments-section market-comments" }, + div({ class: "comments-count" }, span({ class: "card-label" }, i18n.voteCommentsLabel + ": "), span({ class: "card-value" }, String(count))), + div({ class: "comment-form-wrapper" }, + h2({ class: "comment-form-title" }, i18n.voteNewCommentLabel), + form({ method: "POST", action: `/shops/${encodeURIComponent(parentId)}/comments`, class: "comment-form", enctype: "multipart/form-data" }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + textarea({ name: "text", rows: 4, class: "comment-textarea", placeholder: i18n.voteNewCommentPlaceholder }), + div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob" })), + br(), + button({ type: "submit", class: "comment-submit-btn" }, i18n.voteNewCommentButton) + ) + ), + count + ? div({ class: "comments-list" }, + comments.map(c => { + const author = c.value?.author || "" + const ts = c.value?.timestamp || c.timestamp + const text = c.value?.content?.text || "" + const rootId = c.value?.content?.fork || c.value?.content?.root || null + return div({ class: "votations-comment-card" }, + span({ class: "created-at" }, + span(i18n.createdBy), + author ? a({ href: `/author/${encodeURIComponent(author)}` }, `@${author.split("@")[1] || author}`) : span("(unknown)"), + ts ? span(" | ", span({ class: "votations-comment-date" }, moment(ts).format("YYYY/MM/DD HH:mm:ss"))) : "", + ts && rootId ? span(" | ", a({ href: `/thread/${encodeURIComponent(rootId)}#${encodeURIComponent(c.key)}` }, moment(ts).fromNow())) : "" + ), + p({ class: "votations-comment-text" }, ...renderUrl(text)) + ) + }) + ) + : p({ class: "votations-no-comments" }, i18n.voteNoCommentsYet) + ) +} + +const renderShopForm = (filter, shop = {}, params = {}) => { + const isEdit = filter === "edit" + const returnTo = safeText(params.returnTo) || buildReturnTo("all") + return div({ class: "create-tribe-form" }, + h2(isEdit ? i18n.shopUpdateSectionTitle : i18n.shopCreateSectionTitle), + form({ action: isEdit ? `/shops/update/${encodeURIComponent(shop.key || "")}` : "/shops/create", method: "POST", enctype: "multipart/form-data" }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + label(i18n.title || "Title"), br, + input({ type: "text", name: "title", required: true, placeholder: i18n.shopTitlePlaceholder || "Name of your shop", value: shop.title || "" }), br(), + label(i18n.shopShortDescription), br, + input({ type: "text", name: "shortDescription", required: true, maxlength: 160, placeholder: i18n.shopShortDescriptionPlaceholder || "Brief description of your shop", value: shop.shortDescription || "" }), br(), + label(i18n.description || "Description"), br, + textarea({ name: "description", rows: 4, placeholder: i18n.shopDescriptionPlaceholder || "Detailed description of your shop" }, shop.description || ""), br, + label(i18n.blogImage || "Upload media (max-size: 50MB)"), br, + input({ type: "file", name: "image", accept: "image/*,video/*" }), br(), br(), + label(i18n.shopUrl), br, + input({ type: "text", name: "url", placeholder: i18n.shopUrlPlaceholder || "https://your-shop-url.com", value: shop.url || "" }), br, + label(i18n.shopLocation), br, + input({ type: "text", name: "location", placeholder: i18n.shopLocationPlaceholder || "City, Country", value: shop.location || "" }), br, + label(i18n.mapLocationTitle || "Map Location"), br, + input({ type: "text", name: "mapUrl", placeholder: i18n.mapUrlPlaceholder || "/maps/MAP_ID", value: shop.mapUrl || "" }), br, + label(i18n.shopTags), br, + input({ type: "text", name: "tags", placeholder: i18n.shopTagsPlaceholder || "tag1, tag2, tag3", value: safeArr(shop.tags).join(", ") }), br, + label(i18n.shopVisibility), br, + select({ name: "visibility" }, + option({ value: "OPEN", selected: (shop.visibility || "OPEN") === "OPEN" }, i18n.shopOpen), + option({ value: "CLOSED", selected: shop.visibility === "CLOSED" }, i18n.shopClosed) + ), br(), br(), + button({ type: "submit" }, isEdit ? i18n.shopUpdate : i18n.shopCreate) + ) + ) +} + +const renderProductForm = (shopId, product = {}, isEdit = false, returnTo = "") => { + return div({ class: "create-tribe-form" }, + h2(isEdit ? i18n.shopProductUpdate : i18n.shopProductAdd), + form({ action: isEdit ? `/shops/product/update/${encodeURIComponent(product.key || "")}` : "/shops/product/create", method: "POST", enctype: "multipart/form-data" }, + input({ type: "hidden", name: "shopId", value: shopId }), + input({ type: "hidden", name: "returnTo", value: returnTo }), + label(i18n.title || "Title"), br, + input({ type: "text", name: "title", required: true, value: product.title || "" }), br(), + label(i18n.description || "Description"), br, + textarea({ name: "description", rows: 4 }, product.description || ""), br, + label(i18n.shopProductPrice), br, + input({ type: "number", name: "price", step: "0.000001", min: "0.000001", required: true, value: product.price || "" }), br(), br(), + label(i18n.shopProductStock), br, + input({ type: "number", name: "stock", min: "0", value: product.stock !== undefined ? product.stock : 1 }), br(), br(), + label(i18n.blogImage || "Upload media (max-size: 50MB)"), br, + input({ type: "file", name: "image", accept: "image/*,video/*" }), br(), br(), + input({ type: "hidden", name: "featured", value: "0" }), + label(i18n.shopProductFeatured), + input({ id: "featured", type: "checkbox", name: "featured", value: "1", class: "meme-checkbox", ...(product.featured ? { checked: true } : {}) }), + br(), + br(), + ...(isEdit ? [] : [ + input({ type: "hidden", name: "sendToMarket", value: "0" }), + label(i18n.shopSendToMarket), + input({ id: "sendToMarket", type: "checkbox", name: "sendToMarket", value: "1", class: "meme-checkbox" }), + br(), + br(), + ]), + button({ type: "submit" }, isEdit ? i18n.shopUpdate : i18n.shopProductAdd) + ) + ) +} + +exports.shopsView = async (shops, filter, shopToEdit = null, params = {}) => { + const q = safeText(params.q || "") + const sort = safeText(params.sort || "recent") + const list = safeArr(shops) + + const title = + filter === "mine" ? i18n.shopMineSectionTitle : + filter === "recent" ? i18n.shopRecentSectionTitle : + filter === "top" ? i18n.shopTopSectionTitle : + filter === "products" ? i18n.shopProductsSectionTitle : + filter === "prices" ? (i18n.shopPricesSectionTitle || "Products by Price") : + filter === "favorites" ? i18n.shopFavoritesSectionTitle : + filter === "create" ? i18n.shopCreateSectionTitle : + filter === "edit" ? i18n.shopUpdateSectionTitle : + i18n.shopAllSectionTitle + + const isForm = filter === "create" || filter === "edit" + + const header = div({ class: "tags-header" }, h2(title), p(i18n.shopDescription)) + + const searchBar = div({ class: "filters" }, + form({ method: "GET", action: "/shops" }, + input({ type: "hidden", name: "filter", value: filter }), + input({ type: "text", name: "q", placeholder: i18n.shopSearchPlaceholder, value: q }), + br(), + button({ type: "submit" }, i18n.search), + br() + ) + ) + + const sortedProducts = filter === "products" + ? [...list].sort((a, b) => safeArr(b.opinions_inhabitants).length - safeArr(a.opinions_inhabitants).length) + : filter === "prices" + ? [...list].sort((a, b) => Number(b.price || 0) - Number(a.price || 0)) + : list + + return template( + title, + section(header), + section(renderModeButtons(filter)), + !isForm ? section(searchBar) : null, + section( + isForm + ? renderShopForm(filter, filter === "edit" ? (shopToEdit || {}) : {}, params) + : filter === "products" || filter === "prices" + ? div({ class: "shop-products-grid" }, + sortedProducts.length + ? sortedProducts.map(prod => renderProductCard(prod, prod.shopId, buildReturnTo(filter, params))) + : p(i18n.shopNoItems) + ) + : div({ class: "tribe-grid" }, + list.length + ? list.map(shop => renderShopCard(shop, filter, { q, sort })) + : p(i18n.shopNoItems) + ) + ) + ) +} + +exports.singleShopView = async (shop, filter, products = [], comments = [], params = {}) => { + const q = safeText(params.q || "") + const sort = safeText(params.sort || "recent") + const returnTo = safeText(params.returnTo) || buildReturnTo(filter, { q, sort }) + const isAuthor = String(shop.author) === String(userId) + const fullShareUrl = `/shops/${encodeURIComponent(shop.key)}` + + const shopSide = div({ class: "tribe-side" }, + h2(shop.title || i18n.shopUntitled), + renderMediaBlob(shop.image, '/assets/images/default-avatar.png', { class: 'tribe-detail-image' }), + div({ class: "shop-share" }, + span({ class: "tribe-info-label" }, `${i18n.shopShareUrl}: `), + input({ type: "text", value: fullShareUrl, readonly: true, class: "shop-share-input" }) + ), + div({ class: "tribe-card-members" }, + span({ class: "tribe-members-count" }, `${i18n.shopProducts}: ${shop.productCount || 0}`) + ), + table({ class: "tribe-info-table" }, + tr( + td({ class: "tribe-info-label" }, i18n.shopCreatedAt || "CREATED"), + td({ class: "tribe-info-value", colspan: "3" }, new Date(shop.createdAt).toLocaleString()) + ), + tr( + td({ class: "tribe-info-value", colspan: "4" }, a({ class: "user-link", href: `/author/${encodeURIComponent(shop.author)}` }, shop.author)) + ), + shop.location ? tr( + td({ class: "tribe-info-label" }, i18n.shopLocation), + td({ class: "tribe-info-value", colspan: "3" }, ...renderUrl(shop.location)) + ) : null, + tr( + td({ class: "tribe-info-label" }, i18n.shopStatus || "STATUS"), + td({ class: "tribe-info-value", colspan: "3" }, shop.visibility === "CLOSED" ? i18n.shopClosed : i18n.shopOpen) + ), + shop.url ? tr( + td({ class: "tribe-info-label" }, i18n.shopUrl), + td({ class: "tribe-info-value", colspan: "3" }, ...renderUrl(shop.url)) + ) : null + ), + shop.description ? p({ class: "tribe-side-description" }, ...renderUrl(shop.description)) : null, + renderMapEmbed(params.mapData, shop.mapUrl), + div({ class: "tribe-side-actions" }, + renderFavoriteToggle(shop, returnTo), + shop.author && String(shop.author) !== String(userId) + ? form({ method: "GET", action: "/pm" }, input({ type: "hidden", name: "recipients", value: shop.author }), button({ type: "submit", class: "tribe-action-btn" }, i18n.privateMessage)) + : null, + isAuthor + ? form({ method: "GET", action: `/shops/edit/${encodeURIComponent(shop.key)}` }, + button({ type: "submit", class: "tribe-action-btn" }, i18n.shopUpdate) + ) + : null, + isAuthor + ? form({ method: "POST", action: `/shops/delete/${encodeURIComponent(shop.key)}` }, + button({ type: "submit", class: "tribe-action-btn" }, i18n.shopDelete) + ) + : null, + isAuthor && shop.visibility !== "CLOSED" + ? form({ method: "POST", action: `/shops/visibility/${encodeURIComponent(shop.key)}` }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + input({ type: "hidden", name: "visibility", value: "CLOSED" }), + button({ type: "submit", class: "tribe-action-btn" }, i18n.shopCloseShop) + ) + : null, + isAuthor && shop.visibility === "CLOSED" + ? form({ method: "POST", action: `/shops/visibility/${encodeURIComponent(shop.key)}` }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + input({ type: "hidden", name: "visibility", value: "OPEN" }), + button({ type: "submit", class: "tribe-action-btn" }, i18n.shopOpenShop) + ) + : null + ), + safeArr(shop.tags).length + ? div({ class: "tribe-side-tags" }, safeArr(shop.tags).map(tag => a({ href: `/search?query=%23${encodeURIComponent(tag)}`, class: "tag-link" }, `#${tag}`))) + : null + ) + + const shopMain = div({ class: "tribe-main" }, + isAuthor + ? div({ class: "shop-add-product" }, + renderProductForm(shop.rootId || shop.key, {}, false, returnTo) + ) + : null, + div({ class: "shop-products-grid" }, + products.length + ? products.map(prod => renderProductCard(prod, shop.rootId || shop.key, returnTo)) + : p(i18n.shopNoProducts) + ) + ) + + return template( + shop.title || i18n.shopTitle, + section(renderModeButtons(filter)), + section( + div({ class: "tribe-details" }, + shopSide, + shopMain + ) + ) + ) +} + +exports.singleProductView = async (product, shop, comments = [], params = {}) => { + const returnTo = safeText(params.returnTo) || `/shops/${encodeURIComponent(params.shopId || product.shopId)}` + const isAuthor = String(product.author) === String(userId) + const stock = Number(product.stock) || 0 + + return template( + product.title || i18n.shopProductTitle, + section(renderModeButtons("products")), + section( + div({ class: "shop-detail" }, + div({ class: "bookmark-topbar transfer-topbar-single" }, + div({ class: "bookmark-topbar-left" }, + product.author && String(product.author) !== String(userId) + ? form({ method: "GET", action: "/pm" }, input({ type: "hidden", name: "recipients", value: product.author }), button({ type: "submit", class: "filter-btn" }, i18n.privateMessage)) + : null, + form({ method: "GET", action: `/shops/${encodeURIComponent(product.shopId)}` }, + button({ type: "submit", class: "filter-btn" }, `← ${i18n.shopBackToShop}`)) + ), + isAuthor + ? div({ class: "bookmark-actions transfer-actions" }, + form({ method: "GET", action: `/shops/product/edit/${encodeURIComponent(product.key)}` }, + input({ type: "hidden", name: "shopId", value: product.shopId }), + input({ type: "hidden", name: "returnTo", value: returnTo }), + button({ class: "update-btn", type: "submit" }, i18n.shopUpdate) + ), + form({ method: "POST", action: `/shops/product/delete/${encodeURIComponent(product.key)}` }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + button({ class: "delete-btn", type: "submit" }, i18n.shopDelete) + ) + ) + : null + ), + product.image ? div({ class: "shop-detail-media" }, renderMediaBlob(product.image)) : null, + h2(product.title), + renderStarRating(product.opinions, safeArr(product.opinions_inhabitants).length), + product.description ? div({ class: "shop-detail-desc" }, ...renderUrl(product.description)) : null, + div({ class: "shop-product-price" }, `${Number(product.price || 0).toFixed(6)} ECO`), + div({ class: "confirmations-block stock-block" }, + div({ class: "card-field" }, + span({ class: "card-label" }, `${i18n.shopProductStock}: `), + span({ class: "card-value" }, stock > 0 ? String(stock) : i18n.shopOutOfStock) + ), + progress({ class: "confirmations-progress stock-progress", value: Math.min(stock, 100), max: 100 }) + ), + !isAuthor && stock > 0 + ? form({ method: "POST", action: `/shops/product/buy/${encodeURIComponent(product.key)}` }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + button({ type: "submit", class: "buy-btn" }, i18n.marketActionsBuy || i18n.shopBuy) + ) + : null, + br(), + p({ class: "card-footer" }, + span({ class: "date-link" }, moment(product.createdAt).format("YYYY-MM-DD HH:mm")), + " ", + a({ href: `/author/${encodeURIComponent(product.author)}`, class: "user-link" }, product.author) + ), + !isAuthor && safeArr(product.buyers).includes(userId) && !safeArr(product.opinions_inhabitants).includes(userId) + ? div({ class: "voting-buttons transfer-voting-buttons" }, + opinionCategories.map(category => + form({ method: "POST", action: `/shops/product/opinions/${encodeURIComponent(product.key)}/${category}` }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + button({ class: "vote-btn" }, `${i18n[`vote${category.charAt(0).toUpperCase() + category.slice(1)}`] || category} [${product.opinions?.[category] || 0}]`) + ) + ) + ) + : null + ), + renderCommentsSection(product.key, returnTo, comments) + ) + ) +} + +exports.editProductView = async (product, shopId, params = {}) => { + const returnTo = safeText(params.returnTo) || `/shops/${encodeURIComponent(shopId)}` + return template( + i18n.shopProductUpdate, + section( + div({ class: "tags-header" }, h2(i18n.shopProductUpdate)), + renderProductForm(shopId, product, true, returnTo) + ) + ) +} diff --git a/nodejs-project/nodejs-project/src/views/stats_view.js b/nodejs-project/nodejs-project/src/views/stats_view.js index 52425197..4c8b8c37 100644 --- a/nodejs-project/nodejs-project/src/views/stats_view.js +++ b/nodejs-project/nodejs-project/src/views/stats_view.js @@ -2,6 +2,11 @@ const { div, h2, p, section, button, form, input, ul, li, a, h3, span, strong, t const { template, i18n } = require('./main_views'); Object.assign(i18n, { + statsChat: "Chats", + statsChatMessage: "Chat messages", + statsPad: "Pads", + statsPadEntry: "Pad entries", + statsGameScore: "Game scores", statsParliamentCandidature: "Parliament candidatures", statsParliamentTerm: "Parliament terms", statsParliamentProposal: "Parliament proposals", @@ -27,8 +32,9 @@ exports.statsView = (stats, filter) => { const modes = ['ALL', 'MINE', 'TOMBSTONE']; const types = [ 'bookmark', 'event', 'task', 'votes', 'report', 'feed', 'project', - 'image', 'audio', 'video', 'document', 'transfer', 'post', 'tribe', - 'market', 'forum', 'job', 'aiExchange', + 'image', 'torrent', 'audio', 'video', 'document', 'transfer', 'post', 'tribe', + 'market', 'forum', 'job', 'aiExchange', 'map', 'shop', 'shopProduct', + 'chat', 'chatMessage', 'pad', 'padEntry', 'gameScore', 'calendar', 'calendarDate', 'calendarNote', 'parliamentCandidature','parliamentTerm','parliamentProposal','parliamentRevocation','parliamentLaw', 'courtsCase','courtsEvidence','courtsAnswer','courtsVerdict','courtsSettlement','courtsSettlementProposal','courtsSettlementAccepted','courtsNomination','courtsNominationVote' ]; @@ -41,6 +47,7 @@ exports.statsView = (stats, filter) => { feed: i18n.statsFeed, project: i18n.statsProject, image: i18n.statsImage, + torrent: i18n.statsTorrent, audio: i18n.statsAudio, video: i18n.statsVideo, document: i18n.statsDocument, @@ -51,6 +58,17 @@ exports.statsView = (stats, filter) => { forum: i18n.statsForum, job: i18n.statsJob, aiExchange: i18n.statsAiExchange, + map: i18n.statsMap, + shop: i18n.statsShop, + shopProduct: i18n.statsShopProduct, + chat: i18n.statsChat, + chatMessage: i18n.statsChatMessage, + pad: i18n.statsPad, + padEntry: i18n.statsPadEntry, + gameScore: i18n.statsGameScore, + calendar: i18n.statsCalendar, + calendarDate: i18n.statsCalendarDate, + calendarNote: i18n.statsCalendarNote, parliamentCandidature: i18n.statsParliamentCandidature, parliamentTerm: i18n.statsParliamentTerm, parliamentProposal: i18n.statsParliamentProposal, @@ -99,7 +117,7 @@ exports.statsView = (stats, filter) => { ) ) ), - div({ style: headerStyle }, h3(`${i18n.bankingUserEngagementScore}: ${C(stats, 'karmaScore')}`)), + div({ class: "stats-karma-block" }, h3(`${i18n.bankingUserEngagementScore}: ${C(stats, 'karmaScore')}`)), div({ style: headerStyle }, h3(i18n.statsCarbonFootprintTitle || 'Carbon Footprint'), (() => { @@ -198,6 +216,12 @@ exports.statsView = (stats, filter) => { li({ style: 'font-size:18px; color:#555; margin:8px 0;' }, `${i18n.statsTotalEcoAddresses}: `, span({ style: 'color:#888;' }, String(stats?.banking?.totalAddresses || 0))) ) ), + div({ style: headerStyle }, + h3({ style: 'font-size:18px; color:#555; margin:8px 0; font-weight:600;' }, i18n.statsLogsTitle || 'Logs'), + ul({ style: 'list-style-type:none; padding:0; margin:0;' }, + li({ style: 'font-size:18px; color:#555; margin:8px 0;' }, `${i18n.statsLogsEntries || 'Entries'}: `, span({ style: 'color:#888;' }, String(stats?.logsCount || 0))) + ) + ), div({ style: headerStyle }, h3({ style: 'font-size:18px; color:#555; margin:8px 0; font-weight:600;' }, i18n.statsAITraining), ul({ style: 'list-style-type:none; padding:0; margin:0;' }, @@ -263,8 +287,20 @@ exports.statsView = (stats, filter) => { div({ style: blockStyle }, h2(`${i18n.statsNetworkContent}: ${totalContent}`), ul( - types.filter(t => t !== 'karmaScore').map(t => { + types.filter(t => t !== 'karmaScore' && t !== 'shopProduct' && t !== 'padEntry' && t !== 'chatMessage').map(t => { if (C(stats, t) <= 0) return null; + if (t === 'shop') return li( + span(`${labels[t]}: ${C(stats, t)}`), + ul([li(`${labels.shopProduct}: ${C(stats, 'shopProduct')}`)]) + ); + if (t === 'pad') return li( + span(`${labels[t]}: ${C(stats, t)}`), + ul([li(`${labels.padEntry}: ${C(stats, 'padEntry')}`)]) + ); + if (t === 'chat') return li( + span(`${labels[t]}: ${C(stats, t)}`), + ul([li(`${labels.chatMessage}: ${C(stats, 'chatMessage')}`)]) + ); if (t !== 'tribe') return li(`${labels[t]}: ${C(stats, t)}`); return li( span(`${labels[t]}: ${C(stats, t)}`), @@ -339,8 +375,12 @@ exports.statsView = (stats, filter) => { div({ style: blockStyle }, h2(`${i18n.statsYourContent}: ${totalContent}`), ul( - types.filter(t => t !== 'karmaScore').map(t => { + types.filter(t => t !== 'karmaScore' && t !== 'shopProduct').map(t => { if (C(stats, t) <= 0) return null; + if (t === 'shop') return li( + span(`${labels[t]}: ${C(stats, t)}`), + ul([li(`${labels.shopProduct}: ${C(stats, 'shopProduct')}`)]) + ); if (t !== 'tribe') return li(`${labels[t]}: ${C(stats, t)}`); return li( span(`${labels[t]}: ${C(stats, t)}`), diff --git a/nodejs-project/nodejs-project/src/views/task_view.js b/nodejs-project/nodejs-project/src/views/task_view.js index a269f0ff..fceeffca 100644 --- a/nodejs-project/nodejs-project/src/views/task_view.js +++ b/nodejs-project/nodejs-project/src/views/task_view.js @@ -157,7 +157,7 @@ const renderTaskCommentsSection = (taskId, comments = [], currentFilter = "all") class: "comment-textarea", placeholder: i18n.voteNewCommentPlaceholder }), - div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob", accept: "image/*,audio/*,video/*,application/pdf" })), + div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob" })), br(), button({ type: "submit", class: "comment-submit-btn" }, i18n.voteNewCommentButton) ) @@ -226,12 +226,6 @@ const renderTaskItem = (task, filter) => { ) ), br(), - Array.isArray(task.tags) && task.tags.length - ? div( - { class: "card-tags" }, - task.tags.map((tag) => a({ href: `/search?query=%23${encodeURIComponent(tag)}`, class: "tag-link" }, `#${tag}`)) - ) - : null, div( { class: "card-comments-summary" }, span({ class: "card-label" }, i18n.voteCommentsLabel + ":"), @@ -333,12 +327,14 @@ exports.taskView = async (tasks, filter, taskId, returnTo) => { ? div( { class: "task-form" }, form( - { action: currentFilter === "edit" ? `/tasks/update/${encodeURIComponent(taskId)}` : "/tasks/create", method: "POST" }, + { action: currentFilter === "edit" ? `/tasks/update/${encodeURIComponent(taskId)}` : "/tasks/create", method: "POST", enctype: "multipart/form-data" }, input({ type: "hidden", name: "returnTo", value: ret }), label(i18n.taskTitleLabel), br(), - input({ type: "text", name: "title", required: true, value: currentFilter === "edit" ? (editTask.title || "") : "" }), br(), br(), + input({ type: "text", name: "title", required: true, value: currentFilter === "edit" ? (editTask.title || "") : "" }), br(), label(i18n.taskDescriptionLabel), br(), - textarea({ name: "description", required: true, placeholder: i18n.taskDescriptionPlaceholder, rows: "4" }, currentFilter === "edit" ? (editTask.description || "") : ""), br(), br(), + textarea({ name: "description", required: true, placeholder: i18n.taskDescriptionPlaceholder, rows: "4" }, currentFilter === "edit" ? (editTask.description || "") : ""), br(), + label(i18n.uploadMedia), br(), + input({ type: "file", name: "image", accept: "image/*" }), br(),br(), label(i18n.taskStartTimeLabel), br(), input({ type: "datetime-local", @@ -364,9 +360,9 @@ exports.taskView = async (tasks, filter, taskId, returnTo) => { opt("LOW", !editTask.priority || String(editTask.priority || "").toUpperCase() === "LOW", i18n.taskPriorityLow) ), br(), br(), label(i18n.taskLocationLabel), br(), - input({ type: "text", name: "location", value: editTask.location || "" }), br(), br(), + input({ type: "text", name: "location", value: editTask.location || "" }), br(), label(i18n.taskTagsLabel), br(), - input({ type: "text", name: "tags", value: editTags.join(", ") }), br(), br(), + input({ type: "text", name: "tags", value: editTags.join(", ") }), br(), label(i18n.taskVisibilityLabel), br(), select( { name: "isPublic", id: "isPublic" }, @@ -391,28 +387,41 @@ exports.singleTaskView = async (task, filter, comments = []) => { const assignees = safeArray(task.assignees); const commentCount = typeof task.commentCount === "number" ? task.commentCount : 0; + const isPrivateNoAccess = String(task.isPublic || "").toUpperCase() === "PRIVATE" && + String(task.author) !== String(userId) && + !assignees.includes(userId); + + const filterBar = div( + { class: "filters" }, + form( + { method: "GET", action: "/tasks" }, + button({ type: "submit", name: "filter", value: "all", class: currentFilter === "all" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterAll), + button({ type: "submit", name: "filter", value: "mine", class: currentFilter === "mine" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterMine), + button({ type: "submit", name: "filter", value: "assigned", class: currentFilter === "assigned" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterAssigned), + button({ type: "submit", name: "filter", value: "open", class: currentFilter === "open" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterOpen), + button({ type: "submit", name: "filter", value: "in-progress", class: currentFilter === "in-progress" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterInProgress), + button({ type: "submit", name: "filter", value: "closed", class: currentFilter === "closed" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterClosed), + button({ type: "submit", name: "filter", value: "priority-low", class: currentFilter === "priority-low" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterLow), + button({ type: "submit", name: "filter", value: "priority-medium", class: currentFilter === "priority-medium" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterMedium), + button({ type: "submit", name: "filter", value: "priority-high", class: currentFilter === "priority-high" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterHigh), + button({ type: "submit", name: "filter", value: "priority-urgent", class: currentFilter === "priority-urgent" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterUrgent), + button({ type: "submit", name: "filter", value: "create", class: "create-button" }, i18n.taskCreateButton) + ) + ); + + if (isPrivateNoAccess) { + return template( + task.title, + section(filterBar, p({ class: "access-denied-msg" }, i18n.contentAccessDenied)) + ); + } + const topbar = renderTaskTopbar(task, currentFilter, { single: true }); return template( task.title, section( - div( - { class: "filters" }, - form( - { method: "GET", action: "/tasks" }, - button({ type: "submit", name: "filter", value: "all", class: currentFilter === "all" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterAll), - button({ type: "submit", name: "filter", value: "mine", class: currentFilter === "mine" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterMine), - button({ type: "submit", name: "filter", value: "assigned", class: currentFilter === "assigned" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterAssigned), - button({ type: "submit", name: "filter", value: "open", class: currentFilter === "open" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterOpen), - button({ type: "submit", name: "filter", value: "in-progress", class: currentFilter === "in-progress" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterInProgress), - button({ type: "submit", name: "filter", value: "closed", class: currentFilter === "closed" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterClosed), - button({ type: "submit", name: "filter", value: "priority-low", class: currentFilter === "priority-low" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterLow), - button({ type: "submit", name: "filter", value: "priority-medium", class: currentFilter === "priority-medium" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterMedium), - button({ type: "submit", name: "filter", value: "priority-high", class: currentFilter === "priority-high" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterHigh), - button({ type: "submit", name: "filter", value: "priority-urgent", class: currentFilter === "priority-urgent" ? "filter-btn active" : "filter-btn" }, i18n.taskFilterUrgent), - button({ type: "submit", name: "filter", value: "create", class: "create-button" }, i18n.taskCreateButton) - ) - ), + filterBar, div( { class: "card card-section task" }, topbar ? topbar : null, @@ -423,10 +432,15 @@ exports.singleTaskView = async (task, filter, comments = []) => { renderCardField(i18n.taskEndTimeLabel + ":", task.endTime ? moment(task.endTime).format("YYYY/MM/DD HH:mm:ss") : ""), renderCardField(i18n.taskPriorityLabel + ":", task.priority), task.location && String(task.location).trim() ? renderCardField(i18n.taskLocationLabel + ":", task.location) : null, - renderCardField(i18n.taskCreatedAt + ":", task.createdAt ? moment(task.createdAt).format(i18n.dateFormat) : ""), - renderCardField(i18n.taskBy + ":", a({ href: `/author/${encodeURIComponent(task.author)}`, class: "user-link" }, task.author)), renderCardField(i18n.taskStatus + ":", statusLabel(task.status)), renderCardField(i18n.taskVisibilityLabel + ":", visibilityLabel(task.isPublic)), + Array.isArray(task.tags) && task.tags.length + ? div( + { class: "card-tags" }, + task.tags.map((tag) => a({ href: `/search?query=%23${encodeURIComponent(tag)}`, class: "tag-link" }, `#${tag}`)) + ) + : null, + br, div( { class: "card-field" }, span({ class: "card-label" }, i18n.taskAssignedTo + ":"), @@ -437,16 +451,11 @@ exports.singleTaskView = async (task, filter, comments = []) => { : i18n.noAssignees ) ), - Array.isArray(task.tags) && task.tags.length - ? div( - { class: "card-tags" }, - task.tags.map((tag) => a({ href: `/search?query=%23${encodeURIComponent(tag)}`, class: "tag-link" }, `#${tag}`)) - ) - : null, - div( - { class: "card-comments-summary" }, - span({ class: "card-label" }, i18n.voteCommentsLabel + ":"), - span({ class: "card-value" }, String(commentCount)) + br, + p( + { class: "card-footer" }, + span({ class: "date-link" }, `${moment(task.createdAt).format("YYYY/MM/DD HH:mm:ss")} ${i18n.performed} `), + a({ href: `/author/${encodeURIComponent(task.author)}`, class: "user-link" }, `${task.author}`) ) ), renderTaskCommentsSection(task.id, comments, currentFilter) diff --git a/nodejs-project/nodejs-project/src/views/torrents_view.js b/nodejs-project/nodejs-project/src/views/torrents_view.js new file mode 100644 index 00000000..0c03ca4f --- /dev/null +++ b/nodejs-project/nodejs-project/src/views/torrents_view.js @@ -0,0 +1,404 @@ +const { + form, + button, + div, + h2, + p, + section, + input, + br, + a, + span, + textarea, + select, + label, + option, + table, + tr, + th, + td +} = require("../server/node_modules/hyperaxe"); + +const { template, i18n } = require("./main_views"); +const moment = require("../server/node_modules/moment"); +const { config } = require("../server/SSB_server.js"); +const { renderUrl } = require("../backend/renderUrl"); +const opinionCategories = require("../backend/opinion_categories"); + +const userId = config.keys.id; + +const safeArr = (v) => (Array.isArray(v) ? v : []); +const safeText = (v) => String(v || "").trim(); + +const buildReturnTo = (filter, params = {}) => { + const f = safeText(filter || "all"); + const q = safeText(params.q || ""); + const sort = safeText(params.sort || "recent"); + const parts = [`filter=${encodeURIComponent(f)}`]; + if (q) parts.push(`q=${encodeURIComponent(q)}`); + if (sort) parts.push(`sort=${encodeURIComponent(sort)}`); + return `/torrents?${parts.join("&")}`; +}; + +const renderTags = (tags) => { + const list = safeArr(tags).map((t) => String(t || "").trim()).filter(Boolean); + return list.length + ? div( + { class: "card-tags" }, + list.map((tag) => a({ href: `/search?query=%23${encodeURIComponent(tag)}`, class: "tag-link" }, `#${tag}`)) + ) + : null; +}; + +const renderTorrentFavoriteToggle = (torrentObj, returnTo = "") => + form( + { + method: "POST", + action: torrentObj.isFavorite + ? `/torrents/favorites/remove/${encodeURIComponent(torrentObj.key)}` + : `/torrents/favorites/add/${encodeURIComponent(torrentObj.key)}` + }, + returnTo ? input({ type: "hidden", name: "returnTo", value: returnTo }) : null, + button( + { type: "submit", class: "filter-btn" }, + torrentObj.isFavorite ? i18n.torrentRemoveFavoriteButton : i18n.torrentAddFavoriteButton + ) + ); + +const renderTorrentOwnerActions = (filter, torrentObj, params = {}) => { + const returnTo = buildReturnTo(filter, params); + const isAuthor = String(torrentObj.author) === String(userId); + const hasOpinions = Object.keys(torrentObj.opinions || {}).length > 0; + + if (!isAuthor) return []; + + const items = []; + if (!hasOpinions) { + items.push( + form( + { method: "GET", action: `/torrents/edit/${encodeURIComponent(torrentObj.key)}` }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + button({ class: "update-btn", type: "submit" }, i18n.torrentUpdateButton) + ) + ); + } + items.push( + form( + { method: "POST", action: `/torrents/delete/${encodeURIComponent(torrentObj.key)}` }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + button({ class: "delete-btn", type: "submit" }, i18n.torrentDeleteButton) + ) + ); + + return items; +}; + +const renderTorrentCommentsSection = (torrentId, comments = [], returnTo = null) => { + const list = safeArr(comments); + const commentsCount = list.length; + + return div( + { class: "vote-comments-section" }, + div( + { class: "comments-count" }, + span({ class: "card-label" }, i18n.voteCommentsLabel + ": "), + span({ class: "card-value" }, String(commentsCount)) + ), + div( + { class: "comment-form-wrapper" }, + h2({ class: "comment-form-title" }, i18n.voteNewCommentLabel), + form( + { method: "POST", action: `/torrents/${encodeURIComponent(torrentId)}/comments`, class: "comment-form", enctype: "multipart/form-data" }, + returnTo ? input({ type: "hidden", name: "returnTo", value: returnTo }) : null, + textarea({ + id: "comment-text", + name: "text", + rows: 4, + class: "comment-textarea", + placeholder: i18n.voteNewCommentPlaceholder + }), + div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob" })), + br(), + button({ type: "submit", class: "comment-submit-btn" }, i18n.voteNewCommentButton) + ) + ), + list.length + ? div( + { class: "comments-list" }, + list.map((c) => { + const author = c?.value?.author || ""; + const ts = c?.value?.timestamp || c?.timestamp; + const absDate = ts ? moment(ts).format("YYYY/MM/DD HH:mm:ss") : ""; + const relDate = ts ? moment(ts).fromNow() : ""; + const userName = author && author.includes("@") ? author.split("@")[1] : author; + const content = c?.value?.content || {}; + const rootId = content.fork || content.root || null; + const text = content.text || ""; + + return div( + { class: "votations-comment-card" }, + span( + { class: "created-at" }, + span(i18n.createdBy), + author ? a({ href: `/author/${encodeURIComponent(author)}` }, `@${userName}`) : span("(unknown)"), + absDate ? span(" | ") : "", + absDate ? span({ class: "votations-comment-date" }, absDate) : "", + relDate ? span({ class: "votations-comment-date" }, " | ", i18n.sendTime) : "", + relDate && rootId ? a({ href: `/thread/${encodeURIComponent(rootId)}#${encodeURIComponent(c.key)}` }, relDate) : "" + ), + p({ class: "votations-comment-text" }, ...renderUrl(text)) + ); + }) + ) + : p({ class: "votations-no-comments" }, i18n.voteNoCommentsYet) + ); +}; + +const formatSize = (bytes) => { + const n = Number(bytes) || 0; + if (n === 0) return "—"; + if (n < 1024) return n + " B"; + if (n < 1024 * 1024) return (n / 1024).toFixed(1) + " KB"; + return (n / (1024 * 1024)).toFixed(1) + " MB"; +}; + +const renderTorrentTable = (torrents, filter, params = {}) => { + const returnTo = buildReturnTo(filter, params); + + if (!torrents.length) return p(params.q ? i18n.torrentNoMatch : i18n.noTorrents); + + return table( + { border: "1", class: "torrent-table" }, + tr( + th(i18n.createdAt || "DATE"), + th(i18n.authorLabel || "AUTHOR"), + th(i18n.torrentTitleLabel || "TITLE"), + th(i18n.torrentSizeLabel || "SIZE"), + th(""), + th("") + ), + torrents.map((t) => + tr( + td(moment(t.createdAt).format("YYYY/MM/DD HH:mm")), + td(a({ href: `/author/${encodeURIComponent(t.author)}`, class: "user-link" }, t.author)), + td(t.title || ""), + td(formatSize(t.size)), + td( + form( + { method: "GET", action: `/torrents/${encodeURIComponent(t.key)}` }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + input({ type: "hidden", name: "filter", value: filter || "all" }), + params.q ? input({ type: "hidden", name: "q", value: params.q }) : null, + params.sort ? input({ type: "hidden", name: "sort", value: params.sort }) : null, + button({ type: "submit", class: "filter-btn" }, i18n.viewDetails) + ) + ), + td( + t.url && t.url.startsWith("&") + ? a({ href: `/blob/${encodeURIComponent(t.url)}`, class: "filter-btn" }, i18n.torrentDownloadButton || "DOWNLOAD IT!") + : "" + ) + ) + ) + ); +}; + +const renderTorrentForm = (filter, torrentId, torrentToEdit, params = {}) => { + const returnTo = safeText(params.returnTo) || buildReturnTo("all", params); + return div( + { class: "div-center audio-form" }, + form( + { + action: filter === "edit" ? `/torrents/update/${encodeURIComponent(torrentId)}` : "/torrents/create", + method: "POST", + enctype: "multipart/form-data" + }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + span(i18n.torrentFileLabel), + br(), + input({ type: "file", name: "torrent", accept: ".torrent", required: filter !== "edit" }), + br(), + br(), + span(i18n.torrentTitleLabel), + br(), + input({ type: "text", name: "title", placeholder: i18n.torrentTitlePlaceholder, value: torrentToEdit?.title || "", required: true }), + br(), + span(i18n.torrentDescriptionLabel), + br(), + textarea({ name: "description", placeholder: i18n.torrentDescriptionPlaceholder, rows: "4" }, torrentToEdit?.description || ""), + br(), + span(i18n.torrentTagsLabel), + br(), + input({ + type: "text", + name: "tags", + placeholder: i18n.torrentTagsPlaceholder, + value: safeArr(torrentToEdit?.tags).join(", ") + }), + br(), + br(), + button({ type: "submit" }, filter === "edit" ? i18n.torrentUpdateButton : i18n.torrentCreateButton) + ) + ); +}; + +exports.torrentsView = async (torrents, filter = "all", torrentId = null, params = {}) => { + const title = + filter === "mine" + ? i18n.torrentMineSectionTitle + : filter === "create" + ? i18n.torrentCreateSectionTitle + : filter === "edit" + ? i18n.torrentUpdateSectionTitle + : filter === "recent" + ? i18n.torrentRecentSectionTitle + : filter === "top" + ? i18n.torrentTopSectionTitle + : filter === "favorites" + ? i18n.torrentFavoritesSectionTitle + : i18n.torrentAllSectionTitle; + + const q = safeText(params.q || ""); + const sort = safeText(params.sort || "recent"); + + const list = safeArr(torrents); + const torrentToEdit = torrentId ? list.find((t) => t.key === torrentId) : null; + + return template( + title, + section( + div({ class: "tags-header" }, h2(title), p(i18n.torrentsDescription)), + div( + { class: "filters" }, + form( + { method: "GET", action: "/torrents", class: "ui-toolbar ui-toolbar--filters" }, + input({ type: "hidden", name: "q", value: q }), + input({ type: "hidden", name: "sort", value: sort }), + button({ type: "submit", name: "filter", value: "all", class: filter === "all" ? "filter-btn active" : "filter-btn" }, i18n.torrentFilterAll), + button({ type: "submit", name: "filter", value: "mine", class: filter === "mine" ? "filter-btn active" : "filter-btn" }, i18n.torrentFilterMine), + button({ type: "submit", name: "filter", value: "recent", class: filter === "recent" ? "filter-btn active" : "filter-btn" }, i18n.torrentFilterRecent), + button({ type: "submit", name: "filter", value: "top", class: filter === "top" ? "filter-btn active" : "filter-btn" }, i18n.torrentFilterTop), + button( + { type: "submit", name: "filter", value: "favorites", class: filter === "favorites" ? "filter-btn active" : "filter-btn" }, + i18n.torrentFilterFavorites + ), + button({ type: "submit", name: "filter", value: "create", class: "create-button" }, i18n.torrentCreateButton) + ) + ) + ), + section( + filter === "create" || filter === "edit" + ? renderTorrentForm(filter, torrentId, torrentToEdit, { ...params, filter }) + : section( + div( + { class: "audios-search" }, + form( + { method: "GET", action: "/torrents", class: "filter-box" }, + input({ type: "hidden", name: "filter", value: filter }), + input({ + type: "text", + name: "q", + value: q, + placeholder: i18n.torrentSearchPlaceholder, + class: "filter-box__input" + }), + div( + { class: "filter-box__controls" }, + select( + { name: "sort", class: "filter-box__select" }, + option({ value: "recent", selected: sort === "recent" }, i18n.torrentSortRecent), + option({ value: "oldest", selected: sort === "oldest" }, i18n.torrentSortOldest), + option({ value: "top", selected: sort === "top" }, i18n.torrentSortTop) + ), + button({ type: "submit", class: "filter-box__button" }, i18n.torrentSearchButton) + ) + ) + ), + div({ class: "audios-list" }, renderTorrentTable(list, filter, { q, sort })) + ) + ) + ); +}; + +exports.singleTorrentView = async (torrentObj, filter = "all", comments = [], params = {}) => { + const q = safeText(params.q || ""); + const sort = safeText(params.sort || "recent"); + const returnTo = safeText(params.returnTo) || buildReturnTo(filter, { q, sort }); + + const title = safeText(torrentObj.title); + const ownerActions = renderTorrentOwnerActions(filter, torrentObj, { q, sort }); + + const topbar = div( + { class: "bookmark-topbar" }, + div({ class: "bookmark-actions" }, renderTorrentFavoriteToggle(torrentObj, returnTo), ...ownerActions) + ); + + return template( + i18n.torrentsTitle, + section( + div( + { class: "filters" }, + form( + { method: "GET", action: "/torrents", class: "ui-toolbar ui-toolbar--filters" }, + input({ type: "hidden", name: "q", value: q }), + input({ type: "hidden", name: "sort", value: sort }), + button({ type: "submit", name: "filter", value: "all", class: filter === "all" ? "filter-btn active" : "filter-btn" }, i18n.torrentFilterAll), + button({ type: "submit", name: "filter", value: "mine", class: filter === "mine" ? "filter-btn active" : "filter-btn" }, i18n.torrentFilterMine), + button({ type: "submit", name: "filter", value: "recent", class: filter === "recent" ? "filter-btn active" : "filter-btn" }, i18n.torrentFilterRecent), + button({ type: "submit", name: "filter", value: "top", class: filter === "top" ? "filter-btn active" : "filter-btn" }, i18n.torrentFilterTop), + button( + { type: "submit", name: "filter", value: "favorites", class: filter === "favorites" ? "filter-btn active" : "filter-btn" }, + i18n.torrentFilterFavorites + ), + button({ type: "submit", name: "filter", value: "create", class: "create-button" }, i18n.torrentCreateButton) + ) + ), + div( + { class: "bookmark-item card" }, + topbar, + title ? h2(title) : null, + safeText(torrentObj.description) ? p(...renderUrl(torrentObj.description)) : null, + torrentObj.url && torrentObj.url.startsWith("&") + ? div({ class: "torrent-download" }, + a({ href: `/blob/${encodeURIComponent(torrentObj.url)}?name=${encodeURIComponent((torrentObj.title || 'download').replace(/\.torrent$/i, '') + '.torrent')}` , class: "filter-btn" }, i18n.torrentDownloadButton || "DOWNLOAD IT!") + ) + : p(i18n.torrentNoFile), + renderTags(torrentObj.tags), + br(), + (() => { + const createdTs = torrentObj.createdAt ? new Date(torrentObj.createdAt).getTime() : NaN; + const updatedTs = torrentObj.updatedAt ? new Date(torrentObj.updatedAt).getTime() : NaN; + const showUpdated = Number.isFinite(updatedTs) && (!Number.isFinite(createdTs) || updatedTs !== createdTs); + + return p( + { class: "card-footer" }, + span({ class: "date-link" }, `${moment(torrentObj.createdAt).format("YYYY/MM/DD HH:mm:ss")} ${i18n.performed} `), + a({ href: `/author/${encodeURIComponent(torrentObj.author)}`, class: "user-link" }, `${torrentObj.author}`), + showUpdated + ? span( + { class: "votations-comment-date" }, + ` | ${i18n.torrentUpdatedAt}: ${moment(torrentObj.updatedAt).format("YYYY/MM/DD HH:mm:ss")}` + ) + : null + ); + })(), + div( + { class: "voting-buttons" }, + opinionCategories.map((category) => + form( + { method: "POST", action: `/torrents/opinions/${encodeURIComponent(torrentObj.key)}/${category}` }, + input({ type: "hidden", name: "returnTo", value: returnTo }), + button( + { class: "vote-btn" }, + `${i18n[`vote${category.charAt(0).toUpperCase() + category.slice(1)}`] || category} [${ + torrentObj.opinions?.[category] || 0 + }]` + ) + ) + ) + ) + ), + div({ id: "comments" }, renderTorrentCommentsSection(torrentObj.key, comments, returnTo)) + ) + ); +}; diff --git a/nodejs-project/nodejs-project/src/views/transfer_view.js b/nodejs-project/nodejs-project/src/views/transfer_view.js index c15d8547..c3e268a7 100644 --- a/nodejs-project/nodejs-project/src/views/transfer_view.js +++ b/nodejs-project/nodejs-project/src/views/transfer_view.js @@ -105,7 +105,6 @@ const renderTransferTopbar = (transfer, filter, params = {}) => { const chips = [] if (isExpired) chips.push(span({ class: "chip chip-warn" }, i18n.transfersExpiredBadge)) - if (isExpiringSoon) chips.push(span({ class: "chip chip-warn" }, i18n.transfersExpiringSoonBadge)) const leftActions = [] @@ -160,10 +159,11 @@ const generateTransferCard = (transfer, filter, params = {}) => { const isUnconfirmed = String(transfer.status || "").toUpperCase() === "UNCONFIRMED" const dl = transfer.deadline ? moment(transfer.deadline) : null const isExpired = dl && dl.isValid() ? dl.isBefore(moment()) : false + const tags = Array.isArray(transfer.tags) ? transfer.tags.map(t => String(t).toUpperCase()) : [] + const isUbi = tags.includes("UBI") const showConfirm = isUnconfirmed && transfer.to === userId && !confirmedBy.includes(userId) && !isExpired const topbar = renderTransferTopbar(transfer, filter, params) - const tagsNode = renderTags(transfer.tags) return div( { class: "transfer-item" }, @@ -171,14 +171,11 @@ const generateTransferCard = (transfer, filter, params = {}) => { { class: "card-section transfer" }, topbar ? topbar : null, renderCardField(`${i18n.transfersConcept}:`, transfer.concept || ""), - renderCardField(`${i18n.transfersDeadline}:`, dl && dl.isValid() ? dl.format("YYYY-MM-DD HH:mm") : ""), + isUbi ? null : renderCardField(`${i18n.transfersDeadline}:`, dl && dl.isValid() ? dl.format("YYYY-MM-DD HH:mm") : ""), renderCardField(`${i18n.transfersStatus}:`, i18n[statusKey(transfer.status)] || String(transfer.status || "")), - renderCardField(`${i18n.transfersAmount}:`, `${fmtAmount(transfer.amount)} ECO`), - renderCardField(`${i18n.transfersFrom}:`, a({ class: "user-link", href: `/author/${encodeURIComponent(transfer.from)}` }, transfer.from)), - renderCardField(`${i18n.transfersTo}:`, a({ class: "user-link", href: `/author/${encodeURIComponent(transfer.to)}` }, transfer.to)), - br(), + br, + div({ class: "transfer-amount-highlight" }, renderCardField(`${i18n.transfersAmount}:`, `${fmtAmount(transfer.amount)} ECO`)), renderConfirmationsBar(confirmedCount, required), - br(), showConfirm ? form( { method: "POST", action: `/transfers/confirm/${encodeURIComponent(transfer.id)}` }, @@ -188,26 +185,11 @@ const generateTransferCard = (transfer, filter, params = {}) => { br() ) : null, - tagsNode ? tagsNode : null, - tagsNode ? br() : null, p( { class: "card-footer" }, span({ class: "date-link" }, `${moment(transfer.createdAt).format("YYYY-MM-DD HH:mm")} ${i18n.performed} `), a({ href: `/author/${encodeURIComponent(transfer.from)}`, class: "user-link" }, `${transfer.from}`), renderUpdatedLabel(transfer.createdAt, transfer.updatedAt) - ), - div( - { class: "voting-buttons transfer-voting-buttons" }, - opinionCategories.map(category => - form( - { method: "POST", action: `/transfers/opinions/${encodeURIComponent(transfer.id)}/${category}` }, - input({ type: "hidden", name: "returnTo", value: returnTo }), - button( - { type: "submit", class: "vote-btn" }, - `${i18n[`vote${category.charAt(0).toUpperCase() + category.slice(1)}`] || category} [${transfer.opinions?.[category] || 0}]` - ) - ) - ) ) ) ) @@ -218,6 +200,7 @@ exports.transferView = async (transfers, filter, transferId, params = {}) => { const title = normalizedFilter === "mine" ? i18n.transfersMineSectionTitle : + normalizedFilter === "ubi" ? i18n.transfersUBISectionTitle : normalizedFilter === "pending" ? i18n.transfersPendingSectionTitle : normalizedFilter === "top" ? i18n.transfersTopSectionTitle : normalizedFilter === "unconfirmed" ? i18n.transfersUnconfirmedSectionTitle : @@ -238,6 +221,7 @@ exports.transferView = async (transfers, filter, transferId, params = {}) => { let filtered = normalizedFilter === "mine" ? list.filter(t => t.from === userId || t.to === userId) : + normalizedFilter === "ubi" ? list.filter(t => safeArr(t.tags).some(tag => String(tag).toUpperCase() === "UBI")) : normalizedFilter === "pending" ? list.filter(t => String(t.status || "").toUpperCase() === "UNCONFIRMED" && t.to === userId && !safeArr(t.confirmedBy).includes(userId)) : normalizedFilter === "top" ? list.filter(t => String(t.status || "").toUpperCase() === "CLOSED") : normalizedFilter === "unconfirmed" ? list.filter(t => String(t.status || "").toUpperCase() === "UNCONFIRMED") : @@ -286,6 +270,7 @@ exports.transferView = async (transfers, filter, transferId, params = {}) => { input({ type: "hidden", name: "sort", value: sort }), button({ type: "submit", name: "filter", value: "all", class: normalizedFilter === "all" ? "filter-btn active" : "filter-btn" }, i18n.transfersFilterAll), button({ type: "submit", name: "filter", value: "mine", class: normalizedFilter === "mine" ? "filter-btn active" : "filter-btn" }, i18n.transfersFilterMine), + button({ type: "submit", name: "filter", value: "ubi", class: normalizedFilter === "ubi" ? "filter-btn active" : "filter-btn" }, i18n.transfersFilterUBI), button({ type: "submit", name: "filter", value: "market", class: normalizedFilter === "market" ? "filter-btn active" : "filter-btn" }, i18n.transfersFilterMarket), button({ type: "submit", name: "filter", value: "pending", class: normalizedFilter === "pending" ? "filter-btn active" : "filter-btn" }, i18n.transfersFilterPending), button({ type: "submit", name: "filter", value: "unconfirmed", class: normalizedFilter === "unconfirmed" ? "filter-btn active" : "filter-btn" }, i18n.transfersFilterUnconfirmed), @@ -307,12 +292,10 @@ exports.transferView = async (transfers, filter, transferId, params = {}) => { br(), input({ type: "text", name: "to", required: true, pattern: "^@[A-Za-z0-9+/]+={0,2}\\.ed25519$", title: i18n.transfersToUserValidation, value: transferToEdit.to || "" }), br(), - br(), label(i18n.transfersConcept), br(), input({ type: "text", name: "concept", required: true, value: transferToEdit.concept || "" }), br(), - br(), label(i18n.transfersAmount), br(), input({ type: "number", name: "amount", step: "0.000001", required: true, min: "0.000001", value: transferToEdit.amount || "" }), @@ -379,6 +362,8 @@ exports.singleTransferView = async (transfer, filter, params = {}) => { const isUnconfirmed = String(transfer.status || "").toUpperCase() === "UNCONFIRMED" const dl = transfer.deadline ? moment(transfer.deadline) : null const isExpired = dl && dl.isValid() ? dl.isBefore(moment()) : false + const tags = Array.isArray(transfer.tags) ? transfer.tags.map(t => String(t).toUpperCase()) : [] + const isUbi = tags.includes("UBI") const showConfirm = isUnconfirmed && transfer.to === userId && !confirmedBy.includes(userId) && !isExpired const topbar = renderTransferTopbar(transfer, normalizedFilter, { ...params, q, sort, single: true }) @@ -397,6 +382,7 @@ exports.singleTransferView = async (transfer, filter, params = {}) => { input({ type: "hidden", name: "sort", value: sort }), button({ type: "submit", name: "filter", value: "all", class: normalizedFilter === "all" ? "filter-btn active" : "filter-btn" }, i18n.transfersFilterAll), button({ type: "submit", name: "filter", value: "mine", class: normalizedFilter === "mine" ? "filter-btn active" : "filter-btn" }, i18n.transfersFilterMine), + button({ type: "submit", name: "filter", value: "ubi", class: normalizedFilter === "ubi" ? "filter-btn active" : "filter-btn" }, i18n.transfersFilterUBI), button({ type: "submit", name: "filter", value: "market", class: normalizedFilter === "market" ? "filter-btn active" : "filter-btn" }, i18n.transfersFilterMarket), button({ type: "submit", name: "filter", value: "pending", class: normalizedFilter === "pending" ? "filter-btn active" : "filter-btn" }, i18n.transfersFilterPending), button({ type: "submit", name: "filter", value: "unconfirmed", class: normalizedFilter === "unconfirmed" ? "filter-btn active" : "filter-btn" }, i18n.transfersFilterUnconfirmed), @@ -411,15 +397,15 @@ exports.singleTransferView = async (transfer, filter, params = {}) => { div( { class: "card-section transfer" }, topbar ? topbar : null, - renderCardField(`${i18n.transfersConcept}:`, transfer.concept || ""), - renderCardField(`${i18n.transfersDeadline}:`, dl && dl.isValid() ? dl.format("YYYY-MM-DD HH:mm") : ""), - renderCardField(`${i18n.transfersStatus}:`, i18n[statusKey(transfer.status)] || String(transfer.status || "")), - renderCardField(`${i18n.transfersAmount}:`, `${fmtAmount(transfer.amount)} ECO`), renderCardField(`${i18n.transfersFrom}:`, a({ class: "user-link", href: `/author/${encodeURIComponent(transfer.from)}` }, transfer.from)), renderCardField(`${i18n.transfersTo}:`, a({ class: "user-link", href: `/author/${encodeURIComponent(transfer.to)}` }, transfer.to)), - br(), + br, + div({ class: "transfer-amount-highlight" }, renderCardField(`${i18n.transfersAmount}:`, `${fmtAmount(transfer.amount)} ECO`)), + renderCardField(`${i18n.transfersConcept}:`, transfer.concept || ""), + isUbi ? null : renderCardField(`${i18n.transfersDeadline}:`, dl && dl.isValid() ? dl.format("YYYY-MM-DD HH:mm") : ""), + renderCardField(`${i18n.transfersStatus}:`, i18n[statusKey(transfer.status)] || String(transfer.status || "")), + br, renderConfirmationsBar(confirmedCount, required), - br(), showConfirm ? form( { method: "POST", action: `/transfers/confirm/${encodeURIComponent(transfer.id)}` }, @@ -444,7 +430,7 @@ exports.singleTransferView = async (transfer, filter, params = {}) => { { method: "POST", action: `/transfers/opinions/${encodeURIComponent(transfer.id)}/${category}` }, input({ type: "hidden", name: "returnTo", value: returnTo }), button( - { type: "submit", class: "vote-btn" }, + { class: "vote-btn" }, `${i18n[`vote${category.charAt(0).toUpperCase() + category.slice(1)}`] || category} [${transfer.opinions?.[category] || 0}]` ) ) diff --git a/nodejs-project/nodejs-project/src/views/trending_view.js b/nodejs-project/nodejs-project/src/views/trending_view.js index 497a107f..3937a93e 100644 --- a/nodejs-project/nodejs-project/src/views/trending_view.js +++ b/nodejs-project/nodejs-project/src/views/trending_view.js @@ -42,7 +42,7 @@ const renderTrendingCard = (item, votes, categories, seenTitles) => { lastVisit ? div( { class: 'card-field' }, - span({ class: 'card-label' }, i18n.bookmarkLastVisit + ':'), + span({ class: 'card-label' }, i18n.bookmarkLastVisitLabel + ':'), span({ class: 'card-value' }, new Date(lastVisit).toLocaleString()) ) : "", @@ -94,6 +94,21 @@ const renderTrendingCard = (item, votes, categories, seenTitles) => { : div({ class: 'card-field' }, p(i18n.videoNoFile)) ) ); + } else if (c.type === 'torrent') { + const { url, title, description } = c; + contentHtml = div({ class: 'trending-torrent' }, + div({ class: 'card-section torrent' }, + form({ method: "GET", action: `/torrents/${encodeURIComponent(item.key)}` }, + button({ type: "submit", class: "filter-btn" }, i18n.viewDetails) + ), + br(), + title?.trim() ? div({ class: 'card-field' }, span({ class: 'card-label' }, (i18n.torrentTitleLabel || 'Title') + ':'), span({ class: 'card-value' }, title)) : "", + description ? [span({ class: 'card-label' }, (i18n.torrentDescriptionLabel || 'Description') + ":"), p(...renderUrl(description))] : null, + url && url.startsWith("&") + ? div({ class: 'card-field' }, a({ href: `/blob/${encodeURIComponent(url)}`, class: 'filter-btn' }, i18n.torrentDownload || 'Download')) + : div({ class: 'card-field' }, p(i18n.torrentNoFile || 'No file')) + ) + ); } else if (c.type === 'document') { const { url, title, description } = c; const t = title?.trim(); @@ -115,8 +130,14 @@ const renderTrendingCard = (item, votes, categories, seenTitles) => { const { text, refeeds } = c; contentHtml = div({ class: 'trending-feed' }, div({ class: 'card-section feed' }, + form({ method: "GET", action: `/feed/${encodeURIComponent(item.key)}` }, + button({ type: "submit", class: "filter-btn" }, i18n.viewDetails) + ), + br, div({ class: 'feed-text', innerHTML: sanitizeHtml(renderTextWithStyles(text)) }), - h2({ class: 'card-field' }, span({ class: 'card-label' }, i18n.tribeFeedRefeeds + ': '), span({ class: 'card-value' }, refeeds)) + refeeds + ? h2({ class: 'card-field' }, span({ class: 'card-label' }, i18n.tribeFeedRefeeds + ': '), span({ class: 'card-value' }, refeeds)) + : "" ) ); } else if (c.type === 'votes') { @@ -160,7 +181,6 @@ const renderTrendingCard = (item, votes, categories, seenTitles) => { div({ class: 'card-section styled-text-content' }, div( { class: 'card-field' }, - span({ class: 'card-label' }, i18n.textContentLabel + ':'), span({ class: 'card-value', innerHTML: sanitizeHtml(renderTextWithStyles(c.text || c.description || c.title || '[no content]')) }) ) ) @@ -198,7 +218,7 @@ const renderTrendingCard = (item, votes, categories, seenTitles) => { categories.map(cat => form({ method: 'POST', action: `/trending/${encodeURIComponent(item.key)}/${cat}` }, button( - { type: 'submit', class: 'vote-btn' }, + { class: 'vote-btn' }, `${voteLabelFor(cat)} [${c.opinions?.[cat] || 0}]` ) ) @@ -214,7 +234,7 @@ exports.trendingView = (items, filter, categories = opinionCategories) => { const baseFilters = ['RECENT', 'ALL', 'MINE', 'TOP']; const contentFilters = [ ['votes', 'feed', 'transfer'], - ['bookmark', 'image', 'video', 'audio', 'document'] + ['bookmark', 'image', 'video', 'audio', 'document', 'torrent'] ]; let filteredItems = items.filter(item => { @@ -261,13 +281,19 @@ exports.trendingView = (items, filter, categories = opinionCategories) => { title, section( header, - div({ class: 'mode-buttons' }, - ...[...baseFilters, ...contentFilters.flat()].map(mode => - form({ method: 'GET', action: '/trending' }, - input({ type: 'hidden', name: 'filter', value: mode }), - button( - { type: 'submit', class: filter === mode ? 'filter-btn active' : 'filter-btn' }, - i18n[mode + 'Button'] || mode + div( + { class: 'mode-buttons' }, + generateFilterButtons(baseFilters, filter, '/trending'), + ...contentFilters.map(row => + div({ style: 'display:flex;flex-direction:column;gap:8px;' }, + row.map(mode => + form({ method: 'GET', action: '/trending' }, + input({ type: 'hidden', name: 'filter', value: mode }), + button( + { type: 'submit', class: filter === mode ? 'filter-btn active' : 'filter-btn' }, + i18n[mode + 'Button'] || mode + ) + ) ) ) ) diff --git a/nodejs-project/nodejs-project/src/views/tribes_view.js b/nodejs-project/nodejs-project/src/views/tribes_view.js index eccc6c59..473cfdb8 100644 --- a/nodejs-project/nodejs-project/src/views/tribes_view.js +++ b/nodejs-project/nodejs-project/src/views/tribes_view.js @@ -1,8 +1,9 @@ -const { div, h2, p, section, button, form, a, input, img, label, select, option, br, textarea, h1, span, nav, ul, li, video, audio, table, tr, td } = require("../server/node_modules/hyperaxe"); +const { div, h2, h3, p, section, button, form, a, input, img, label, select, option, br, textarea, h1, span, nav, ul, li, video, audio, table, tr, td } = require("../server/node_modules/hyperaxe"); const QRCode = require('../server/node_modules/qrcode'); const { template, i18n } = require('./main_views'); const { config } = require('../server/SSB_server.js'); const { renderUrl } = require('../backend/renderUrl'); +const { renderMapLocationUrl, renderMapLocationGrid, renderMapLocationVisitLabel } = require("./maps_view"); const opinion_categories = require('../backend/opinion_categories.js'); const userId = config.keys.id; @@ -115,7 +116,21 @@ exports.tribesView = async (tribes, filter, tribeId, query = {}, allTribes = nul const now = Date.now(); const search = (query.search || '').toLowerCase(); - const visible = (t) => !t.isAnonymous || t.members.includes(userId); + const allT0 = allTribes || tribes; + const isAncestorPrivate = (t) => { + let cur = t; + const seen = new Set(); + while (cur && cur.parentTribeId && !seen.has(cur.parentTribeId)) { + seen.add(cur.parentTribeId); + const p = allT0.find(x => x.id === cur.parentTribeId); + if (!p) break; + if (p.isAnonymous) return true; + cur = p; + } + return false; + }; + const effectivePrivate = (t) => !!t.isAnonymous || isAncestorPrivate(t); + const visible = (t) => !effectivePrivate(t) || t.author === userId || (Array.isArray(t.members) && t.members.includes(userId)); const isMainTribe = (t) => !t.parentTribeId; const filtered = tribes.filter(t => { return ( @@ -206,6 +221,10 @@ exports.tribesView = async (tribes, filter, tribeId, query = {}, allTribes = nul br, input({ type: 'text', name: 'location', id: 'location', placeholder: i18n.tribeLocationPlaceholder, value: tribeToEdit.location || '' }), br, + label(i18n.mapLocationTitle || 'Map Location'), + br, + input({ type: 'text', name: 'mapUrl', placeholder: i18n.mapUrlPlaceholder || '/maps/MAP_ID', value: tribeToEdit.mapUrl || '' }), + br, label({ for: 'image' }, i18n.tribeImageLabel), br, input({ type: 'file', name: 'image', id: 'image', accept: 'image/*' }), @@ -251,7 +270,10 @@ exports.tribesView = async (tribes, filter, tribeId, query = {}, allTribes = nul parentTribe ? div({ class: 'tribe-card-parent' }, span({ class: 'tribe-info-label' }, i18n.tribeMainTribeLabel || 'MAIN TRIBE'), - a({ href: `/tribe/${encodeURIComponent(parentTribe.id)}`, class: 'tribe-parent-card-link' }, parentTribe.title) + a({ href: `/tribe/${encodeURIComponent(parentTribe.id)}`, class: 'tribe-parent-card-link' }, + renderMediaBlob(parentTribe.image, '/assets/images/default-tribe.png', { class: 'tribe-parent-image', alt: parentTribe.title }), + span({ class: 'tribe-parent-card-title' }, parentTribe.title) + ) ) : null, div({ class: 'tribe-card-image-wrapper' }, @@ -265,7 +287,7 @@ exports.tribesView = async (tribes, filter, tribeId, query = {}, allTribes = nul : null ), div({ class: 'tribe-card-body' }, - h2({ class: 'tribe-card-title' }, a({ href: `/tribe/${encodeURIComponent(t.id)}` }, t.title)), + h2({ class: 'tribe-card-title' }, a({ href: `/tribe/${encodeURIComponent(t.id)}` }, t.isAnonymous ? "🔒 " : "", t.title)), t.description ? p({ class: 'tribe-card-description' }, ...renderUrl(t.description)) : null, table({ class: 'tribe-info-table' }, t.location ? tr( diff --git a/nodejs-project/nodejs-project/src/views/video_view.js b/nodejs-project/nodejs-project/src/views/video_view.js index 88843dce..aab8f286 100644 --- a/nodejs-project/nodejs-project/src/views/video_view.js +++ b/nodejs-project/nodejs-project/src/views/video_view.js @@ -19,7 +19,8 @@ const { const moment = require("../server/node_modules/moment"); const { template, i18n } = require("./main_views"); const { config } = require("../server/SSB_server.js"); -const { renderUrl } = require("../backend/renderUrl"); +const { renderUrl } = require("../backend/renderUrl") +const { renderMapLocationVisitLabel } = require("./maps_view"); const opinionCategories = require("../backend/opinion_categories"); const userId = config.keys.id; @@ -138,7 +139,7 @@ const renderVideoCommentsSection = (videoId, comments = [], returnTo = null) => class: "comment-textarea", placeholder: i18n.voteNewCommentPlaceholder }), - div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob", accept: "image/*,audio/*,video/*,application/pdf" })), + div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob" })), br(), button({ type: "submit", class: "comment-submit-btn" }, i18n.voteNewCommentButton) ) @@ -205,8 +206,6 @@ const renderVideoList = (videos, filter, params = {}) => { ), title ? h2(title) : null, renderVideoPlayer(videoObj), - safeText(videoObj.description) ? p(...renderUrl(videoObj.description)) : null, - renderTags(videoObj.tags), div( { class: "card-comments-summary" }, span({ class: "card-label" }, i18n.voteCommentsLabel + ":"), @@ -222,6 +221,7 @@ const renderVideoList = (videos, filter, params = {}) => { button({ type: "submit", class: "filter-btn" }, i18n.voteCommentsForumButton) ) ), + renderMapLocationVisitLabel(videoObj.mapUrl), br(), (() => { const createdTs = videoObj.createdAt ? new Date(videoObj.createdAt).getTime() : NaN; @@ -239,22 +239,7 @@ const renderVideoList = (videos, filter, params = {}) => { ) : null ); - })(), - div( - { class: "voting-buttons" }, - opinionCategories.map((category) => - form( - { method: "POST", action: `/videos/opinions/${encodeURIComponent(videoObj.key)}/${category}` }, - input({ type: "hidden", name: "returnTo", value: returnTo }), - button( - { type: "submit", class: "vote-btn" }, - `${i18n[`vote${category.charAt(0).toUpperCase() + category.slice(1)}`] || category} [${ - videoObj.opinions?.[category] || 0 - }]` - ) - ) - ) - ) + })() ); }) : p(params.q ? i18n.videoNoMatch : i18n.noVideos); @@ -274,9 +259,21 @@ const renderVideoForm = (filter, videoId, videoToEdit, params = {}) => { input({ type: "hidden", name: "returnTo", value: returnTo }), span(i18n.videoFileLabel), br(), - input({ type: "file", name: "video", accept: "video/*", required: filter !== "edit" }), + input({ type: "file", name: "video", required: filter !== "edit" }), br(), br(), + span(i18n.videoTitleLabel), + br(), + input({ type: "text", name: "title", placeholder: i18n.videoTitlePlaceholder, value: videoToEdit?.title || "" }), + br(), + span(i18n.videoDescriptionLabel), + br(), + textarea({ name: "description", placeholder: i18n.videoDescriptionPlaceholder, rows: "4" }, videoToEdit?.description || ""), + br(), + span(i18n.mapLocationTitle || "Map Location"), + br(), + input({ type: "text", name: "mapUrl", placeholder: i18n.mapUrlPlaceholder || "/maps/MAP_ID", value: videoToEdit?.mapUrl || "" }), + br(), span(i18n.videoTagsLabel), br(), input({ @@ -287,16 +284,6 @@ const renderVideoForm = (filter, videoId, videoToEdit, params = {}) => { }), br(), br(), - span(i18n.videoTitleLabel), - br(), - input({ type: "text", name: "title", placeholder: i18n.videoTitlePlaceholder, value: videoToEdit?.title || "" }), - br(), - br(), - span(i18n.videoDescriptionLabel), - br(), - textarea({ name: "description", placeholder: i18n.videoDescriptionPlaceholder, rows: "4" }, videoToEdit?.description || ""), - br(), - br(), button({ type: "submit" }, filter === "edit" ? i18n.videoUpdateButton : i18n.videoCreateButton) ) ); @@ -426,6 +413,8 @@ exports.singleVideoView = async (videoObj, filter = "all", comments = [], params safeText(videoObj.description) ? p(...renderUrl(videoObj.description)) : null, renderTags(videoObj.tags), br(), + renderMapLocationVisitLabel(videoObj.mapUrl), + br(), (() => { const createdTs = videoObj.createdAt ? new Date(videoObj.createdAt).getTime() : NaN; const updatedTs = videoObj.updatedAt ? new Date(videoObj.updatedAt).getTime() : NaN; @@ -450,7 +439,7 @@ exports.singleVideoView = async (videoObj, filter = "all", comments = [], params { method: "POST", action: `/videos/opinions/${encodeURIComponent(videoObj.key)}/${category}` }, input({ type: "hidden", name: "returnTo", value: returnTo }), button( - { type: "submit", class: "vote-btn" }, + { class: "vote-btn" }, `${i18n[`vote${category.charAt(0).toUpperCase() + category.slice(1)}`] || category} [${ videoObj.opinions?.[category] || 0 }]` diff --git a/nodejs-project/nodejs-project/src/views/vote_view.js b/nodejs-project/nodejs-project/src/views/vote_view.js index c015ab75..8b129424 100644 --- a/nodejs-project/nodejs-project/src/views/vote_view.js +++ b/nodejs-project/nodejs-project/src/views/vote_view.js @@ -260,7 +260,7 @@ const renderCommentsSection = (voteId, comments, activeFilter) => { class: "comment-textarea", placeholder: i18n.voteNewCommentPlaceholder }), - div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob", accept: "image/*,audio/*,video/*,application/pdf" })), + div({ class: "comment-file-upload" }, label(i18n.uploadMedia), input({ type: "file", name: "blob" })), br(), button({ type: "submit", class: "comment-submit-btn" }, i18n.voteNewCommentButton) )