mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-11-28 20:13:24 +00:00
Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8238f84ac7 | ||
|
|
1cf19b2a50 | ||
|
|
e8543fd2f8 | ||
|
|
c7f360e1fa | ||
|
|
a2b83f7f0c | ||
|
|
ae5689a403 | ||
|
|
c46af1d286 | ||
|
|
d17ba2168c | ||
|
|
74e0b85748 | ||
|
|
81d3495b65 | ||
|
|
70b9ec99ba | ||
|
|
7147d79166 | ||
|
|
872f7dcf48 | ||
|
|
02b450325e | ||
|
|
136bc4cbb9 | ||
|
|
dab49df9aa | ||
|
|
6286087f3e |
39
CHANGELOG.md
39
CHANGELOG.md
@@ -2,6 +2,45 @@
|
||||
|
||||
<!-- changelog -->
|
||||
|
||||
## [v1.83.1](https://github.com/wanderer-industries/wanderer/compare/v1.83.0...v1.83.1) (2025-10-21)
|
||||
|
||||
|
||||
|
||||
|
||||
### Bug Fixes:
|
||||
|
||||
* Kills: Fixed zkb links (added following '/').
|
||||
|
||||
## [v1.83.0](https://github.com/wanderer-industries/wanderer/compare/v1.82.3...v1.83.0) (2025-10-21)
|
||||
|
||||
|
||||
|
||||
|
||||
### Features:
|
||||
|
||||
* Core: Added map roles settings for copy/paste
|
||||
|
||||
* Core: Added map roles settings for copy/paste
|
||||
|
||||
### Bug Fixes:
|
||||
|
||||
* Map: Copy-Paste restriction: support from FE side - fixed problem with incorrect disabling copy and paste buttons
|
||||
|
||||
* Map: Copy-Paste restriction: support from FE side - removed unnecessary constant
|
||||
|
||||
* Map: Copy-Paste restriction: support from FE side
|
||||
|
||||
* Core: Added Eve data downloaded files cleanup logic
|
||||
|
||||
## [v1.82.3](https://github.com/wanderer-industries/wanderer/compare/v1.82.2...v1.82.3) (2025-10-21)
|
||||
|
||||
|
||||
|
||||
|
||||
### Bug Fixes:
|
||||
|
||||
* Map: Fix system static info - add source region for U319 from Null-sec
|
||||
|
||||
## [v1.82.2](https://github.com/wanderer-industries/wanderer/compare/v1.82.1...v1.82.2) (2025-10-21)
|
||||
|
||||
|
||||
|
||||
@@ -118,7 +118,11 @@ export const useContextMenuSystemItems = ({
|
||||
});
|
||||
|
||||
if (isShowPingBtn) {
|
||||
return <WdMenuItem icon={iconClasses}>{!hasPing ? 'Ping: RALLY' : 'Cancel: RALLY'}</WdMenuItem>;
|
||||
return (
|
||||
<WdMenuItem icon={iconClasses} className="!ml-[-2px]">
|
||||
{!hasPing ? 'Ping: RALLY' : 'Cancel: RALLY'}
|
||||
</WdMenuItem>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
@@ -126,7 +130,7 @@ export const useContextMenuSystemItems = ({
|
||||
infoTitle="Locked. Ping can be set only for one system."
|
||||
infoClass="pi-lock text-stone-500 mr-[12px]"
|
||||
>
|
||||
<WdMenuItem disabled icon={iconClasses}>
|
||||
<WdMenuItem disabled icon={iconClasses} className="!ml-[-2px]">
|
||||
{!hasPing ? 'Ping: RALLY' : 'Cancel: RALLY'}
|
||||
</WdMenuItem>
|
||||
</MenuItemWithInfo>
|
||||
|
||||
@@ -2,6 +2,10 @@ import React, { RefObject, useMemo } from 'react';
|
||||
import { ContextMenu } from 'primereact/contextmenu';
|
||||
import { PrimeIcons } from 'primereact/api';
|
||||
import { MenuItem } from 'primereact/menuitem';
|
||||
import { checkPermissions } from '@/hooks/Mapper/components/map/helpers';
|
||||
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
||||
import { MenuItemWithInfo, WdMenuItem } from '@/hooks/Mapper/components/ui-kit';
|
||||
import clsx from 'clsx';
|
||||
|
||||
export interface ContextMenuSystemMultipleProps {
|
||||
contextMenuRef: RefObject<ContextMenu>;
|
||||
@@ -14,20 +18,44 @@ export const ContextMenuSystemMultiple: React.FC<ContextMenuSystemMultipleProps>
|
||||
onDeleteSystems,
|
||||
onCopySystems,
|
||||
}) => {
|
||||
const {
|
||||
data: { options, userPermissions },
|
||||
} = useMapRootState();
|
||||
|
||||
const items: MenuItem[] = useMemo(() => {
|
||||
const allowCopy = checkPermissions(userPermissions, options.allowed_copy_for);
|
||||
return [
|
||||
{
|
||||
label: 'Delete',
|
||||
icon: clsx(PrimeIcons.TRASH, 'text-red-400'),
|
||||
command: onDeleteSystems,
|
||||
},
|
||||
{ separator: true },
|
||||
{
|
||||
label: 'Copy',
|
||||
icon: PrimeIcons.COPY,
|
||||
command: onCopySystems,
|
||||
},
|
||||
{
|
||||
label: 'Delete',
|
||||
icon: PrimeIcons.TRASH,
|
||||
command: onDeleteSystems,
|
||||
disabled: !allowCopy,
|
||||
template: () => {
|
||||
if (allowCopy) {
|
||||
return <WdMenuItem icon="pi pi-copy">Copy</WdMenuItem>;
|
||||
}
|
||||
|
||||
return (
|
||||
<MenuItemWithInfo
|
||||
infoTitle="Action is blocked because you don’t have permission to Copy."
|
||||
infoClass={clsx(PrimeIcons.QUESTION_CIRCLE, 'text-stone-500 mr-[12px]')}
|
||||
tooltipWrapperClassName="flex"
|
||||
>
|
||||
<WdMenuItem disabled icon="pi pi-copy">
|
||||
Copy
|
||||
</WdMenuItem>
|
||||
</MenuItemWithInfo>
|
||||
);
|
||||
},
|
||||
},
|
||||
];
|
||||
}, [onCopySystems, onDeleteSystems]);
|
||||
}, [onCopySystems, onDeleteSystems, options, userPermissions]);
|
||||
|
||||
return (
|
||||
<>
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import { useCallback, useRef } from 'react';
|
||||
import { LayoutEventBlocker, TooltipPosition, WdImageSize, WdImgButton } from '@/hooks/Mapper/components/ui-kit';
|
||||
import { ANOIK_ICON, DOTLAN_ICON, ZKB_ICON } from '@/hooks/Mapper/icons';
|
||||
import { useCallback, useRef } from 'react';
|
||||
|
||||
import classes from './FastSystemActions.module.scss';
|
||||
import clsx from 'clsx';
|
||||
import { PrimeIcons } from 'primereact/api';
|
||||
import classes from './FastSystemActions.module.scss';
|
||||
|
||||
export interface FastSystemActionsProps {
|
||||
systemId: string;
|
||||
@@ -27,7 +27,7 @@ export const FastSystemActions = ({
|
||||
ref.current = { systemId, systemName, regionName, isWH };
|
||||
|
||||
const handleOpenZKB = useCallback(
|
||||
() => window.open(`https://zkillboard.com/system/${ref.current.systemId}`, '_blank'),
|
||||
() => window.open(`https://zkillboard.com/system/${ref.current.systemId}/`, '_blank'),
|
||||
[],
|
||||
);
|
||||
|
||||
|
||||
@@ -3,6 +3,10 @@ import { ContextMenu } from 'primereact/contextmenu';
|
||||
import { PrimeIcons } from 'primereact/api';
|
||||
import { MenuItem } from 'primereact/menuitem';
|
||||
import { PasteSystemsAndConnections } from '@/hooks/Mapper/components/map/components';
|
||||
import { useMapState } from '@/hooks/Mapper/components/map/MapProvider.tsx';
|
||||
import { checkPermissions } from '@/hooks/Mapper/components/map/helpers';
|
||||
import { MenuItemWithInfo, WdMenuItem } from '@/hooks/Mapper/components/ui-kit';
|
||||
import clsx from 'clsx';
|
||||
|
||||
export interface ContextMenuRootProps {
|
||||
contextMenuRef: RefObject<ContextMenu>;
|
||||
@@ -17,7 +21,13 @@ export const ContextMenuRoot: React.FC<ContextMenuRootProps> = ({
|
||||
onPasteSystemsAnsConnections,
|
||||
pasteSystemsAndConnections,
|
||||
}) => {
|
||||
const {
|
||||
data: { options, userPermissions },
|
||||
} = useMapState();
|
||||
|
||||
const items: MenuItem[] = useMemo(() => {
|
||||
const allowPaste = checkPermissions(userPermissions, options.allowed_paste_for);
|
||||
|
||||
return [
|
||||
{
|
||||
label: 'Add System',
|
||||
@@ -27,14 +37,35 @@ export const ContextMenuRoot: React.FC<ContextMenuRootProps> = ({
|
||||
...(pasteSystemsAndConnections != null
|
||||
? [
|
||||
{
|
||||
label: 'Paste',
|
||||
icon: 'pi pi-clipboard',
|
||||
disabled: !allowPaste,
|
||||
command: onPasteSystemsAnsConnections,
|
||||
template: () => {
|
||||
if (allowPaste) {
|
||||
return (
|
||||
<WdMenuItem icon="pi pi-clipboard">
|
||||
Paste
|
||||
</WdMenuItem>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<MenuItemWithInfo
|
||||
infoTitle="Action is blocked because you don’t have permission to Paste."
|
||||
infoClass={clsx(PrimeIcons.QUESTION_CIRCLE, 'text-stone-500 mr-[12px]')}
|
||||
tooltipWrapperClassName="flex"
|
||||
>
|
||||
<WdMenuItem disabled icon="pi pi-clipboard">
|
||||
Paste
|
||||
</WdMenuItem>
|
||||
</MenuItemWithInfo>
|
||||
);
|
||||
},
|
||||
},
|
||||
]
|
||||
: []),
|
||||
];
|
||||
}, [onAddSystem, onPasteSystemsAnsConnections, pasteSystemsAndConnections]);
|
||||
}, [userPermissions, options, onAddSystem, pasteSystemsAndConnections, onPasteSystemsAnsConnections]);
|
||||
|
||||
return (
|
||||
<>
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
import { UserPermission, UserPermissions } from '@/hooks/Mapper/types';
|
||||
|
||||
export const checkPermissions = (permissions: Partial<UserPermissions>, targetPermission: UserPermission) => {
|
||||
return targetPermission != null && permissions[targetPermission];
|
||||
};
|
||||
@@ -4,3 +4,4 @@ export * from './getSystemClassStyles';
|
||||
export * from './getShapeClass';
|
||||
export * from './getBackgroundClass';
|
||||
export * from './prepareUnsplashedChunks';
|
||||
export * from './checkPermissions';
|
||||
|
||||
@@ -38,6 +38,8 @@ export const useMapInit = () => {
|
||||
user_characters,
|
||||
present_characters,
|
||||
hubs,
|
||||
options,
|
||||
user_permissions,
|
||||
}: CommandInit) => {
|
||||
const { update } = ref.current;
|
||||
|
||||
@@ -63,6 +65,14 @@ export const useMapInit = () => {
|
||||
updateData.hubs = hubs;
|
||||
}
|
||||
|
||||
if (options) {
|
||||
updateData.options = options;
|
||||
}
|
||||
|
||||
if (options) {
|
||||
updateData.userPermissions = user_permissions;
|
||||
}
|
||||
|
||||
if (systems) {
|
||||
updateData.systems = systems;
|
||||
}
|
||||
|
||||
@@ -49,87 +49,91 @@ export const useMapHandlers = (ref: ForwardedRef<MapHandlers>, onSelectionChange
|
||||
const { charactersUpdated, presentCharacters, characterAdded, characterRemoved, characterUpdated } =
|
||||
useCommandsCharacters();
|
||||
|
||||
useImperativeHandle(ref, () => {
|
||||
return {
|
||||
command(type, data) {
|
||||
switch (type) {
|
||||
case Commands.init:
|
||||
mapInit(data as CommandInit);
|
||||
break;
|
||||
case Commands.addSystems:
|
||||
setTimeout(() => mapAddSystems(data as CommandAddSystems), 100);
|
||||
break;
|
||||
case Commands.updateSystems:
|
||||
mapUpdateSystems(data as CommandUpdateSystems);
|
||||
break;
|
||||
case Commands.removeSystems:
|
||||
setTimeout(() => removeSystems(data as CommandRemoveSystems), 100);
|
||||
break;
|
||||
case Commands.addConnections:
|
||||
setTimeout(() => addConnections(data as CommandAddConnections), 100);
|
||||
break;
|
||||
case Commands.removeConnections:
|
||||
setTimeout(() => removeConnections(data as CommandRemoveConnections), 100);
|
||||
break;
|
||||
case Commands.charactersUpdated:
|
||||
charactersUpdated(data as CommandCharactersUpdated);
|
||||
break;
|
||||
case Commands.characterAdded:
|
||||
characterAdded(data as CommandCharacterAdded);
|
||||
break;
|
||||
case Commands.characterRemoved:
|
||||
characterRemoved(data as CommandCharacterRemoved);
|
||||
break;
|
||||
case Commands.characterUpdated:
|
||||
characterUpdated(data as CommandCharacterUpdated);
|
||||
break;
|
||||
case Commands.presentCharacters:
|
||||
presentCharacters(data as CommandPresentCharacters);
|
||||
break;
|
||||
case Commands.updateConnection:
|
||||
updateConnection(data as CommandUpdateConnection);
|
||||
break;
|
||||
case Commands.mapUpdated:
|
||||
mapUpdated(data as CommandMapUpdated);
|
||||
break;
|
||||
case Commands.killsUpdated:
|
||||
killsUpdated(data as CommandKillsUpdated);
|
||||
break;
|
||||
useImperativeHandle(
|
||||
ref,
|
||||
() => {
|
||||
return {
|
||||
command(type, data) {
|
||||
switch (type) {
|
||||
case Commands.init:
|
||||
mapInit(data as CommandInit);
|
||||
break;
|
||||
case Commands.addSystems:
|
||||
setTimeout(() => mapAddSystems(data as CommandAddSystems), 100);
|
||||
break;
|
||||
case Commands.updateSystems:
|
||||
mapUpdateSystems(data as CommandUpdateSystems);
|
||||
break;
|
||||
case Commands.removeSystems:
|
||||
setTimeout(() => removeSystems(data as CommandRemoveSystems), 100);
|
||||
break;
|
||||
case Commands.addConnections:
|
||||
setTimeout(() => addConnections(data as CommandAddConnections), 100);
|
||||
break;
|
||||
case Commands.removeConnections:
|
||||
setTimeout(() => removeConnections(data as CommandRemoveConnections), 100);
|
||||
break;
|
||||
case Commands.charactersUpdated:
|
||||
charactersUpdated(data as CommandCharactersUpdated);
|
||||
break;
|
||||
case Commands.characterAdded:
|
||||
characterAdded(data as CommandCharacterAdded);
|
||||
break;
|
||||
case Commands.characterRemoved:
|
||||
characterRemoved(data as CommandCharacterRemoved);
|
||||
break;
|
||||
case Commands.characterUpdated:
|
||||
characterUpdated(data as CommandCharacterUpdated);
|
||||
break;
|
||||
case Commands.presentCharacters:
|
||||
presentCharacters(data as CommandPresentCharacters);
|
||||
break;
|
||||
case Commands.updateConnection:
|
||||
updateConnection(data as CommandUpdateConnection);
|
||||
break;
|
||||
case Commands.mapUpdated:
|
||||
mapUpdated(data as CommandMapUpdated);
|
||||
break;
|
||||
case Commands.killsUpdated:
|
||||
killsUpdated(data as CommandKillsUpdated);
|
||||
break;
|
||||
|
||||
case Commands.centerSystem:
|
||||
setTimeout(() => {
|
||||
const systemId = `${data}`;
|
||||
centerSystem(systemId as CommandSelectSystem);
|
||||
}, 100);
|
||||
break;
|
||||
case Commands.centerSystem:
|
||||
setTimeout(() => {
|
||||
const systemId = `${data}`;
|
||||
centerSystem(systemId as CommandSelectSystem);
|
||||
}, 100);
|
||||
break;
|
||||
|
||||
case Commands.selectSystem:
|
||||
selectSystems({ systems: [data as string], delay: 500 });
|
||||
break;
|
||||
case Commands.selectSystem:
|
||||
selectSystems({ systems: [data as string], delay: 500 });
|
||||
break;
|
||||
|
||||
case Commands.selectSystems:
|
||||
selectSystems(data as CommandSelectSystems);
|
||||
break;
|
||||
case Commands.selectSystems:
|
||||
selectSystems(data as CommandSelectSystems);
|
||||
break;
|
||||
|
||||
case Commands.pingAdded:
|
||||
case Commands.pingCancelled:
|
||||
case Commands.routes:
|
||||
case Commands.signaturesUpdated:
|
||||
case Commands.linkSignatureToSystem:
|
||||
case Commands.detailedKillsUpdated:
|
||||
case Commands.characterActivityData:
|
||||
case Commands.trackingCharactersData:
|
||||
case Commands.updateActivity:
|
||||
case Commands.updateTracking:
|
||||
case Commands.userSettingsUpdated:
|
||||
// do nothing
|
||||
break;
|
||||
case Commands.pingAdded:
|
||||
case Commands.pingCancelled:
|
||||
case Commands.routes:
|
||||
case Commands.signaturesUpdated:
|
||||
case Commands.linkSignatureToSystem:
|
||||
case Commands.detailedKillsUpdated:
|
||||
case Commands.characterActivityData:
|
||||
case Commands.trackingCharactersData:
|
||||
case Commands.updateActivity:
|
||||
case Commands.updateTracking:
|
||||
case Commands.userSettingsUpdated:
|
||||
// do nothing
|
||||
break;
|
||||
|
||||
default:
|
||||
console.warn(`Map handlers: Unknown command: ${type}`, data);
|
||||
break;
|
||||
}
|
||||
},
|
||||
};
|
||||
}, []);
|
||||
default:
|
||||
console.warn(`Map handlers: Unknown command: ${type}`, data);
|
||||
break;
|
||||
}
|
||||
},
|
||||
};
|
||||
},
|
||||
[],
|
||||
);
|
||||
};
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
import { Widget } from '@/hooks/Mapper/components/mapInterface/components';
|
||||
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
||||
import { SystemSettingsDialog } from '@/hooks/Mapper/components/mapInterface/components/SystemSettingsDialog/SystemSettingsDialog.tsx';
|
||||
import { LayoutEventBlocker, SystemView, TooltipPosition, WdImgButton } from '@/hooks/Mapper/components/ui-kit';
|
||||
import { SystemInfoContent } from './SystemInfoContent';
|
||||
import { ANOIK_ICON, DOTLAN_ICON, ZKB_ICON } from '@/hooks/Mapper/icons';
|
||||
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
||||
import { getSystemStaticInfo } from '@/hooks/Mapper/mapRootProvider/hooks/useLoadSystemStatic';
|
||||
import { PrimeIcons } from 'primereact/api';
|
||||
import { useCallback, useState } from 'react';
|
||||
import { SystemSettingsDialog } from '@/hooks/Mapper/components/mapInterface/components/SystemSettingsDialog/SystemSettingsDialog.tsx';
|
||||
import { ANOIK_ICON, DOTLAN_ICON, ZKB_ICON } from '@/hooks/Mapper/icons';
|
||||
import { getSystemStaticInfo } from '@/hooks/Mapper/mapRootProvider/hooks/useLoadSystemStatic';
|
||||
import { SystemInfoContent } from './SystemInfoContent';
|
||||
|
||||
export const SystemInfo = () => {
|
||||
const [visible, setVisible] = useState(false);
|
||||
@@ -48,7 +48,7 @@ export const SystemInfo = () => {
|
||||
</div>
|
||||
|
||||
<LayoutEventBlocker className="flex gap-1 items-center">
|
||||
<a href={`https://zkillboard.com/system/${systemId}`} rel="noreferrer" target="_blank">
|
||||
<a href={`https://zkillboard.com/system/${systemId}/`} rel="noreferrer" target="_blank">
|
||||
<img src={ZKB_ICON} width="14" height="14" className="external-icon" />
|
||||
</a>
|
||||
<a href={`http://anoik.is/systems/${solarSystemName}`} rel="noreferrer" target="_blank">
|
||||
|
||||
@@ -4,8 +4,17 @@ import { WdTooltipWrapper } from '@/hooks/Mapper/components/ui-kit/WdTooltipWrap
|
||||
import { TooltipPosition } from '@/hooks/Mapper/components/ui-kit/WdTooltip';
|
||||
import clsx from 'clsx';
|
||||
|
||||
type MenuItemWithInfoProps = { infoTitle: ReactNode; infoClass?: string } & WithChildren;
|
||||
export const MenuItemWithInfo = ({ children, infoClass, infoTitle }: MenuItemWithInfoProps) => {
|
||||
type MenuItemWithInfoProps = {
|
||||
infoTitle: ReactNode;
|
||||
infoClass?: string;
|
||||
tooltipWrapperClassName?: string;
|
||||
} & WithChildren;
|
||||
export const MenuItemWithInfo = ({
|
||||
children,
|
||||
infoClass,
|
||||
infoTitle,
|
||||
tooltipWrapperClassName,
|
||||
}: MenuItemWithInfoProps) => {
|
||||
return (
|
||||
<div className="flex justify-between w-full h-full items-center">
|
||||
{children}
|
||||
@@ -13,6 +22,7 @@ export const MenuItemWithInfo = ({ children, infoClass, infoTitle }: MenuItemWit
|
||||
content={infoTitle}
|
||||
position={TooltipPosition.top}
|
||||
className="!opacity-100 !pointer-events-auto"
|
||||
wrapperClassName={tooltipWrapperClassName}
|
||||
>
|
||||
<div className={clsx('pi text-orange-400', infoClass)} />
|
||||
</WdTooltipWrapper>
|
||||
|
||||
@@ -1,13 +1,18 @@
|
||||
import { WithChildren } from '@/hooks/Mapper/types/common.ts';
|
||||
import { WithChildren, WithClassName } from '@/hooks/Mapper/types/common.ts';
|
||||
import clsx from 'clsx';
|
||||
|
||||
type WdMenuItemProps = { icon?: string; disabled?: boolean } & WithChildren;
|
||||
export const WdMenuItem = ({ children, icon, disabled }: WdMenuItemProps) => {
|
||||
type WdMenuItemProps = { icon?: string; disabled?: boolean } & WithChildren & WithClassName;
|
||||
export const WdMenuItem = ({ children, icon, disabled, className }: WdMenuItemProps) => {
|
||||
return (
|
||||
<a
|
||||
className={clsx('flex gap-[6px] w-full h-full items-center px-[12px] !py-0 ml-[-2px]', 'p-menuitem-link', {
|
||||
'p-disabled': disabled,
|
||||
})}
|
||||
className={clsx(
|
||||
'flex gap-[6px] w-full h-full items-center px-[12px] !py-0',
|
||||
'p-menuitem-link',
|
||||
{
|
||||
'p-disabled': disabled,
|
||||
},
|
||||
className,
|
||||
)}
|
||||
>
|
||||
{icon && <div className={clsx('min-w-[20px]', icon)}></div>}
|
||||
<div className="w-full">{children}</div>
|
||||
|
||||
@@ -10,6 +10,7 @@ export type WdTooltipWrapperProps = {
|
||||
interactive?: boolean;
|
||||
smallPaddings?: boolean;
|
||||
tooltipClassName?: string;
|
||||
wrapperClassName?: string;
|
||||
} & Omit<HTMLProps<HTMLDivElement>, 'content' | 'size'> &
|
||||
Omit<TooltipProps, 'content'>;
|
||||
|
||||
@@ -26,6 +27,7 @@ export const WdTooltipWrapper = forwardRef<WdTooltipHandlers, WdTooltipWrapperPr
|
||||
smallPaddings,
|
||||
size,
|
||||
tooltipClassName,
|
||||
wrapperClassName,
|
||||
...props
|
||||
},
|
||||
forwardedRef,
|
||||
@@ -36,7 +38,7 @@ export const WdTooltipWrapper = forwardRef<WdTooltipHandlers, WdTooltipWrapperPr
|
||||
|
||||
return (
|
||||
<div className={clsx(classes.WdTooltipWrapperRoot, className)} {...props}>
|
||||
{targetSelector ? <>{children}</> : <div className={autoClass}>{children}</div>}
|
||||
{targetSelector ? <>{children}</> : <div className={clsx(autoClass, wrapperClassName)}>{children}</div>}
|
||||
|
||||
<WdTooltip
|
||||
ref={forwardedRef}
|
||||
|
||||
@@ -1,12 +1,5 @@
|
||||
import { PingsPlacement } from '@/hooks/Mapper/mapRootProvider/types.ts';
|
||||
|
||||
export enum SESSION_KEY {
|
||||
viewPort = 'viewPort',
|
||||
windows = 'windows',
|
||||
windowsVisible = 'windowsVisible',
|
||||
routes = 'routes',
|
||||
}
|
||||
|
||||
export const SYSTEM_FOCUSED_LIFETIME = 10000;
|
||||
|
||||
export const GRADIENT_MENU_ACTIVE_CLASSES = 'bg-gradient-to-br from-transparent/10 to-fuchsia-300/10';
|
||||
|
||||
@@ -9,3 +9,4 @@ export * from './connectionPassages';
|
||||
export * from './permissions';
|
||||
export * from './comment';
|
||||
export * from './ping';
|
||||
export * from './options';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { CommentType, PingData, SystemSignature, UserPermissions } from '@/hooks/Mapper/types';
|
||||
import { CommentType, MapOptions, PingData, SystemSignature, UserPermissions } from '@/hooks/Mapper/types';
|
||||
import { ActivitySummary, CharacterTypeRaw, TrackingCharacter } from '@/hooks/Mapper/types/character.ts';
|
||||
import { SolarSystemConnection } from '@/hooks/Mapper/types/connection.ts';
|
||||
import { DetailedKill, Kill } from '@/hooks/Mapper/types/kills.ts';
|
||||
@@ -94,7 +94,7 @@ export type CommandInit = {
|
||||
hubs: string[];
|
||||
user_hubs: string[];
|
||||
routes: RoutesList;
|
||||
options: Record<string, string | boolean>;
|
||||
options: MapOptions;
|
||||
reset?: boolean;
|
||||
is_subscription_active?: boolean;
|
||||
main_character_eve_id?: string | null;
|
||||
|
||||
@@ -4,7 +4,7 @@ import { CharacterTypeRaw } from '@/hooks/Mapper/types/character.ts';
|
||||
import { SolarSystemRawType } from '@/hooks/Mapper/types/system.ts';
|
||||
import { RoutesList } from '@/hooks/Mapper/types/routes.ts';
|
||||
import { SolarSystemConnection } from '@/hooks/Mapper/types/connection.ts';
|
||||
import { PingData, UserPermissions } from '@/hooks/Mapper/types';
|
||||
import { MapOptions, PingData, UserPermissions } from '@/hooks/Mapper/types';
|
||||
import { SystemSignature } from '@/hooks/Mapper/types/signatures';
|
||||
|
||||
export type MapUnionTypes = {
|
||||
@@ -23,7 +23,7 @@ export type MapUnionTypes = {
|
||||
kills: Record<number, number>;
|
||||
connections: SolarSystemConnection[];
|
||||
userPermissions: Partial<UserPermissions>;
|
||||
options: Record<string, string | boolean>;
|
||||
options: MapOptions;
|
||||
isSubscriptionActive: boolean;
|
||||
|
||||
mainCharacterEveId: string | null;
|
||||
|
||||
14
assets/js/hooks/Mapper/types/options.ts
Normal file
14
assets/js/hooks/Mapper/types/options.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { UserPermission } from '@/hooks/Mapper/types/permissions.ts';
|
||||
|
||||
export type StringBoolean = 'true' | 'false';
|
||||
|
||||
export type MapOptions = {
|
||||
allowed_copy_for: UserPermission;
|
||||
allowed_paste_for: UserPermission;
|
||||
layout: string;
|
||||
restrict_offline_showing: StringBoolean;
|
||||
show_linked_signature_id: StringBoolean;
|
||||
show_linked_signature_id_temp_name: StringBoolean;
|
||||
show_temp_system_name: StringBoolean;
|
||||
store_custom_labels: StringBoolean;
|
||||
};
|
||||
@@ -116,7 +116,7 @@ defmodule WandererApp.CachedInfo do
|
||||
def get_solar_system_jumps() do
|
||||
case WandererApp.Cache.lookup(:solar_system_jumps) do
|
||||
{:ok, nil} ->
|
||||
data = WandererApp.EveDataService.get_solar_system_jumps_data()
|
||||
{:ok, data} = WandererApp.Api.MapSolarSystemJumps.read()
|
||||
|
||||
cache_items(data, :solar_system_jumps)
|
||||
|
||||
|
||||
@@ -38,32 +38,8 @@ defmodule WandererApp.EveDataService do
|
||||
|> Ash.bulk_create(WandererApp.Api.MapSolarSystemJumps, :create)
|
||||
|
||||
Logger.info("MapSolarSystemJumps updated!")
|
||||
end
|
||||
|
||||
def download_files() do
|
||||
tasks =
|
||||
@dump_file_names
|
||||
|> Enum.map(fn file_name ->
|
||||
Task.async(fn ->
|
||||
download_file(file_name)
|
||||
end)
|
||||
end)
|
||||
|
||||
Task.await_many(tasks, :timer.minutes(30))
|
||||
end
|
||||
|
||||
def download_file(file_name) do
|
||||
url = "#{@eve_db_dump_url}/#{file_name}"
|
||||
Logger.info("Downloading file from #{url}")
|
||||
|
||||
download_path = Path.join([:code.priv_dir(:wanderer_app), "repo", "data", file_name])
|
||||
|
||||
Req.get!(url, raw: true, into: File.stream!(download_path, [:write])).body
|
||||
|> Stream.run()
|
||||
|
||||
Logger.info("File downloaded successfully to #{download_path}")
|
||||
|
||||
:ok
|
||||
cleanup_files()
|
||||
end
|
||||
|
||||
def load_wormhole_types() do
|
||||
@@ -163,7 +139,57 @@ defmodule WandererApp.EveDataService do
|
||||
data
|
||||
end
|
||||
|
||||
def load_map_constellations() do
|
||||
defp cleanup_files() do
|
||||
tasks =
|
||||
@dump_file_names
|
||||
|> Enum.map(fn file_name ->
|
||||
Task.async(fn ->
|
||||
cleanup_file(file_name)
|
||||
end)
|
||||
end)
|
||||
|
||||
Task.await_many(tasks, :timer.minutes(30))
|
||||
end
|
||||
|
||||
defp cleanup_file(file_name) do
|
||||
Logger.info("Cleaning file: #{file_name}")
|
||||
|
||||
download_path = Path.join([:code.priv_dir(:wanderer_app), "repo", "data", file_name])
|
||||
|
||||
:ok = File.rm(download_path)
|
||||
|
||||
Logger.info("File removed successfully to #{download_path}")
|
||||
|
||||
:ok
|
||||
end
|
||||
|
||||
defp download_files() do
|
||||
tasks =
|
||||
@dump_file_names
|
||||
|> Enum.map(fn file_name ->
|
||||
Task.async(fn ->
|
||||
download_file(file_name)
|
||||
end)
|
||||
end)
|
||||
|
||||
Task.await_many(tasks, :timer.minutes(30))
|
||||
end
|
||||
|
||||
defp download_file(file_name) do
|
||||
url = "#{@eve_db_dump_url}/#{file_name}"
|
||||
Logger.info("Downloading file from #{url}")
|
||||
|
||||
download_path = Path.join([:code.priv_dir(:wanderer_app), "repo", "data", file_name])
|
||||
|
||||
Req.get!(url, raw: true, into: File.stream!(download_path, [:write])).body
|
||||
|> Stream.run()
|
||||
|
||||
Logger.info("File downloaded successfully to #{download_path}")
|
||||
|
||||
:ok
|
||||
end
|
||||
|
||||
defp load_map_constellations() do
|
||||
WandererApp.Utils.CSVUtil.csv_row_to_table_record(
|
||||
"#{:code.priv_dir(:wanderer_app)}/repo/data/mapConstellations.csv",
|
||||
fn row ->
|
||||
@@ -175,7 +201,7 @@ defmodule WandererApp.EveDataService do
|
||||
)
|
||||
end
|
||||
|
||||
def load_map_regions() do
|
||||
defp load_map_regions() do
|
||||
WandererApp.Utils.CSVUtil.csv_row_to_table_record(
|
||||
"#{:code.priv_dir(:wanderer_app)}/repo/data/mapRegions.csv",
|
||||
fn row ->
|
||||
@@ -187,7 +213,7 @@ defmodule WandererApp.EveDataService do
|
||||
)
|
||||
end
|
||||
|
||||
def load_map_location_wormhole_classes() do
|
||||
defp load_map_location_wormhole_classes() do
|
||||
WandererApp.Utils.CSVUtil.csv_row_to_table_record(
|
||||
"#{:code.priv_dir(:wanderer_app)}/repo/data/mapLocationWormholeClasses.csv",
|
||||
fn row ->
|
||||
@@ -199,7 +225,7 @@ defmodule WandererApp.EveDataService do
|
||||
)
|
||||
end
|
||||
|
||||
def load_inv_groups() do
|
||||
defp load_inv_groups() do
|
||||
WandererApp.Utils.CSVUtil.csv_row_to_table_record(
|
||||
"#{:code.priv_dir(:wanderer_app)}/repo/data/invGroups.csv",
|
||||
fn row ->
|
||||
@@ -212,7 +238,7 @@ defmodule WandererApp.EveDataService do
|
||||
)
|
||||
end
|
||||
|
||||
def get_db_data() do
|
||||
defp get_db_data() do
|
||||
map_constellations = load_map_constellations()
|
||||
map_regions = load_map_regions()
|
||||
map_location_wormhole_classes = load_map_location_wormhole_classes()
|
||||
@@ -296,7 +322,7 @@ defmodule WandererApp.EveDataService do
|
||||
)
|
||||
end
|
||||
|
||||
def get_ship_types_data() do
|
||||
defp get_ship_types_data() do
|
||||
inv_groups = load_inv_groups()
|
||||
|
||||
ship_type_groups =
|
||||
@@ -331,7 +357,7 @@ defmodule WandererApp.EveDataService do
|
||||
|> Enum.filter(fn t -> t.group_id in ship_type_groups end)
|
||||
end
|
||||
|
||||
def get_solar_system_jumps_data() do
|
||||
defp get_solar_system_jumps_data() do
|
||||
WandererApp.Utils.CSVUtil.csv_row_to_table_record(
|
||||
"#{:code.priv_dir(:wanderer_app)}/repo/data/mapSolarSystemJumps.csv",
|
||||
fn row ->
|
||||
|
||||
@@ -381,7 +381,9 @@ defmodule WandererApp.Map.Server.Impl do
|
||||
show_temp_system_name:
|
||||
options |> Map.get("show_temp_system_name", "false") |> String.to_existing_atom(),
|
||||
restrict_offline_showing:
|
||||
options |> Map.get("restrict_offline_showing", "false") |> String.to_existing_atom()
|
||||
options |> Map.get("restrict_offline_showing", "false") |> String.to_existing_atom(),
|
||||
allowed_copy_for: options |> Map.get("allowed_copy_for", "admin"),
|
||||
allowed_paste_for: options |> Map.get("allowed_paste_for", "member")
|
||||
]
|
||||
end
|
||||
|
||||
|
||||
@@ -7,7 +7,9 @@ defmodule WandererApp.MapRepo do
|
||||
"show_linked_signature_id" => "false",
|
||||
"show_linked_signature_id_temp_name" => "false",
|
||||
"show_temp_system_name" => "false",
|
||||
"restrict_offline_showing" => "false"
|
||||
"restrict_offline_showing" => "false",
|
||||
"allowed_copy_for" => "admin_map",
|
||||
"allowed_paste_for" => "add_system"
|
||||
}
|
||||
|
||||
def get(map_id, relationships \\ []) do
|
||||
@@ -57,7 +59,7 @@ defmodule WandererApp.MapRepo do
|
||||
|> WandererApp.Api.Map.update_options(%{options: Jason.encode!(options)})
|
||||
|
||||
def options_to_form_data(%{options: options} = _map_options) when not is_nil(options),
|
||||
do: {:ok, Jason.decode!(options)}
|
||||
do: {:ok, @default_map_options |> Map.merge(Jason.decode!(options))}
|
||||
|
||||
def options_to_form_data(_), do: {:ok, @default_map_options}
|
||||
|
||||
|
||||
@@ -169,6 +169,16 @@ defmodule WandererAppWeb.MapsLive do
|
||||
layout_options: [
|
||||
{"Left To Right", "left_to_right"},
|
||||
{"Top To Bottom", "top_to_bottom"}
|
||||
],
|
||||
allowed_copy_for_options: [
|
||||
{"Administrators", "admin_map"},
|
||||
{"Managers", "manage_map"},
|
||||
{"Members", "add_system"}
|
||||
],
|
||||
allowed_paste_for_options: [
|
||||
{"Members", "add_system"},
|
||||
{"Administrators", "admin_map"},
|
||||
{"Managers", "manage_map"}
|
||||
]
|
||||
)
|
||||
|> allow_upload(:settings,
|
||||
@@ -443,7 +453,9 @@ defmodule WandererAppWeb.MapsLive do
|
||||
"show_linked_signature_id",
|
||||
"show_linked_signature_id_temp_name",
|
||||
"show_temp_system_name",
|
||||
"restrict_offline_showing"
|
||||
"restrict_offline_showing",
|
||||
"allowed_copy_for",
|
||||
"allowed_paste_for"
|
||||
])
|
||||
|
||||
{:ok, updated_map} = WandererApp.MapRepo.update_options(map, options)
|
||||
|
||||
@@ -417,6 +417,22 @@
|
||||
field={f[:restrict_offline_showing]}
|
||||
label="Show offline characters to admins & managers only"
|
||||
/>
|
||||
<.input
|
||||
type="select"
|
||||
field={f[:allowed_copy_for]}
|
||||
class="select h-8 min-h-[10px] !pt-1 !pb-1 text-sm bg-neutral-900"
|
||||
label="Copy map data allowed for"
|
||||
placeholder="Select role to allow map data copy"
|
||||
options={@allowed_copy_for_options}
|
||||
/>
|
||||
<.input
|
||||
type="select"
|
||||
field={f[:allowed_paste_for]}
|
||||
class="select h-8 min-h-[10px] !pt-1 !pb-1 text-sm bg-neutral-900"
|
||||
label="Paste map data allowed for"
|
||||
placeholder="Select role to allow map data paste"
|
||||
options={@allowed_paste_for_options}
|
||||
/>
|
||||
</.form>
|
||||
</div>
|
||||
|
||||
|
||||
2
mix.exs
2
mix.exs
@@ -3,7 +3,7 @@ defmodule WandererApp.MixProject do
|
||||
|
||||
@source_url "https://github.com/wanderer-industries/wanderer"
|
||||
|
||||
@version "1.82.2"
|
||||
@version "1.83.1"
|
||||
|
||||
def project do
|
||||
[
|
||||
|
||||
@@ -304,7 +304,7 @@ const formatters = {
|
||||
{ name: "Ship", value: event.payload.victim.ship, inline: true },
|
||||
{ name: "Value", value: `${(event.payload.value / 1000000).toFixed(1)}M ISK`, inline: true }
|
||||
],
|
||||
url: `https://zkillboard.com/kill/${event.payload.killmail_id}`,
|
||||
url: `https://zkillboard.com/kill/${event.payload.killmail_id}/`,
|
||||
timestamp: event.ts
|
||||
}]
|
||||
}),
|
||||
@@ -677,4 +677,4 @@ Start building with real-time events today and take your wormhole operations to
|
||||
|
||||
---
|
||||
|
||||
*The Real-Time Events API is available now for all Wanderer maps. No additional subscription required - if you have API access to a map, you can use SSE and webhooks. Webhook delivery requires map owner activation.*
|
||||
*The Real-Time Events API is available now for all Wanderer maps. No additional subscription required - if you have API access to a map, you can use SSE and webhooks. Webhook delivery requires map owner activation.*
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
105016
priv/repo/data/invTypes.csv
105016
priv/repo/data/invTypes.csv
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,804 +0,0 @@
|
||||
locationID,wormholeClassID
|
||||
10000001,7
|
||||
10000002,7
|
||||
10000003,9
|
||||
10000005,9
|
||||
10000006,9
|
||||
10000007,9
|
||||
10000008,9
|
||||
10000009,9
|
||||
10000010,9
|
||||
10000011,9
|
||||
10000012,9
|
||||
10000013,9
|
||||
10000014,9
|
||||
10000015,9
|
||||
10000016,7
|
||||
10000018,9
|
||||
10000020,7
|
||||
10000021,9
|
||||
10000022,9
|
||||
10000023,9
|
||||
10000025,9
|
||||
10000027,9
|
||||
10000028,7
|
||||
10000029,9
|
||||
10000030,7
|
||||
10000031,9
|
||||
10000032,7
|
||||
10000033,7
|
||||
10000034,9
|
||||
10000035,9
|
||||
10000036,7
|
||||
10000037,7
|
||||
10000038,7
|
||||
10000039,9
|
||||
10000040,9
|
||||
10000041,9
|
||||
10000042,7
|
||||
10000043,7
|
||||
10000044,7
|
||||
10000045,9
|
||||
10000046,9
|
||||
10000047,9
|
||||
10000048,7
|
||||
10000049,7
|
||||
10000050,9
|
||||
10000051,9
|
||||
10000052,7
|
||||
10000053,9
|
||||
10000054,7
|
||||
10000055,9
|
||||
10000056,9
|
||||
10000057,9
|
||||
10000058,9
|
||||
10000059,9
|
||||
10000060,9
|
||||
10000061,9
|
||||
10000062,9
|
||||
10000063,9
|
||||
10000064,7
|
||||
10000065,7
|
||||
10000066,9
|
||||
10000067,7
|
||||
10000068,7
|
||||
10000069,7
|
||||
10000070,25
|
||||
11000001,1
|
||||
11000002,1
|
||||
11000003,1
|
||||
11000004,2
|
||||
11000005,2
|
||||
11000006,2
|
||||
11000007,2
|
||||
11000008,2
|
||||
11000009,3
|
||||
11000010,3
|
||||
11000011,3
|
||||
11000012,3
|
||||
11000013,3
|
||||
11000014,3
|
||||
11000015,3
|
||||
11000016,4
|
||||
11000017,4
|
||||
11000018,4
|
||||
11000019,4
|
||||
11000020,4
|
||||
11000021,4
|
||||
11000022,4
|
||||
11000023,4
|
||||
11000024,5
|
||||
11000025,5
|
||||
11000026,5
|
||||
11000027,5
|
||||
11000028,5
|
||||
11000029,5
|
||||
11000030,6
|
||||
11000031,12
|
||||
11000032,13
|
||||
11000033,1
|
||||
12000001,19
|
||||
12000002,20
|
||||
12000003,21
|
||||
12000004,22
|
||||
12000005,23
|
||||
14000001,19
|
||||
14000002,19
|
||||
14000003,19
|
||||
14000004,19
|
||||
14000005,19
|
||||
19000001,7
|
||||
20000061,11
|
||||
20000062,10
|
||||
30000012,8
|
||||
30000013,8
|
||||
30000014,8
|
||||
30000015,8
|
||||
30000016,8
|
||||
30000017,8
|
||||
30000018,8
|
||||
30000019,8
|
||||
30000020,8
|
||||
30000022,8
|
||||
30000036,8
|
||||
30000037,8
|
||||
30000038,8
|
||||
30000039,8
|
||||
30000040,8
|
||||
30000041,8
|
||||
30000043,8
|
||||
30000044,8
|
||||
30000045,8
|
||||
30000046,8
|
||||
30000047,8
|
||||
30000049,8
|
||||
30000065,8
|
||||
30000067,8
|
||||
30000070,8
|
||||
30000072,8
|
||||
30000073,8
|
||||
30000074,8
|
||||
30000075,8
|
||||
30000089,8
|
||||
30000090,8
|
||||
30000091,8
|
||||
30000092,8
|
||||
30000093,8
|
||||
30000094,8
|
||||
30000095,8
|
||||
30000096,8
|
||||
30000097,8
|
||||
30000098,8
|
||||
30000099,8
|
||||
30000100,8
|
||||
30000102,8
|
||||
30000104,8
|
||||
30000105,8
|
||||
30000108,8
|
||||
30000110,8
|
||||
30000111,8
|
||||
30000113,8
|
||||
30000114,8
|
||||
30000115,8
|
||||
30000116,8
|
||||
30000117,8
|
||||
30000118,8
|
||||
30000162,8
|
||||
30000163,8
|
||||
30000164,8
|
||||
30000169,8
|
||||
30000186,8
|
||||
30000191,8
|
||||
30000194,8
|
||||
30000195,8
|
||||
30000196,8
|
||||
30000197,8
|
||||
30000198,8
|
||||
30000199,8
|
||||
30000200,8
|
||||
30000203,8
|
||||
30000204,8
|
||||
30000205,8
|
||||
30000207,8
|
||||
30001356,8
|
||||
30001361,8
|
||||
30001385,8
|
||||
30001388,8
|
||||
30001390,8
|
||||
30001398,8
|
||||
30001402,8
|
||||
30001420,8
|
||||
30001422,8
|
||||
30001435,8
|
||||
30001436,8
|
||||
30001437,8
|
||||
30001438,8
|
||||
30001439,8
|
||||
30001440,8
|
||||
30001441,8
|
||||
30001442,8
|
||||
30001446,8
|
||||
30001447,8
|
||||
30001448,8
|
||||
30001661,8
|
||||
30001663,8
|
||||
30001664,8
|
||||
30001668,8
|
||||
30001681,8
|
||||
30001682,8
|
||||
30001683,8
|
||||
30001684,8
|
||||
30001685,8
|
||||
30001686,8
|
||||
30001719,8
|
||||
30001720,8
|
||||
30001721,8
|
||||
30002050,8
|
||||
30002052,8
|
||||
30002056,8
|
||||
30002057,8
|
||||
30002058,8
|
||||
30002059,8
|
||||
30002060,8
|
||||
30002061,8
|
||||
30002062,8
|
||||
30002063,8
|
||||
30002064,8
|
||||
30002065,8
|
||||
30002066,8
|
||||
30002067,8
|
||||
30002076,8
|
||||
30002077,8
|
||||
30002078,8
|
||||
30002080,8
|
||||
30002081,8
|
||||
30002082,8
|
||||
30002083,8
|
||||
30002084,8
|
||||
30002085,8
|
||||
30002086,8
|
||||
30002087,8
|
||||
30002088,8
|
||||
30002089,8
|
||||
30002090,8
|
||||
30002091,8
|
||||
30002092,8
|
||||
30002093,8
|
||||
30002094,8
|
||||
30002095,8
|
||||
30002096,8
|
||||
30002097,8
|
||||
30002098,8
|
||||
30002099,8
|
||||
30002100,8
|
||||
30002101,8
|
||||
30002102,8
|
||||
30002216,8
|
||||
30002219,8
|
||||
30002236,8
|
||||
30002237,8
|
||||
30002238,8
|
||||
30002239,8
|
||||
30002240,8
|
||||
30002241,8
|
||||
30002246,8
|
||||
30002249,8
|
||||
30002255,8
|
||||
30002256,8
|
||||
30002270,8
|
||||
30002272,8
|
||||
30002273,8
|
||||
30002274,8
|
||||
30002387,8
|
||||
30002388,8
|
||||
30002389,8
|
||||
30002390,8
|
||||
30002391,8
|
||||
30002392,8
|
||||
30002393,8
|
||||
30002394,8
|
||||
30002395,8
|
||||
30002396,8
|
||||
30002401,8
|
||||
30002402,8
|
||||
30002403,8
|
||||
30002404,8
|
||||
30002405,8
|
||||
30002406,8
|
||||
30002407,8
|
||||
30002409,8
|
||||
30002410,8
|
||||
30002412,8
|
||||
30002413,8
|
||||
30002414,8
|
||||
30002415,8
|
||||
30002417,8
|
||||
30002418,8
|
||||
30002419,8
|
||||
30002420,8
|
||||
30002514,8
|
||||
30002515,8
|
||||
30002516,8
|
||||
30002517,8
|
||||
30002536,8
|
||||
30002537,8
|
||||
30002538,8
|
||||
30002539,8
|
||||
30002540,8
|
||||
30002541,8
|
||||
30002542,8
|
||||
30002551,8
|
||||
30002553,8
|
||||
30002554,8
|
||||
30002555,8
|
||||
30002556,8
|
||||
30002559,8
|
||||
30002560,8
|
||||
30002561,8
|
||||
30002574,8
|
||||
30002575,8
|
||||
30002576,8
|
||||
30002577,8
|
||||
30002579,8
|
||||
30002580,8
|
||||
30002635,8
|
||||
30002638,8
|
||||
30002645,8
|
||||
30002647,8
|
||||
30002651,8
|
||||
30002653,8
|
||||
30002654,8
|
||||
30002666,8
|
||||
30002686,8
|
||||
30002691,8
|
||||
30002693,8
|
||||
30002697,8
|
||||
30002698,8
|
||||
30002718,8
|
||||
30002719,8
|
||||
30002720,8
|
||||
30002721,8
|
||||
30002722,8
|
||||
30002723,8
|
||||
30002725,8
|
||||
30002726,8
|
||||
30002727,8
|
||||
30002728,8
|
||||
30002729,8
|
||||
30002730,8
|
||||
30002741,8
|
||||
30002742,8
|
||||
30002756,8
|
||||
30002757,8
|
||||
30002758,8
|
||||
30002759,8
|
||||
30002760,8
|
||||
30002767,8
|
||||
30002769,8
|
||||
30002796,8
|
||||
30002806,8
|
||||
30002807,8
|
||||
30002808,8
|
||||
30002809,8
|
||||
30002810,8
|
||||
30002811,8
|
||||
30002812,8
|
||||
30002813,8
|
||||
30002957,8
|
||||
30002958,8
|
||||
30002959,8
|
||||
30002960,8
|
||||
30002961,8
|
||||
30002962,8
|
||||
30002975,8
|
||||
30002976,8
|
||||
30002977,8
|
||||
30002978,8
|
||||
30002979,8
|
||||
30002980,8
|
||||
30002981,8
|
||||
30002982,8
|
||||
30002983,8
|
||||
30002984,8
|
||||
30002985,8
|
||||
30002987,8
|
||||
30003000,8
|
||||
30003022,8
|
||||
30003023,8
|
||||
30003042,8
|
||||
30003044,8
|
||||
30003057,8
|
||||
30003059,8
|
||||
30003060,8
|
||||
30003061,8
|
||||
30003062,8
|
||||
30003063,8
|
||||
30003067,8
|
||||
30003068,8
|
||||
30003069,8
|
||||
30003070,8
|
||||
30003071,8
|
||||
30003072,8
|
||||
30003077,8
|
||||
30003079,8
|
||||
30003086,8
|
||||
30003087,8
|
||||
30003088,8
|
||||
30003089,8
|
||||
30003090,8
|
||||
30003091,8
|
||||
30003093,8
|
||||
30003424,8
|
||||
30003425,8
|
||||
30003444,8
|
||||
30003446,8
|
||||
30003460,8
|
||||
30003465,8
|
||||
30003466,8
|
||||
30003467,8
|
||||
30003470,8
|
||||
30003471,8
|
||||
30003474,8
|
||||
30003475,8
|
||||
30003477,8
|
||||
30003478,8
|
||||
30003479,8
|
||||
30003480,8
|
||||
30003481,8
|
||||
30003483,8
|
||||
30003484,8
|
||||
30003486,8
|
||||
30003499,8
|
||||
30003530,8
|
||||
30003534,8
|
||||
30003541,8
|
||||
30003543,8
|
||||
30003544,8
|
||||
30003556,8
|
||||
30003557,8
|
||||
30003559,8
|
||||
30003560,8
|
||||
30003561,8
|
||||
30003562,8
|
||||
30003563,8
|
||||
30003564,8
|
||||
30003565,8
|
||||
30003566,8
|
||||
30003567,8
|
||||
30003568,8
|
||||
30003569,8
|
||||
30003570,8
|
||||
30003571,8
|
||||
30003572,8
|
||||
30003573,8
|
||||
30003584,8
|
||||
30003585,8
|
||||
30003587,8
|
||||
30003594,8
|
||||
30003595,8
|
||||
30003596,8
|
||||
30003597,8
|
||||
30003598,8
|
||||
30003599,8
|
||||
30003600,8
|
||||
30003601,8
|
||||
30003602,8
|
||||
30003606,8
|
||||
30003607,8
|
||||
30003787,8
|
||||
30003789,8
|
||||
30003790,8
|
||||
30003791,8
|
||||
30003792,8
|
||||
30003793,8
|
||||
30003795,8
|
||||
30003796,8
|
||||
30003797,8
|
||||
30003799,8
|
||||
30003800,8
|
||||
30003801,8
|
||||
30003802,8
|
||||
30003803,8
|
||||
30003804,8
|
||||
30003805,8
|
||||
30003806,8
|
||||
30003807,8
|
||||
30003808,8
|
||||
30003818,8
|
||||
30003819,8
|
||||
30003820,8
|
||||
30003821,8
|
||||
30003822,8
|
||||
30003823,8
|
||||
30003825,8
|
||||
30003826,8
|
||||
30003827,8
|
||||
30003828,8
|
||||
30003829,8
|
||||
30003833,8
|
||||
30003834,8
|
||||
30003835,8
|
||||
30003836,8
|
||||
30003837,8
|
||||
30003838,8
|
||||
30003839,8
|
||||
30003840,8
|
||||
30003841,8
|
||||
30003842,8
|
||||
30003843,8
|
||||
30003844,8
|
||||
30003845,8
|
||||
30003846,8
|
||||
30003847,8
|
||||
30003848,8
|
||||
30003849,8
|
||||
30003850,8
|
||||
30003851,8
|
||||
30003852,8
|
||||
30003853,8
|
||||
30003854,8
|
||||
30003855,8
|
||||
30003856,8
|
||||
30003857,8
|
||||
30003884,8
|
||||
30003886,8
|
||||
30003887,8
|
||||
30003892,8
|
||||
30003896,8
|
||||
30003897,8
|
||||
30003898,8
|
||||
30003899,8
|
||||
30003900,8
|
||||
30003901,8
|
||||
30003902,8
|
||||
30003905,8
|
||||
30003907,8
|
||||
30003916,8
|
||||
30003917,8
|
||||
30003918,8
|
||||
30003919,8
|
||||
30003920,8
|
||||
30003921,8
|
||||
30003922,8
|
||||
30003923,8
|
||||
30003924,8
|
||||
30003925,8
|
||||
30003926,8
|
||||
30003927,8
|
||||
30003928,8
|
||||
30003929,8
|
||||
30003930,8
|
||||
30003931,8
|
||||
30003932,8
|
||||
30003933,8
|
||||
30003934,8
|
||||
30003935,8
|
||||
30003936,8
|
||||
30003937,8
|
||||
30003938,8
|
||||
30003939,8
|
||||
30003940,8
|
||||
30003941,8
|
||||
30004104,8
|
||||
30004105,8
|
||||
30004106,8
|
||||
30004108,8
|
||||
30004109,8
|
||||
30004117,8
|
||||
30004118,8
|
||||
30004119,8
|
||||
30004120,8
|
||||
30004121,8
|
||||
30004136,8
|
||||
30004137,8
|
||||
30004138,8
|
||||
30004139,8
|
||||
30004140,8
|
||||
30004141,8
|
||||
30004230,8
|
||||
30004231,8
|
||||
30004232,8
|
||||
30004233,8
|
||||
30004234,8
|
||||
30004235,8
|
||||
30004236,8
|
||||
30004237,8
|
||||
30004238,8
|
||||
30004239,8
|
||||
30004240,8
|
||||
30004241,8
|
||||
30004242,8
|
||||
30004243,8
|
||||
30004244,8
|
||||
30004245,8
|
||||
30004246,8
|
||||
30004247,8
|
||||
30004254,8
|
||||
30004255,8
|
||||
30004256,8
|
||||
30004257,8
|
||||
30004258,8
|
||||
30004259,8
|
||||
30004260,8
|
||||
30004261,8
|
||||
30004262,8
|
||||
30004263,8
|
||||
30004264,8
|
||||
30004265,8
|
||||
30004266,8
|
||||
30004267,8
|
||||
30004269,8
|
||||
30004271,8
|
||||
30004272,8
|
||||
30004273,8
|
||||
30004274,8
|
||||
30004275,8
|
||||
30004276,8
|
||||
30004277,8
|
||||
30004278,8
|
||||
30004279,8
|
||||
30004280,8
|
||||
30004281,8
|
||||
30004282,8
|
||||
30004283,8
|
||||
30004284,8
|
||||
30004285,8
|
||||
30004286,8
|
||||
30004287,8
|
||||
30004288,8
|
||||
30004289,8
|
||||
30004291,8
|
||||
30004292,8
|
||||
30004293,8
|
||||
30004294,8
|
||||
30004296,8
|
||||
30004297,8
|
||||
30004298,8
|
||||
30004299,8
|
||||
30004300,8
|
||||
30004301,8
|
||||
30004302,8
|
||||
30004303,8
|
||||
30004304,8
|
||||
30004305,8
|
||||
30004306,8
|
||||
30004307,8
|
||||
30004308,8
|
||||
30004309,8
|
||||
30004977,8
|
||||
30004979,8
|
||||
30004980,8
|
||||
30004982,8
|
||||
30004984,8
|
||||
30004985,8
|
||||
30004986,8
|
||||
30004988,8
|
||||
30004990,8
|
||||
30004991,8
|
||||
30004992,8
|
||||
30004996,8
|
||||
30004997,8
|
||||
30004998,8
|
||||
30004999,8
|
||||
30005000,8
|
||||
30005003,8
|
||||
30005007,8
|
||||
30005008,8
|
||||
30005010,8
|
||||
30005012,8
|
||||
30005014,8
|
||||
30005020,8
|
||||
30005022,8
|
||||
30005030,8
|
||||
30005031,8
|
||||
30005032,8
|
||||
30005033,8
|
||||
30005034,8
|
||||
30005035,8
|
||||
30005061,8
|
||||
30005062,8
|
||||
30005063,8
|
||||
30005064,8
|
||||
30005065,8
|
||||
30005066,8
|
||||
30005067,8
|
||||
30005068,8
|
||||
30005072,8
|
||||
30005073,8
|
||||
30005074,8
|
||||
30005077,8
|
||||
30005079,8
|
||||
30005080,8
|
||||
30005082,8
|
||||
30005083,8
|
||||
30005084,8
|
||||
30005085,8
|
||||
30005086,8
|
||||
30005087,8
|
||||
30005195,8
|
||||
30005196,8
|
||||
30005207,8
|
||||
30005208,8
|
||||
30005210,8
|
||||
30005211,8
|
||||
30005212,8
|
||||
30005213,8
|
||||
30005224,8
|
||||
30005225,8
|
||||
30005226,8
|
||||
30005228,8
|
||||
30005233,8
|
||||
30005234,8
|
||||
30005236,8
|
||||
30005237,8
|
||||
30005238,8
|
||||
30005239,8
|
||||
30005240,8
|
||||
30005241,8
|
||||
30005242,8
|
||||
30005255,8
|
||||
30005256,8
|
||||
30005257,8
|
||||
30005258,8
|
||||
30005259,8
|
||||
30005260,8
|
||||
30005261,8
|
||||
30005262,8
|
||||
30005263,8
|
||||
30005264,8
|
||||
30005265,8
|
||||
30005266,8
|
||||
30005268,8
|
||||
30005270,8
|
||||
30005271,8
|
||||
30005272,8
|
||||
30005273,8
|
||||
30005274,8
|
||||
30005275,8
|
||||
30005276,8
|
||||
30005277,8
|
||||
30005278,8
|
||||
30005279,8
|
||||
30005280,8
|
||||
30005281,8
|
||||
30005282,8
|
||||
30005283,8
|
||||
30005284,8
|
||||
30005285,8
|
||||
30005286,8
|
||||
30005287,8
|
||||
30005295,8
|
||||
30005296,8
|
||||
30005297,8
|
||||
30005298,8
|
||||
30005299,8
|
||||
30005300,8
|
||||
30005320,8
|
||||
30005321,8
|
||||
30005328,8
|
||||
30005329,8
|
||||
30045306,8
|
||||
30045307,8
|
||||
30045308,8
|
||||
30045309,8
|
||||
30045310,8
|
||||
30045311,8
|
||||
30045312,8
|
||||
30045313,8
|
||||
30045314,8
|
||||
30045315,8
|
||||
30045316,8
|
||||
30045317,8
|
||||
30045318,8
|
||||
30045319,8
|
||||
30045320,8
|
||||
30045330,8
|
||||
30045331,8
|
||||
30045332,8
|
||||
30045333,8
|
||||
30045334,8
|
||||
30045335,8
|
||||
30045336,8
|
||||
30045337,8
|
||||
30045338,8
|
||||
30045339,8
|
||||
30045340,8
|
||||
30045341,8
|
||||
30045342,8
|
||||
30045343,8
|
||||
30045344,8
|
||||
30045345,8
|
||||
30045346,8
|
||||
30045347,8
|
||||
30045348,8
|
||||
30045349,8
|
||||
30045350,8
|
||||
30045351,8
|
||||
30045352,8
|
||||
30045353,8
|
||||
30045354,8
|
||||
31000001,14
|
||||
31000002,15
|
||||
31000003,16
|
||||
31000004,17
|
||||
31000006,18
|
||||
|
@@ -1,114 +0,0 @@
|
||||
regionID,regionName,x,y,z,xMin,xMax,yMin,yMax,zMin,zMax,factionID,nebula,radius
|
||||
10000001,Derelik,-77361951922776896.0000000000,50878032664301904.0000000000,-64433101266115400.0000000000,-105549987563848000.0000000000,-49173916281705696.0000000000,27128553877044000.0000000000,74627511451559808.0000000000,26423360511028700.0000000000,102442842021202000.0000000000,500007,11799,None
|
||||
10000002,The Forge,-96420329664617600.0000000000,64027075837740400.0000000000,112539817132904000.0000000000,-143645654698282000.0000000000,-49195004630953000.0000000000,35154556396755100.0000000000,92899595278725696.0000000000,-144452603161759008.0000000000,-80627031104049792.0000000000,500001,11806,None
|
||||
10000003,Vale of the Silent,-44069323337837904.0000000000,94729444152458304.0000000000,181384695885576992.0000000000,-99233760260769408.0000000000,11095113585093600.0000000000,58204170407514304.0000000000,131254717897402000.0000000000,-218879593357516000.0000000000,-143889798413638000.0000000000,None,11814,None
|
||||
10000004,UUA-F4,89868004257875904.0000000000,54780096006728496.0000000000,272575750367216992.0000000000,67390827320013696.0000000000,112345181195738000.0000000000,13865039116517100.0000000000,95695152896940000.0000000000,-380774177850620032.0000000000,-164377322883812992.0000000000,None,11817,None
|
||||
10000005,Detorid,133540404993619008.0000000000,-31391501876004700.0000000000,-196392258478521984.0000000000,58085917807688304.0000000000,208994892179550016.0000000000,-50720332048902600.0000000000,-12062671703106700.0000000000,164748864800977984.0000000000,228035652156065984.0000000000,None,11849,None
|
||||
10000006,Wicked Creek,96232593513274400.0000000000,2541722640313030.0000000000,-162683939101784992.0000000000,55094289188289696.0000000000,137370897838259008.0000000000,-16779717773981400.0000000000,21863163054607500.0000000000,142341340477442000.0000000000,183026537726128992.0000000000,None,11847,None
|
||||
10000007,Cache,244727810799539008.0000000000,-16185129443509700.0000000000,-85073283149395296.0000000000,183951658928238016.0000000000,305503962670838976.0000000000,-42131490031126800.0000000000,9761231144107390.0000000000,49918145941828496.0000000000,120228420356962000.0000000000,None,11845,None
|
||||
10000008,Scalding Pass,64136817637020496.0000000000,5114679584706430.0000000000,-138210100477706000.0000000000,18636660874023100.0000000000,109636974400018000.0000000000,-21485660357373500.0000000000,31715019526786400.0000000000,103993036168968992.0000000000,172427164786443008.0000000000,None,11846,None
|
||||
10000009,Insmother,154196834892712000.0000000000,2835111179265830.0000000000,-145389178945984992.0000000000,108381641944456000.0000000000,200012027840968992.0000000000,-41217100179207504.0000000000,46887322537739200.0000000000,98366331309125408.0000000000,192412026582844992.0000000000,None,11844,None
|
||||
10000010,Tribute,-120113706247411008.0000000000,100251692022651008.0000000000,224257843400491008.0000000000,-180136061822224992.0000000000,-60091350672596304.0000000000,81744510925868896.0000000000,118758873119434000.0000000000,-248701329588798016.0000000000,-199814357212184000.0000000000,None,11813,None
|
||||
10000011,Great Wildlands,52513837630224096.0000000000,29056627593860200.0000000000,-72759207717599296.0000000000,15787578166538700.0000000000,89240097093909504.0000000000,-4417019452325860.0000000000,62530274640046304.0000000000,37724433284453200.0000000000,107793982150744992.0000000000,500015,11841,None
|
||||
10000012,Curse,13928759309586000.0000000000,-1279955725086000.0000000000,-151114759582864992.0000000000,-17164902474422800.0000000000,45022421093594896.0000000000,-30265859627869800.0000000000,27705948177697800.0000000000,135105384527696992.0000000000,167124134638033984.0000000000,500011,11842,None
|
||||
10000013,Malpais,175707909414576000.0000000000,68486867977334496.0000000000,91441353104261600.0000000000,146522777958075008.0000000000,204893040871076000.0000000000,43221875094774000.0000000000,93751860859895104.0000000000,-136571342987508000.0000000000,-46311363221014800.0000000000,None,11819,None
|
||||
10000014,Catch,-113595452153499008.0000000000,21828796395059000.0000000000,-200997188121672992.0000000000,-176804941309964000.0000000000,-50385962997033904.0000000000,-10643152813927400.0000000000,54300745604045296.0000000000,139121469927840992.0000000000,262872906315505984.0000000000,None,11801,None
|
||||
10000015,Venal,-123149072132624000.0000000000,111405178366884992.0000000000,308325578657564032.0000000000,-174025244531812992.0000000000,-72272899733434096.0000000000,92454439987537200.0000000000,130355916746234000.0000000000,-361822060302760000.0000000000,-254829097012368000.0000000000,500010,11812,None
|
||||
10000016,Lonetrek,-189171222177239008.0000000000,94552463350949600.0000000000,155696128982270016.0000000000,-233466109933311008.0000000000,-144876334421167008.0000000000,69990843340574896.0000000000,119114083361324000.0000000000,-193878176320107008.0000000000,-117514081644434000.0000000000,500001,11807,None
|
||||
10000017,J7HZ-F,9262044950387990.0000000000,81443031428475504.0000000000,231053798464132000.0000000000,-30990419959122300.0000000000,49514509859898304.0000000000,59874912584642304.0000000000,103011150272308992.0000000000,-278250620384737984.0000000000,-183856976543526016.0000000000,500005,11835,None
|
||||
10000018,The Spire,232956156642256000.0000000000,31778178062885000.0000000000,23367365618509800.0000000000,202456187021459008.0000000000,263456126263052000.0000000000,-2645094100301930.0000000000,66201450226071904.0000000000,-70018197282657504.0000000000,23283466045637800.0000000000,None,11843,None
|
||||
10000019,A821-A,13680672219108900.0000000000,70681466135509904.0000000000,284135649247806016.0000000000,-6980977234977400.0000000000,34342321673195100.0000000000,56667187302576896.0000000000,84695744968442800.0000000000,-333999270054646976.0000000000,-234272028440964992.0000000000,500005,11836,None
|
||||
10000020,Tash-Murkon,-211753371863879008.0000000000,62838705971068000.0000000000,-123934814537664000.0000000000,-239002211770168992.0000000000,-184504531957590016.0000000000,33647274359967700.0000000000,92030137582168304.0000000000,88544490553691392.0000000000,159325138521638016.0000000000,500003,11792,None
|
||||
10000021,Outer Passage,291498150006238976.0000000000,4086283626834610.0000000000,80307683457889904.0000000000,253707828044976000.0000000000,329288471967502976.0000000000,-57431940876101000.0000000000,65604508129770200.0000000000,-147627280712887008.0000000000,-12988086202892600.0000000000,None,11822,None
|
||||
10000022,Stain,-158827678964844000.0000000000,58691190475642496.0000000000,-309223961465603008.0000000000,-220896070661676992.0000000000,-96759287268010400.0000000000,16401533988548500.0000000000,100980846962736000.0000000000,254043792338772000.0000000000,364404130592435008.0000000000,500019,11802,None
|
||||
10000023,Pure Blind,-260921882715692000.0000000000,78979266191427392.0000000000,220225532514732000.0000000000,-319394067132734976.0000000000,-202449698298648992.0000000000,36527305406486200.0000000000,121431226976368992.0000000000,-238553930773527008.0000000000,-201897134255936992.0000000000,None,11809,None
|
||||
10000025,Immensea,21892914159865900.0000000000,-3017828945779400.0000000000,-205784180881657984.0000000000,-22895386897376800.0000000000,66681215217108600.0000000000,-23530339396911300.0000000000,17494681505352500.0000000000,165767307374257984.0000000000,245801054389059008.0000000000,None,11848,None
|
||||
10000027,Etherium Reach,128382041362752000.0000000000,56377147096749904.0000000000,37868198303199904.0000000000,67955570592463600.0000000000,188808512133040000.0000000000,29084806420449200.0000000000,83669487773050592.0000000000,-79958405732611296.0000000000,4222009126211450.0000000000,None,11840,None
|
||||
10000028,Molden Heath,-35722113622288200.0000000000,4350325397619760.0000000000,-5376103573250500.0000000000,-57124632275023104.0000000000,-14319594969553300.0000000000,-11025569331781400.0000000000,19726220127020900.0000000000,-7297437656327950.0000000000,18049644802829000.0000000000,500002,11839,None
|
||||
10000029,Geminate,-15833926531865600.0000000000,59778184289369000.0000000000,115546529090020992.0000000000,-45137480054461200.0000000000,13469626990730100.0000000000,23541985779531900.0000000000,96014382799206000.0000000000,-137261979990136992.0000000000,-93831078189904400.0000000000,None,11815,None
|
||||
10000030,Heimatar,-92929285491600704.0000000000,32124391627089500.0000000000,24148721399369200.0000000000,-128269338426336992.0000000000,-57589232556864000.0000000000,5117709236688720.0000000000,59131074017490304.0000000000,-51576774226127800.0000000000,3279331427389420.0000000000,500002,11838,None
|
||||
10000031,Impass,-38606167129705296.0000000000,-1840037937294340.0000000000,-334948558437468992.0000000000,-46272153163454400.0000000000,-30940181095956200.0000000000,-30528048481020700.0000000000,26847972606432100.0000000000,305300973053793024.0000000000,364596143821145024.0000000000,None,11851,None
|
||||
10000032,Sinq Laison,-181912883076480000.0000000000,41699538786904704.0000000000,39780738677074200.0000000000,-218619639817449984.0000000000,-145206126335510016.0000000000,14838041011608700.0000000000,68561036562200704.0000000000,-85257599295005904.0000000000,5696121940857440.0000000000,500004,11824,None
|
||||
10000033,The Citadel,-154620630524368992.0000000000,78594974110412192.0000000000,104821797629467008.0000000000,-187991094902497984.0000000000,-121250166146240992.0000000000,47332294584113104.0000000000,109857653636711008.0000000000,-148876595282702016.0000000000,-60766999976232400.0000000000,500001,11805,None
|
||||
10000034,The Kalevala Expanse,133941223410126000.0000000000,54809888059021104.0000000000,94979579378192800.0000000000,110709276315876992.0000000000,157173170504376000.0000000000,28290179526872200.0000000000,81329596591170000.0000000000,-130038972058830000.0000000000,-59920186697555400.0000000000,None,11818,None
|
||||
10000035,Deklein,-276352540202200992.0000000000,89769327588659104.0000000000,310283495605705984.0000000000,-357288458792001984.0000000000,-195416621612400000.0000000000,51805965511940200.0000000000,127732689665378000.0000000000,-352811725566156032.0000000000,-267755265645256000.0000000000,None,11810,None
|
||||
10000036,Devoid,-141697960063520992.0000000000,58441572274484496.0000000000,-63334110155348200.0000000000,-169282385386756000.0000000000,-114113534740286000.0000000000,22056522365527300.0000000000,94826622183441600.0000000000,30322971680447200.0000000000,96345248630249200.0000000000,500003,11791,None
|
||||
10000037,Everyshore,-194822013294280992.0000000000,8827663029283090.0000000000,20255953804920800.0000000000,-215583579631561984.0000000000,-174060446956999008.0000000000,-12533014553205200.0000000000,30188340611771400.0000000000,-31215239124872700.0000000000,-9296668484968890.0000000000,500004,11825,None
|
||||
10000038,The Bleak Lands,-159172230516598016.0000000000,31388510588133000.0000000000,-50936750365377600.0000000000,-174834407400640000.0000000000,-143510053632556992.0000000000,1703819912406750.0000000000,61073201263859200.0000000000,32861581505385500.0000000000,69011919225369600.0000000000,500003,11790,None
|
||||
10000039,Esoteria,-86787864713685600.0000000000,-16977131982195800.0000000000,-417232597484758016.0000000000,-121897659027506000.0000000000,-51678070399865104.0000000000,-60129751947834496.0000000000,26175487983442900.0000000000,362533200787438976.0000000000,471931994182076032.0000000000,None,11804,None
|
||||
10000040,Oasa,233391636757060992.0000000000,63335681505452400.0000000000,122542259755244992.0000000000,194254750307968992.0000000000,272528523206152992.0000000000,35499276163976200.0000000000,91172086846928608.0000000000,-174387649267655008.0000000000,-70696870242835104.0000000000,None,11821,None
|
||||
10000041,Syndicate,-321246237025974976.0000000000,19458130625209900.0000000000,74164013458830592.0000000000,-362419022806808000.0000000000,-280073451245142016.0000000000,-7412017246704660.0000000000,46328278497124400.0000000000,-111626842054836992.0000000000,-36701184862824200.0000000000,500009,11829,None
|
||||
10000042,Metropolis,-74267055557312000.0000000000,35798638720555200.0000000000,45153300095399000.0000000000,-137997971841352992.0000000000,-10536139273270900.0000000000,-6953093208971080.0000000000,78550370650081600.0000000000,-79085709291584992.0000000000,-11220890899213000.0000000000,500002,11837,None
|
||||
10000043,Domain,-200437833726152992.0000000000,53561700932206800.0000000000,-81355239085633408.0000000000,-254049920576990016.0000000000,-146825746875316992.0000000000,12999421783769300.0000000000,94123980080644304.0000000000,18203772891834400.0000000000,144506705279432000.0000000000,500003,11789,None
|
||||
10000044,Solitude,-321931746318950976.0000000000,28256329216600400.0000000000,19276106332841400.0000000000,-339484138934816000.0000000000,-304379353703084992.0000000000,4650554638853240.0000000000,51862103794347600.0000000000,-44118642051444896.0000000000,5566429385762110.0000000000,500004,11832,None
|
||||
10000045,Tenal,-72287885133620192.0000000000,58340276587659400.0000000000,433602446107849024.0000000000,-116748577875112992.0000000000,-27827192392127100.0000000000,15107945762421200.0000000000,101572607412898000.0000000000,-458300452818907008.0000000000,-408904439396790976.0000000000,None,11816,None
|
||||
10000046,Fade,-293951880420984000.0000000000,58738864363854704.0000000000,257748117411352000.0000000000,-321962586144748032.0000000000,-265941174697220000.0000000000,34663165880920400.0000000000,82814562846788896.0000000000,-262210335614023008.0000000000,-253285899208680992.0000000000,None,11834,None
|
||||
10000047,Providence,-121750759712200992.0000000000,58495651402332800.0000000000,-151515874111716000.0000000000,-147682648205223008.0000000000,-95818871219178704.0000000000,31109112724575900.0000000000,85882190080089696.0000000000,104761552559676000.0000000000,198270195663755008.0000000000,None,11800,None
|
||||
10000048,Placid,-270798690016688992.0000000000,73701796812053600.0000000000,95464459677699200.0000000000,-295050806700006976.0000000000,-246546573333371008.0000000000,33687292631730900.0000000000,113716300992376000.0000000000,-135456400892811008.0000000000,-55472518462587104.0000000000,500004,11828,None
|
||||
10000049,Khanid,-318287416184579008.0000000000,20419414094204800.0000000000,-133487524109219008.0000000000,-364404836850033984.0000000000,-272169995519124000.0000000000,-23375955554404600.0000000000,64214783742814200.0000000000,94313193241472400.0000000000,172661854976964992.0000000000,500008,11795,None
|
||||
10000050,Querious,-363413099563971968.0000000000,53220650446317800.0000000000,-240706130531268992.0000000000,-421044001198137984.0000000000,-305782197929806976.0000000000,17099563981870700.0000000000,89341736910764800.0000000000,178498284629577984.0000000000,302913976432960000.0000000000,None,11796,None
|
||||
10000051,Cloud Ring,-320933851367644032.0000000000,74422197368443696.0000000000,146459468769175008.0000000000,-334343216505568000.0000000000,-307524486229721024.0000000000,54504251791135296.0000000000,94340142945752096.0000000000,-176405700933116992.0000000000,-116513236605232992.0000000000,None,11830,None
|
||||
10000052,Kador,-237297480079980992.0000000000,40680338829849696.0000000000,-76830967297819296.0000000000,-265099009094967008.0000000000,-209495951064995008.0000000000,14239360364081900.0000000000,67121317295617504.0000000000,21947268249072400.0000000000,131714666346566000.0000000000,500003,11788,None
|
||||
10000053,Cobalt Edge,292184365554961984.0000000000,53493388123815000.0000000000,204625108850392000.0000000000,273407634801880992.0000000000,310961096308044032.0000000000,33347140400224400.0000000000,73639635847405696.0000000000,-264957831553220000.0000000000,-144292386147564000.0000000000,None,11823,None
|
||||
10000054,Aridia,-368177411221382016.0000000000,18612570807884000.0000000000,-77770315686733296.0000000000,-413892030804225984.0000000000,-322462791638537984.0000000000,-5883182983731610.0000000000,43108324599499600.0000000000,38510404670607400.0000000000,117030226702859008.0000000000,500003,11794,None
|
||||
10000055,Branch,-145831957034713984.0000000000,66915247329955600.0000000000,412717925093977024.0000000000,-192334882877540992.0000000000,-99329031191886704.0000000000,45899826698416200.0000000000,87930667961494896.0000000000,-468006802398913024.0000000000,-357429047789041024.0000000000,None,11811,None
|
||||
10000056,Feythabolis,30647318047262800.0000000000,-16097388834061700.0000000000,-403080457499606016.0000000000,-13427359251370500.0000000000,74721995345896192.0000000000,-47538841307943904.0000000000,15344063639820500.0000000000,338718234219339008.0000000000,467442680779873984.0000000000,None,11852,None
|
||||
10000057,Outer Ring,-392563738530011008.0000000000,21671932707227800.0000000000,86377281026647104.0000000000,-440630233235486976.0000000000,-344497243824534016.0000000000,8454685496211170.0000000000,34889179918244500.0000000000,-114159691483192000.0000000000,-58594870570102496.0000000000,500014,11831,None
|
||||
10000058,Fountain,-449013589606488000.0000000000,37227379065383104.0000000000,-6024369036247570.0000000000,-503218614776420992.0000000000,-394808564436556032.0000000000,12825904470868000.0000000000,61628853659898096.0000000000,-52236755323923000.0000000000,64285493396418200.0000000000,None,11833,None
|
||||
10000059,Paragon Soul,-113652861165762000.0000000000,-26361011640727300.0000000000,-471184672814803968.0000000000,-147103312663208000.0000000000,-80202409668315808.0000000000,-47884791640159696.0000000000,-4837231641294960.0000000000,462265945308572032.0000000000,480103400321036992.0000000000,None,11803,None
|
||||
10000060,Delve,-429369275408752000.0000000000,51426121003625904.0000000000,-256560110972768992.0000000000,-465524711410822976.0000000000,-393213839406681024.0000000000,20784301985101400.0000000000,82067940022150496.0000000000,187448411080600992.0000000000,325671810864937984.0000000000,None,11797,None
|
||||
10000061,Tenerifis,47395435143070304.0000000000,-12025278304512600.0000000000,-285986932642694016.0000000000,-31142252027931900.0000000000,125933122314072992.0000000000,-41257255525995000.0000000000,17206698916969700.0000000000,242460862907172992.0000000000,329513002378214976.0000000000,None,11850,None
|
||||
10000062,Omist,100319291593819008.0000000000,-27486110166441700.0000000000,-389560313235004032.0000000000,52468324379805600.0000000000,148170258807832000.0000000000,-46426415059427600.0000000000,-8545805273455740.0000000000,368934289108777024.0000000000,410186337361230976.0000000000,None,11853,None
|
||||
10000063,Period Basis,-414504229299553024.0000000000,83788485653959904.0000000000,-386878506419457024.0000000000,-440202713206803968.0000000000,-388805745392302016.0000000000,66106045165950096.0000000000,101470926141970000.0000000000,355667366886337024.0000000000,418089645952577024.0000000000,None,11798,None
|
||||
10000064,Essence,-218476380293208992.0000000000,36079691343274896.0000000000,53743933634810000.0000000000,-237409458368697984.0000000000,-199543302217719008.0000000000,7633597424402840.0000000000,64525785262147000.0000000000,-79609990006493200.0000000000,-27877877263126800.0000000000,500004,11826,None
|
||||
10000065,Kor-Azor,-296212317520308992.0000000000,41618648470271696.0000000000,-104651247949499008.0000000000,-358902782416633024.0000000000,-233521852623984000.0000000000,-1015080651431890.0000000000,84252377591975392.0000000000,72820222035818304.0000000000,136482273863180000.0000000000,500003,11793,None
|
||||
10000066,Perrigen Falls,211874376981372000.0000000000,25904748164016500.0000000000,107107866838870000.0000000000,176484345431305984.0000000000,247264408531438016.0000000000,-5434191277816090.0000000000,57243687605849000.0000000000,-165684697545403008.0000000000,-48531036132337296.0000000000,None,11820,None
|
||||
10000067,Genesis,-260029907705174016.0000000000,14889648452313800.0000000000,-15431994130441300.0000000000,-299197792151819008.0000000000,-220862023258528992.0000000000,-19762699275081500.0000000000,49541996179709104.0000000000,-23280212488173200.0000000000,54144200749055800.0000000000,500003,11787,None
|
||||
10000068,Verge Vendor,-242498312843249984.0000000000,41170103611453904.0000000000,51557451055966600.0000000000,-258065601351460992.0000000000,-226931024335039008.0000000000,31582533609315800.0000000000,50757673613592000.0000000000,-65212930160258000.0000000000,-37901971951675200.0000000000,500004,11827,None
|
||||
10000069,Black Rise,-222687068034734016.0000000000,77559410642208400.0000000000,136029596082308000.0000000000,-303606258828316032.0000000000,-141767877241152000.0000000000,-3359780151373490.0000000000,158478601435790016.0000000000,-216948786875889984.0000000000,-55110405288726600.0000000000,500001,11808,None
|
||||
10000070,Pochven,-122411864335628000.0000000000,47387680180212200.0000000000,31918737703135300.0000000000,-238290946220046016.0000000000,-6532782451210520.0000000000,-4522598544370160.0000000000,99297958904794496.0000000000,-100531188490154000.0000000000,164368663896424992.0000000000,500026,11794,None
|
||||
10001000,Yasna Zakh,6732782451210000.0000000000,4722598544370000.0000000000,-2508346782640000.0000000000,6632782451210000.0000000000,6832782451210000.0000000000,4622598544370000.0000000000,4822598544370000.0000000000,-2608346782640000.0000000000,-2408346782640000.0000000000,None,26196,None
|
||||
11000001,A-R00001,7637617076349299712.0000000000,1539385485286040064.0000000000,-9497611206336489472.0000000000,7623729705807830016.0000000000,7665157295345890304.0000000000,1518671690517009920.0000000000,1560099280055069952.0000000000,9477933517891790848.0000000000,9519361107429849088.0000000000,None,11781,None
|
||||
11000002,A-R00002,7600934527203749888.0000000000,1539372289941680128.0000000000,-9430502663833180160.0000000000,7547910222240369664.0000000000,7660664491887200256.0000000000,1482995155118269952.0000000000,1595749424765090048.0000000000,9373692811784239104.0000000000,9486447081431070720.0000000000,None,11781,None
|
||||
11000003,A-R00003,7661386280000360448.0000000000,1539367788970249984.0000000000,-9338593801813639168.0000000000,7609931630741890048.0000000000,7712858379144850432.0000000000,1487904414768770048.0000000000,1590831163171729920.0000000000,9285124270197149696.0000000000,9388051018600110080.0000000000,None,11781,None
|
||||
11000004,B-R00004,7760336818417940480.0000000000,1539349495218259968.0000000000,-9340059589515669504.0000000000,7737126961114479616.0000000000,7793280410365299712.0000000000,1511272770592849920.0000000000,1567426219843680000.0000000000,9310082659344670720.0000000000,9366236108595499008.0000000000,None,11782,None
|
||||
11000005,B-R00005,7874079523648960512.0000000000,1539375483746469888.0000000000,-9503071288589080576.0000000000,7838285280590149632.0000000000,7927692292804259840.0000000000,1494671977639409920.0000000000,1584078989853519872.0000000000,9457118105404020736.0000000000,9546525117618139136.0000000000,None,11782,None
|
||||
11000006,B-R00006,7831044544147189760.0000000000,1539382673759310080.0000000000,-9659853503736190976.0000000000,7799948827056690176.0000000000,7865467018861049856.0000000000,1506623577857129984.0000000000,1572141769661489920.0000000000,9627248564723838976.0000000000,9692766756528199680.0000000000,None,11782,None
|
||||
11000007,B-R00007,7634045819571999744.0000000000,1539365918889139968.0000000000,-9732388555647289344.0000000000,7582131918499590144.0000000000,7679566586097470464.0000000000,1490648585090200064.0000000000,1588083252688090112.0000000000,9674034319686610944.0000000000,9771468987284500480.0000000000,None,11782,None
|
||||
11000008,B-R00008,7505098631820529664.0000000000,1539344551718560000.0000000000,-9637129770691969024.0000000000,7462530995555059712.0000000000,7542543312478669824.0000000000,1499338393256750080.0000000000,1579350710180359936.0000000000,9596116217610829824.0000000000,9676128534534440960.0000000000,None,11782,None
|
||||
11000009,C-R00009,7756998458470830080.0000000000,1539362847859320064.0000000000,-9838335106976929792.0000000000,7733892610273920000.0000000000,7792430659156670464.0000000000,1510093823417939968.0000000000,1568631872300689920.0000000000,9808324988800120832.0000000000,9866863037682870272.0000000000,None,11783,None
|
||||
11000010,C-R00010,7458020897442199552.0000000000,1539386844078560000.0000000000,-9700538756680148992.0000000000,7425735456035609600.0000000000,7490617757005800448.0000000000,1506945693593459968.0000000000,1571827994563660032.0000000000,9664719860254670848.0000000000,9729602161224869888.0000000000,None,11783,None
|
||||
11000011,C-R00011,7404801088082939904.0000000000,1539415503269789952.0000000000,-9453566499046539264.0000000000,7361246485281089536.0000000000,7444160286740459520.0000000000,1497958602540100096.0000000000,1580872403999470080.0000000000,9412409856560680960.0000000000,9495323658020059136.0000000000,None,11783,None
|
||||
11000012,C-R00012,7467327450977550336.0000000000,1539410948820979968.0000000000,-9324079843325939712.0000000000,7425135948559049728.0000000000,7507803666449810432.0000000000,1498077089875599872.0000000000,1580744807766360064.0000000000,9281225475247849472.0000000000,9363893193138599936.0000000000,None,11783,None
|
||||
11000013,C-R00013,7704331832534580224.0000000000,1539435195291849984.0000000000,-9219177949355570176.0000000000,7630566808753089536.0000000000,7745794371494110208.0000000000,1481821413921339904.0000000000,1597048976662360064.0000000000,9169527536370570240.0000000000,9284755099111600128.0000000000,None,11783,None
|
||||
11000014,C-R00014,7913231764061009920.0000000000,1539411905418899968.0000000000,-9304069748077330432.0000000000,7891835899058190336.0000000000,7933259475845659648.0000000000,1518700117025159936.0000000000,1560123693812640000.0000000000,9288696078764910592.0000000000,9330119655552389120.0000000000,None,11783,None
|
||||
11000015,C-R00015,7974274717456719872.0000000000,1539405967433920000.0000000000,-9450756025749610496.0000000000,7937343760644570112.0000000000,8019086603567089664.0000000000,1498534545972649984.0000000000,1580277388895180032.0000000000,9410153489013360640.0000000000,9491896331935889408.0000000000,None,11783,None
|
||||
11000016,D-R00016,7950412099255820288.0000000000,1539417188591280128.0000000000,-9645473572355399680.0000000000,7901779329738460160.0000000000,7981201563743850496.0000000000,1499706071588590080.0000000000,1579128305593979904.0000000000,9597323281864929280.0000000000,9676745515870330880.0000000000,None,11784,None
|
||||
11000017,D-R00017,7751984075340600320.0000000000,1539422970296859904.0000000000,-9780708820372819968.0000000000,7742532050694139904.0000000000,7786567027004290048.0000000000,1517405482141789952.0000000000,1561440458451930112.0000000000,9747991647592890368.0000000000,9792026623903039488.0000000000,None,11784,None
|
||||
11000018,D-R00018,7568425212096589824.0000000000,1539422759484110080.0000000000,-9705161757846870016.0000000000,7524869683523309568.0000000000,7597828274914010112.0000000000,1502943463788760064.0000000000,1575902055179460096.0000000000,9677409703411189760.0000000000,9750368294801889280.0000000000,None,11784,None
|
||||
11000019,D-R00019,7446369144431120384.0000000000,1539413446685319936.0000000000,-9564135782886729728.0000000000,7405238029993790464.0000000000,7489348788137199616.0000000000,1497358067613609984.0000000000,1581468825757019904.0000000000,9519696541969010688.0000000000,9603807300112420864.0000000000,None,11784,None
|
||||
11000020,D-R00020,7386876286054590464.0000000000,1539436657469120000.0000000000,-9258460824800780288.0000000000,7336518038999409664.0000000000,7450651620673989632.0000000000,1482369866631830016.0000000000,1596503448306400000.0000000000,9198709827110030336.0000000000,9312843408784609280.0000000000,None,11784,None
|
||||
11000021,D-R00021,7575667614415110144.0000000000,1539420791428610048.0000000000,-9121182970002969600.0000000000,7531403030956669952.0000000000,7635739674965990400.0000000000,1487252469423940096.0000000000,1591589113433270016.0000000000,9074551305786470400.0000000000,9178887949795800064.0000000000,None,11784,None
|
||||
11000022,D-R00022,7979890027924389888.0000000000,1539423414900480000.0000000000,-9211421806146249728.0000000000,7929642865003240448.0000000000,8025792183143870464.0000000000,1491348755830159872.0000000000,1587498073970789888.0000000000,9166167670022070272.0000000000,9262316988162699264.0000000000,None,11784,None
|
||||
11000023,D-R00023,8084323841980080128.0000000000,1539401095322680064.0000000000,-9713010202943850496.0000000000,8036967474469860352.0000000000,8143374379736609792.0000000000,1486197642689309952.0000000000,1592604547956059904.0000000000,9653418783323650048.0000000000,9759825688590409728.0000000000,None,11784,None
|
||||
11000024,E-R00024,7171962412864889856.0000000000,1539364134790099968.0000000000,-9350811708841140224.0000000000,7115607080392070144.0000000000,7229234837983569920.0000000000,1482550255994350080.0000000000,1596178013585850112.0000000000,9293875144491169792.0000000000,9407502902082670592.0000000000,None,11785,None
|
||||
11000025,E-R00025,7334821710428279808.0000000000,1539376350729870080.0000000000,-9110378661974970368.0000000000,7304784715862420480.0000000000,7352397124512100352.0000000000,1515570146405029888.0000000000,1563182555054720000.0000000000,9081841178120850432.0000000000,9129453586770539520.0000000000,None,11785,None
|
||||
11000026,E-R00026,7709709849205610496.0000000000,1539351806049769984.0000000000,-8983960038446709760.0000000000,7648543757451039744.0000000000,7767940440005990400.0000000000,1479653464772300032.0000000000,1599050147327239936.0000000000,8922012299595209728.0000000000,9041408982150160384.0000000000,None,11785,None
|
||||
11000027,E-R00027,8177591655159520256.0000000000,1539361932565989888.0000000000,-9311264611897260032.0000000000,8130973150192579584.0000000000,8233286243617240064.0000000000,1488205385853659904.0000000000,1590518479278320128.0000000000,9261823633916950528.0000000000,9364136727341611008.0000000000,None,11785,None
|
||||
11000028,E-R00028,8050512763275060224.0000000000,1539387000103539968.0000000000,-9892764759783260160.0000000000,8004289386676129792.0000000000,8096104457479029760.0000000000,1493479464702089984.0000000000,1585294535504989952.0000000000,9849345444957310976.0000000000,9941160515760209920.0000000000,None,11785,None
|
||||
11000029,E-R00029,7593303031066829824.0000000000,1539366959543490048.0000000000,-10013072297253699584.0000000000,7563671925360780288.0000000000,7612134282308790272.0000000000,1515135781069489920.0000000000,1563598138017499904.0000000000,9983430548021499904.0000000000,10031892904969500672.0000000000,None,11785,None
|
||||
11000030,F-R00030,7305532907080500224.0000000000,1539388528743369984.0000000000,-9838448405941430272.0000000000,7241869510086280192.0000000000,7360325025330140160.0000000000,1480160771121440000.0000000000,1598616286365299968.0000000000,9777642277831849984.0000000000,9896097793075709952.0000000000,None,11786,None
|
||||
11000031,G-R00031,7205500000000000000.0000000000,1539300000000000000.0000000000,-9538400000000000000.0000000000,7141800000000000000.0000000000,7260300000000000000.0000000000,1480100000000000000.0000000000,1598600000000000000.0000000000,9477600000000000000.0000000000,9596000000000000000.0000000000,None,20955,None
|
||||
11000032,H-R00032,7536356782802140160.0000000000,1539240548011399936.0000000000,-9744159706750429184.0000000000,7386356782802140160.0000000000,7686356782802140160.0000000000,1389240548011399936.0000000000,1689240548011399936.0000000000,-9894159706750429184.0000000000,-9594159706750429184.0000000000,None,20955,None
|
||||
11000033,K-R00033,6740235039820449792.0000000000,1539280797403170048.0000000000,-9713256053927880704.0000000000,6590235039820449792.0000000000,6890235039820449792.0000000000,1389280797403170048.0000000000,1689280797403170048.0000000000,-9863256053927880704.0000000000,-9563256053927880704.0000000000,None,20955,None
|
||||
12000001,ADR01,5332454814931099648.0000000000,6032700368271840256.0000000000,-8324663071957520384.0000000000,5182454814931099648.0000000000,5482454814931099648.0000000000,5882700368271840256.0000000000,6182700368271840256.0000000000,-8474663071957520384.0000000000,-8174663071957520384.0000000000,None,22041,None
|
||||
12000002,ADR02,5034040109070720000.0000000000,4624302468910480384.0000000000,-9032456813257299968.0000000000,4884040109070720000.0000000000,5184040109070720000.0000000000,4474302468910479872.0000000000,4774302468910480384.0000000000,-9182456813257299968.0000000000,-8882456813257299968.0000000000,None,22042,None
|
||||
12000003,ADR03,6174725715457210368.0000000000,4914357726000979968.0000000000,-8717885681374310400.0000000000,6024725715457210368.0000000000,6324725715457210368.0000000000,4764357726000979968.0000000000,5064357726000979968.0000000000,-8867885681374310400.0000000000,-8567885681374310400.0000000000,None,22043,None
|
||||
12000004,ADR04,2242403240434639872.0000000000,4815854669694629888.0000000000,-7553306654028019712.0000000000,2092403240434639872.0000000000,2392403240434639872.0000000000,4665854669694629888.0000000000,4965854669694629888.0000000000,-7703306654028019712.0000000000,-7403306654028019712.0000000000,None,22044,None
|
||||
12000005,ADR05,3566457038685740032.0000000000,5327335743611320320.0000000000,-5457243999556049920.0000000000,3416457038685740032.0000000000,3716457038685740032.0000000000,5177335743611320320.0000000000,5477335743611320320.0000000000,-5607243999556049920.0000000000,-5307243999556049920.0000000000,None,22045,None
|
||||
14000001,VR-01,-3900972456350439936.0000000000,2574944990858209792.0000000000,-8266927768219929600.0000000000,-4050972456350439936.0000000000,-3750972456350439936.0000000000,2424944990858209792.0000000000,2724944990858209792.0000000000,-8416927768219929600.0000000000,-8116927768219929600.0000000000,None,11821,None
|
||||
14000002,VR-02,-3731106719789579776.0000000000,3112925601017509888.0000000000,-8155501714385859584.0000000000,-3881106719789579776.0000000000,-3581106719789579776.0000000000,2962925601017509888.0000000000,3262925601017509888.0000000000,-8305501714385859584.0000000000,-8005501714385859584.0000000000,None,11821,None
|
||||
14000003,VR-03,-5431841546101449728.0000000000,2985429153089509888.0000000000,-6018316379407049728.0000000000,-5581841546101449728.0000000000,-5281841546101449728.0000000000,2835429153089509888.0000000000,3135429153089509888.0000000000,-6168316379407049728.0000000000,-5868316379407049728.0000000000,None,11821,None
|
||||
14000004,VR-04,-4545298976287320064.0000000000,2308091069617820160.0000000000,-6316706917218969600.0000000000,-4695298976287320064.0000000000,-4395298976287320064.0000000000,2158091069617819904.0000000000,2458091069617820160.0000000000,-6466706917218969600.0000000000,-6166706917218969600.0000000000,None,11821,None
|
||||
14000005,VR-05,-3876324035229649920.0000000000,2174764391831830016.0000000000,-5975813282299729920.0000000000,-4026324035229649920.0000000000,-3726324035229649920.0000000000,2024764391831830016.0000000000,2324764391831830016.0000000000,-6125813282299729920.0000000000,-5825813282299729920.0000000000,None,11821,None
|
||||
19000001,No Name,1.0000000000,1.0000000000,1.0000000000,-300000.0000000000,300000.0000000000,-300000.0000000000,300000.0000000000,-300000.0000000000,300000.0000000000,None,11806,None
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user