Compare commits
121 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 687f212511 | |||
| 36d92f45fc | |||
| 18b3ea98f8 | |||
| 27bd26254c | |||
| e7f1a90440 | |||
| c00572ddba | |||
| aab08e2eb4 | |||
| ec9ce53c40 | |||
| 31415e49e5 | |||
| edbd63875e | |||
| 1389196ddf | |||
| c73a8d7c37 | |||
| a3c3fd8af4 | |||
| fa9796f3ee | |||
| a13fae7a99 | |||
| 0ee0ddf17d | |||
| fc360e8d22 | |||
| 289f2b3dc5 | |||
| f683a78336 | |||
| 5319878ccc | |||
| 72526aa97c | |||
| 755541e8d2 | |||
| 582268aa3c | |||
| 6f2057c8fa | |||
| 473013dfb3 | |||
| 324d72b001 | |||
| ad4f073e91 | |||
| 9e949c08d4 | |||
| 01f14d6035 | |||
| 7a1f8fd916 | |||
| 69a7d94c91 | |||
| 138f0f9017 | |||
| b2399f2a82 | |||
| fa41a90b02 | |||
| e16c4b07f4 | |||
| 1435af3058 | |||
| a97d862591 | |||
| 1726385874 | |||
| 9018414df4 | |||
| d7baea1e00 | |||
| b7b3f2a832 | |||
| bd0f834eb9 | |||
| 17bceafb23 | |||
| 303db7e61f | |||
| 394d5e1145 | |||
| 4881b591fc | |||
| 71243d9f1c | |||
| 717d12ea16 | |||
| 4f3b9536a7 | |||
| 8ebab13ae4 | |||
| 6902a9cb81 | |||
| bb86705902 | |||
| 6fb26e1c71 | |||
| 11e98dedca | |||
| 7a43df997c | |||
| 387ac82c86 | |||
| 2ab4d43602 | |||
| 3f5cbc78d3 | |||
| 929d19f3e6 | |||
| a569ec0ccc | |||
| 37da9c0a31 | |||
| 10e0d2eb7d | |||
| 26c982e3db | |||
| 8ec1385d18 | |||
| 6921651ab0 | |||
| 1d3adfd9c3 | |||
| 255ca651a0 | |||
| ce58768516 | |||
| 85f5d42367 | |||
| 073b120bc6 | |||
| b4bc3318e6 | |||
| 2449f20cc7 | |||
| 7c078f82ea | |||
| 4e2ea27185 | |||
| 9e22cfd412 | |||
| 73a7f1dfec | |||
| f910ae6054 | |||
| efa67b1421 | |||
| 23b4531bf6 | |||
| 3a224999cc | |||
| 73b2cf5153 | |||
| a9b35c3502 | |||
| c3ca2314fc | |||
| 9e6f68845d | |||
| 62ce9201d9 | |||
| 0f6dd0891f | |||
| f4434277a5 | |||
| 3d5cfd44c4 | |||
| 622e352062 | |||
| 8406369f6b | |||
| a50ca8159a | |||
| 01e24ad079 | |||
| f1307835af | |||
| 45f366dae2 | |||
| 091b54fc98 | |||
| 3498bd096c | |||
| 31c94eac43 | |||
| 05eeda0ffa | |||
| d4eb64784e | |||
| cef41094ca | |||
| c191d50443 | |||
| 1563a04ec1 | |||
| 97b1592dec | |||
| 13a6417a9d | |||
| af4d44c3a4 | |||
| 797b411607 | |||
| d54f910995 | |||
| 44788e2ada | |||
| 07a6e803bc | |||
| ae6690c3b1 | |||
| 97c6111aff | |||
| 685f748736 | |||
| da769a6ac7 | |||
| 4721e7bc06 | |||
| c2746cfe49 | |||
| abe606f74b | |||
| 54c6048d2b | |||
| d27f9d680d | |||
| a83ba3e9eb | |||
| e76481e854 | |||
| 61ff4b574e |
@@ -1,21 +1,27 @@
|
||||
# try to mimic the original gsc provided
|
||||
# mode=ghc
|
||||
mode=c
|
||||
style=allman
|
||||
|
||||
indent=tab
|
||||
indent=force-tab=2
|
||||
lineend=windows
|
||||
|
||||
pad-oper
|
||||
pad-paren-in
|
||||
pad-header
|
||||
|
||||
# delete-empty-lines
|
||||
# pad-brackets-in
|
||||
fill-empty-lines
|
||||
squeeze-lines=2
|
||||
squeeze-ws
|
||||
break-one-line-headers
|
||||
add-braces
|
||||
remove-comment-prefix
|
||||
|
||||
break-blocks
|
||||
# remove-braces
|
||||
|
||||
indent-switches
|
||||
indent-cases
|
||||
indent-after-parens
|
||||
indent-col1-comments
|
||||
|
||||
remove-comment-prefix
|
||||
|
||||
@@ -4,7 +4,7 @@ root = true
|
||||
indent_style = tab
|
||||
indent_size = 2
|
||||
charset = latin1
|
||||
trim_trailing_whitespace = true
|
||||
trim_trailing_whitespace = false
|
||||
insert_final_newline = true
|
||||
|
||||
[*.md]
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
name: main
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
main-win:
|
||||
name: Test on Windows
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- name: Check out files
|
||||
uses: actions/checkout@main
|
||||
|
||||
- name: Setup gsc-tool
|
||||
uses: xensik/setup-gsc-tool@v1
|
||||
with:
|
||||
version: '1.4.0'
|
||||
|
||||
- name: Compile test script
|
||||
run: |
|
||||
gsc-tool.exe -m parse -g iw5 -s pc .
|
||||
@@ -1,41 +1,6 @@
|
||||
# Ignore everything in repository root
|
||||
/*
|
||||
|
||||
# Files to not ignore
|
||||
!/.vscode
|
||||
!/.gitignore
|
||||
!/.editorconfig
|
||||
!/.gitattributes
|
||||
|
||||
!/z_server.bat
|
||||
!/z_server_watchdog.bat
|
||||
!/z_server_pvbrust.bat
|
||||
!/z_server_pvbrust_watchdog.bat
|
||||
!/z_server_pvbvote.bat
|
||||
!/z_server_pvbvote_watchdog.bat
|
||||
|
||||
# Folder to not ignore
|
||||
!/userraw
|
||||
!/main/
|
||||
/main/*
|
||||
!/main/server.cfg
|
||||
!/main/pvbrust.cfg
|
||||
!/main/pvbvote.cfg
|
||||
!/README.md
|
||||
!/out
|
||||
|
||||
!/.astylerc
|
||||
!/z_deploy.bat
|
||||
!/deploy.bat
|
||||
!/deploy.js
|
||||
|
||||
*.zip
|
||||
*.log
|
||||
*.stat
|
||||
logs/
|
||||
demos/
|
||||
images/
|
||||
missingasset.csv
|
||||
userraw/scripts/_commands.gsc
|
||||
userraw/scripts/_customcallbacks.gsc
|
||||
userraw/scripts/bots_custom.gsc
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
[submodule "userraw/waypoints"]
|
||||
path = userraw/waypoints
|
||||
url = https://github.com/ineedbots/iw4x_waypoints
|
||||
@@ -1,180 +1,195 @@
|
||||

|
||||
|
||||
# IW4x Bot Warfare
|
||||
Bot Warfare is a GSC mod for the [IW4x project](https://github.com/XLabsProject/iw4x-client).
|
||||
|
||||
It aims to add playable AI to the multiplayer games of Modern Warfare 2.
|
||||
|
||||
You can find the ModDB release post [here](https://www.moddb.com/mods/bot-warfare/downloads/iw4x-bot-warfare-latest).
|
||||
|
||||
## Contents
|
||||
- [Features](#Features)
|
||||
- [Installation](#Installation)
|
||||
- [Documentation](#Documentation)
|
||||
- [Changelog](#Changelog)
|
||||
- [Credits](#Credits)
|
||||
|
||||
## Features
|
||||
- A Waypoint Editor for creating and modifying bot's waypoints of traversing the map. Have a look at [Using the Waypoint editor](/userraw/bw-assets/wpedit.md).
|
||||
|
||||
- A clean and nice menu, you can edit every bot DVAR within in-game.
|
||||
|
||||
- Everything can be customized, ideal for both personal use and dedicated servers. Have a look at [Documentation](#Documentation) to see whats possible!
|
||||
|
||||
- This mod does not edit ANY stock .gsc files, meaning EVERY other mod is compatible with this mod. Mod doesn't add anything unnecessary, what you see is what you get.
|
||||
|
||||
- Loading waypoints from CSV files, and if the CSV file is missing, will download the CSV from [this repo](https://github.com/ineedbots/iw4x_waypoints) automatically.
|
||||
|
||||
- Adds AI clients to multiplayer games to simulate playing real players. (essentially Combat Training for MW2)
|
||||
- Bots move around the maps with native engine input. (all normal maps, most to all custom maps)
|
||||
- Bots press all the buttons with native engine input (ads, sprint, jump, etc)
|
||||
- Bots play all gamemodes/objectives, they capture flags, plant, defuse bombs, etc. ( all normal modes, most custom modes)
|
||||
- Bots use all killstreaks. Including AC130 and chopper gunner.
|
||||
- Bots target killstreaks, use stingers and other weapons to take out all killstreaks. ( even sentry guns)
|
||||
- Bots can capture and steal care packages.
|
||||
- Bots target equipment, and can even camp TIs.
|
||||
- Bots can camp randomly or when about to use the laptop.
|
||||
- Bots can follow others on own will.
|
||||
- Bots have smooth and realistic aim.
|
||||
- Bots respond smartly to their surroundings, they will go to you if you shoot, uav, etc.
|
||||
- Bots use all deathstreaks, perks and weapons. (including javelin)
|
||||
- Bots difficulty level can be customized and are accurate. (hard is hard, easy is easy, etc.)
|
||||
- Bots each all have different classes, traits, and difficulty and remember it all.
|
||||
- Bots switch from between primaries and secondaries.
|
||||
- Bots can grenade, place claymores and TIs, they even use grenades and tubes in preset map locations.
|
||||
- Bots use grenade launchers and shotgun attachments.
|
||||
- Bots can melee people and sentry guns.
|
||||
- Bots can run!
|
||||
- Bots can climb ladders!
|
||||
- Bots jump shot and drop shot.
|
||||
- Bots detect smoke grenades, stun grenades, flashed and airstrike slows.
|
||||
- Bots will remember their class, killstreak, skill and traits, even on multiround based gametypes.
|
||||
- Bots can throwback grenades.
|
||||
- ... And pretty much everything you expect a Combat Training bot to have
|
||||
|
||||
## Installation
|
||||
0. Make sure that [IW4x](https://xlabs.dev/support_iw4x_client.html) is installed, updated and working properly. (IW4x v0.6.1+)
|
||||
- Download the [latest release](https://github.com/ineedbots/iw4x_bot_warfare/releases) of Bot Warfare.
|
||||
1. Locate your IW4x install folder.
|
||||
2. Move the files/folders found in 'Move files to root of IW4x folder' from the Bot Warfare release archive you downloaded into the root of your IW4x install folder.
|
||||
- The folder/file structure should follow as '.IW4x game folder\mods\bots\z_svr_bots.iwd'.
|
||||
3. The mod is now installed, now run your game.
|
||||
- If you are a dedicated server, you will need to set the DVAR 'fs_game' to 'mods/bots'
|
||||
- If you are not a dedicated server, open the 'Mods' option from the main menu of the game and select 'bots' and then 'Launch'.
|
||||
4. The mod should be loaded! Now go start a map and play!
|
||||
|
||||
## Documentation
|
||||
|
||||
### Menu Usage
|
||||
- You can open the menu by pressing the Action Slot 2 key (default '5').
|
||||
|
||||
- You can navigate the options by pressing your movement keys (default WASD), and you can select options by pressing your jump key (default SPACE).
|
||||
|
||||
- Pressing the menu button again closes menus.
|
||||
|
||||
### DVARs
|
||||
| Dvar | Description | Default Value |
|
||||
|----------------------------------|---------------------------------------------------------------------------------------------|--------------:|
|
||||
| bots_main | Enable this mod. | true |
|
||||
| bots_main_firstIsHost | The first player to connect will be given host. | false |
|
||||
| bots_main_GUIDs | A comma separated list of GUIDs of players who will be given host. | "" |
|
||||
| bots_main_waitForHostTime | How many seconds to wait for the host player to connect before adding bots to the match. | 10 |
|
||||
| bots_main_menu | Enable the in-game menu for hosts. | true |
|
||||
| bots_main_debug | Enable the in-game waypoint editor. | false |
|
||||
| bots_main_kickBotsAtEnd | Kick the bots at the end of a match. | false |
|
||||
| bots_main_chat | The rate bots will chat at, set to 0 to disable. | 1.0 |
|
||||
| bots_manage_add | Amount of bots to add to the game, once bots are added, resets back to `0`. | 0 |
|
||||
| bots_manage_fill | Amount of players/bots (look at `bots_manage_fill_mode`) to maintain in the match. | 0 |
|
||||
| bots_manage_fill_mode | `bots_manage_fill` players/bots counting method.<ul><li>`0` - counts both players and bots.</li><li>`1` - only counts bots.</li></ul> | 0 |
|
||||
| bots_manage_fill_kick | If the amount of players/bots in the match exceeds `bots_manage_fill`, kick bots until no longer exceeds. | false |
|
||||
| bots_manage_fill_spec | If when counting players for `bots_manage_fill` should include spectators. | true |
|
||||
| bots_team | One of `autoassign`, `allies`, `axis`, `spectator`, or `custom`. What team the bots should be on. | autoassign |
|
||||
| bots_team_amount | When `bots_team` is set to `custom`. The amount of bots to be placed on the axis team. The remainder will be placed on the allies team. | 0 |
|
||||
| bots_team_force | If the server should force bots' teams according to the `bots_team` value. When `bots_team` is `autoassign`, unbalanced teams will be balanced. This dvar is ignored when `bots_team` is `custom`. | false |
|
||||
| bots_team_mode | When `bots_team_force` is `true` and `bots_team` is `autoassign`, players/bots counting method. <ul><li>`0` - counts both players and bots.</li><li>`1` - only counts bots</li></ul> | 0 |
|
||||
| bots_skill | Bots' difficulty.<ul><li>`0` - Random difficulty for each bot.</li><li>`1` - Easiest difficulty for all bots.</li><li>`2` to `6` - Between easy and hard difficulty for all bots.</li><li>`7` - The hardest difficulty for all bots.</li><li>`8` - custom (look at the `bots_skill_<team>_<difficulty>` dvars</li></ul> | 0 |
|
||||
| bots_skill_axis_hard | When `bots_skill` is set to `8`, the amount of hard difficulty bots to set on the axis team. | 0 |
|
||||
| bots_skill_axis_med | When `bots_skill` is set to `8`, the amount of medium difficulty bots to set on the axis team. The remaining bots on the team will be set to easy difficulty. | 0 |
|
||||
| bots_skill_allies_hard | When `bots_skill` is set to `8`, the amount of hard difficulty bots to set on the allies team. | 0 |
|
||||
| bots_skill_allies_med | When `bots_skill` is set to `8`, the amount of medium difficulty bots to set on the allies team. The remaining bots on the team will be set to easy difficulty. | 0 |
|
||||
| bots_skill_min | The minimum difficulty level for the bots. | 1 |
|
||||
| bots_skill_max | The maximum difficulty level for the bots. | 7 |
|
||||
| bots_loadout_reasonable | If the bots should filter bad performing create-a-class selections. | false |
|
||||
| bots_loadout_allow_op | If the bots should be able to use overpowered and annoying create-a-class selections. | true |
|
||||
| bots_loadout_rank | What rank to set the bots.<ul><li>`-1` - Average of all players in the match.</li><li>`0` - All random.</li><li>`1` or higher - Sets the bots' rank to this.</li></ul> | -1 |
|
||||
| bots_loadout_prestige | What prestige to set the bots.<ul><li>`-1` - Same as host player in the match.</li><li>`-2` - All random.</li><li>`0` or higher - Sets the bots' prestige to this.</li></ul> | -1 |
|
||||
| bots_play_move | If the bots can move. | true |
|
||||
| bots_play_knife | If the bots can knife. | true |
|
||||
| bots_play_fire | If the bots can fire. | true |
|
||||
| bots_play_nade | If the bots can grenade. | true |
|
||||
| bots_play_take_carepackages | If the bots can take carepackages. | true |
|
||||
| bots_play_obj | If the bots can play the objective. | true |
|
||||
| bots_play_camp | If the bots can camp. | true |
|
||||
| bots_play_jumpdrop | If the bots can jump/drop shot. | true |
|
||||
| bots_play_target_other | If the bots can target other entities other than players. | true |
|
||||
| bots_play_killstreak | If the bots can call in killstreaks. | true |
|
||||
| bots_play_ads | If the bots can aim down sights. | true |
|
||||
| bots_play_aim | If the bots can aim. | true |
|
||||
|
||||
## Changelog
|
||||
- v2.1.0
|
||||
- Bot chatter system, bots_main_chat
|
||||
- Greatly reduce script variable usage
|
||||
- Fix bots slowly reacting in remote streaks
|
||||
- Improved bots mantling and stuck
|
||||
- Improved bots aim
|
||||
- Fix some runtime errors
|
||||
- Fixed bots aim in third person
|
||||
- Bots sprint more
|
||||
- Improved bots sight on enemies
|
||||
- Bots play hidden gamemodes like one-flag and arena
|
||||
- Bots do random actions while waiting at an objective
|
||||
- Improved bots from getting stuck
|
||||
- Better bot difficulty management, bots_skill_min and bots_skill_max
|
||||
|
||||
- v2.0.1
|
||||
- Reduced bots crouching
|
||||
- Increased bots sprinting
|
||||
- Improved bots mantling, crouching and knifing glass when needed
|
||||
- Fixed possible script runtime errors
|
||||
- Fixed demolition spawn killing
|
||||
- Improved domination
|
||||
- Bots use explosives more if they have it
|
||||
- Fixed bots moving their player when using remote
|
||||
- Bots aim slower when ads'ing
|
||||
- Fixed bots holding breath
|
||||
- Bots are more smart when waiting for carepackages
|
||||
- Improved and fixed various waypoints for maps
|
||||
- Fixed bots rubberbanding movement when their goal changes
|
||||
- Added bots quickscoping with snipers
|
||||
- Added bots reload canceling and fast swaps
|
||||
- Bots use C4
|
||||
- Improved revenge
|
||||
- Bots can swap weapons on spawn more likely
|
||||
|
||||
- v2.0.0
|
||||
- Initial reboot release
|
||||
|
||||
|
||||
- TODOs
|
||||
- A variable leak in _menu (script)
|
||||
- Recoil for bots (engine, maybe script)
|
||||
- Use proper activate button for bombs, carepackages, etc (script, use +activate)
|
||||
- Proper weapon swaps, including altmode (engine, then script)
|
||||
- Use static turrets in maps (script)
|
||||
- Proper use of pred missile (script and engine)
|
||||
- Fix testclient view angle clamping (messes with ac130 and chopper gunner) (engine)
|
||||
|
||||
## Credits
|
||||
- IW4x Team - https://github.com/XLabsProject/iw4x-client
|
||||
- CoD4x Team - https://github.com/callofduty4x/CoD4x_Server
|
||||
- INeedGames - http://www.moddb.com/mods/bot-warfare
|
||||
- tinkie101 - https://web.archive.org/web/20120326060712/http://alteriw.net/viewtopic.php?f=72&t=4869
|
||||
- PeZBot team - http://www.moddb.com/mods/pezbot
|
||||
- apdonato - http://rsebots.blogspot.ca/
|
||||
- Ability
|
||||
- Salvation
|
||||
- VicRattlehead - https://www.moddb.com/members/vicrattlehead
|
||||
|
||||
Feel free to use code, host on other sites, host on servers, mod it and merge mods with it, just give credit where credit is due!
|
||||
-INeedGames/INeedBot(s) @ ineedbots@outlook.com
|
||||
> [!NOTE]
|
||||
> This is a fork of [ineedbots/iw4_bot_warfare](https://github.com/ineedbots/iw4_bot_warfare) adapted for Xbox 360 (Xenon).
|
||||
|
||||

|
||||
|
||||
# IW4 Bot Warfare
|
||||
Bot Warfare is a GSC mod for [IW4x](https://alterware.dev/).
|
||||
|
||||
It aims to add playable AI to the multiplayer games of Modern Warfare 2.
|
||||
|
||||
You can find the ModDB release post [here](https://www.moddb.com/mods/bot-warfare/downloads/iw4-bot-warfare-latest).
|
||||
|
||||
## Contents
|
||||
- [Features](#Features)
|
||||
- [Installation](#Installation)
|
||||
- [Documentation](#Documentation)
|
||||
- [Changelog](#Changelog)
|
||||
- [Credits](#Credits)
|
||||
|
||||
## Features
|
||||
- A Waypoint Editor for creating and modifying bot's waypoints of traversing the map. Have a look at [Using the Waypoint editor](/bw-assets/wpedit.md).
|
||||
|
||||
- A clean and nice menu, you can edit every bot DVAR within in-game.
|
||||
|
||||
- Everything can be customized, ideal for both personal use and dedicated servers. Have a look at [Documentation](#Documentation) to see whats possible!
|
||||
|
||||
- This mod does not edit ANY stock .gsc files, meaning EVERY other mod is compatible with this mod. Mod doesn't add anything unnecessary, what you see is what you get.
|
||||
|
||||
- Loading waypoints from CSV files.
|
||||
|
||||
- Adds AI clients to multiplayer games to simulate playing real players. (essentially Combat Training for MW2)
|
||||
- Bots move around the maps with native engine input. (all normal maps, most to all custom maps)
|
||||
- Bots press all the buttons with native engine input (ads, sprint, jump, etc)
|
||||
- Bots play all gamemodes/objectives, they capture flags, plant, defuse bombs, etc. ( all normal modes, most custom modes)
|
||||
- Bots use all killstreaks. Including AC130 and chopper gunner.
|
||||
- Bots target killstreaks, use stingers and other weapons to take out all killstreaks. ( even sentry guns)
|
||||
- Bots can capture and steal care packages.
|
||||
- Bots target equipment, and can even camp TIs.
|
||||
- Bots can camp randomly or when about to use the laptop.
|
||||
- Bots can follow others on own will.
|
||||
- Bots have smooth and realistic aim.
|
||||
- Bots respond smartly to their surroundings, they will go to you if you shoot, uav, etc.
|
||||
- Bots use all deathstreaks, perks and weapons. (including javelin)
|
||||
- Bots difficulty level can be customized and are accurate. (hard is hard, easy is easy, etc.)
|
||||
- Bots each all have different classes, traits, and difficulty and remember it all.
|
||||
- Bots switch from between primaries and secondaries.
|
||||
- Bots can grenade, place claymores and TIs, they even use grenades and tubes in preset map locations.
|
||||
- Bots use grenade launchers and shotgun attachments.
|
||||
- Bots can melee people and sentry guns.
|
||||
- Bots can run!
|
||||
- Bots can climb ladders!
|
||||
- Bots jump shot and drop shot.
|
||||
- Bots detect smoke grenades, stun grenades, flashed and airstrike slows.
|
||||
- Bots will remember their class, killstreak, skill and traits, even on multiround based gametypes.
|
||||
- Bots can throwback grenades.
|
||||
- ... And pretty much everything you expect a Combat Training bot to have
|
||||
|
||||
## Installation
|
||||
0. Make sure that [IW4x](https://alterware.dev/) is installed, updated and working properly.
|
||||
- Download the [latest release](https://github.com/ineedbots/iw4_bot_warfare/releases) of Bot Warfare.
|
||||
1. Locate your MW2 install folder.
|
||||
2. Move the files/folders found in `Move files to root of MW2 folder` from the Bot Warfare release archive you downloaded into the root of your MW2 install folder.
|
||||
- The folder/file structure should follow as `.MW2 game folder\mods\mp_bots\z_svr_bots.iwd`.
|
||||
3. The mod is now installed, now run your game.
|
||||
- If you are a dedicated server, you will need to set the DVAR `fs_game` to `mods/mp_bots`
|
||||
- If you are not a dedicated server, open the `Mods` option from the main menu of the game and select `mp_bots` and then `Launch`.
|
||||
4. The mod should be loaded! Now go start a map and play!
|
||||
|
||||
## Documentation
|
||||
|
||||
### Menu Usage
|
||||
- You can open the menu by pressing the Action Slot 2 key (default '5').
|
||||
|
||||
- You can navigate the options by pressing your movement keys (default WASD), and you can select options by pressing your jump key (default SPACE).
|
||||
|
||||
- Pressing the menu button again closes menus.
|
||||
|
||||
### DVARs
|
||||
| Dvar | Description | Default Value |
|
||||
|----------------------------------|---------------------------------------------------------------------------------------------|--------------:|
|
||||
| bots_main | Enable this mod. | 1 |
|
||||
| bots_main_firstIsHost | The first player to connect will be given host. | 0 |
|
||||
| bots_main_GUIDs | A comma separated list of GUIDs of players who will be given host. | |
|
||||
| bots_main_waitForHostTime | How many seconds to wait for the host player to connect before adding bots to the match. | 10 |
|
||||
| bots_main_menu | Enable the in-game menu for hosts. | 1 |
|
||||
| bots_main_debug | Enable the in-game waypoint editor at start of the game, or enable bot event prints. <ul><li>`0` - disable</li><li>`1` - for just debug events</li><li>`2` - for every event</li><ul> | 0 |
|
||||
| bots_main_kickBotsAtEnd | Kick the bots at the end of a match. | 0 |
|
||||
| bots_manage_add | Amount of bots to add to the game, once bots are added, resets back to `0`. | 0 |
|
||||
| bots_manage_fill | Amount of players/bots (look at `bots_manage_fill_mode`) to maintain in the match. | 0 |
|
||||
| bots_manage_fill_mode | `bots_manage_fill` players/bots counting method.<ul><li>`0` - counts both players and bots.</li><li>`1` - only counts bots.</li><li>`2` - exactly `0` but auto adjusts `bots_manage_fill` to map.</li><li>`3` - exactly `1` but auto adjusts `bots_manage_fill` to map.</li><li>`4` - bots are used for balancing teams.</li><li>`5` - exactly `4` but auto adjusts `bots_manage_fill` to map.</li></ul> | 0 |
|
||||
| bots_manage_fill_watchplayers | Bots will not be added until one player is in the game | 0 |
|
||||
| bots_manage_fill_kick | If the amount of players/bots in the match exceeds `bots_manage_fill`, kick bots until no longer exceeds. | 0 |
|
||||
| bots_manage_fill_spec | If when counting players for `bots_manage_fill` should include spectators. | 1 |
|
||||
| bots_team | One of `autoassign`, `allies`, `axis`, `spectator`, or `custom`. What team the bots should be on. | autoassign |
|
||||
| bots_team_amount | When `bots_team` is set to `custom`. The amount of bots to be placed on the axis team. The remainder will be placed on the allies team. | 0 |
|
||||
| bots_team_force | If the server should force bots' teams according to the `bots_team` value. When `bots_team` is `autoassign`, unbalanced teams will be balanced. This dvar is ignored when `bots_team` is `custom`. | 0 |
|
||||
| bots_team_mode | When `bots_team_force` is `1` and `bots_team` is `autoassign`, players/bots counting method. <ul><li>`0` - counts both players and bots.</li><li>`1` - only counts bots</li></ul> | 0 |
|
||||
| bots_skill | Bots' difficulty.<ul><li>`0` - Random difficulty for each bot.</li><li>`1` - Easiest difficulty for all bots.</li><li>`2` to `6` - Between easy and hard difficulty for all bots.</li><li>`7` - The hardest difficulty for all bots.</li><li>`8` - custom (look at the `bots_skill_<team>_<difficulty>` dvars)</li><li>`9` - Every difficulty parameter is randomized</li></ul> | 0 |
|
||||
| bots_skill_axis_hard | When `bots_skill` is set to `8`, the amount of hard difficulty bots to set on the axis team. | 0 |
|
||||
| bots_skill_axis_med | When `bots_skill` is set to `8`, the amount of medium difficulty bots to set on the axis team. The remaining bots on the team will be set to easy difficulty. | 0 |
|
||||
| bots_skill_allies_hard | When `bots_skill` is set to `8`, the amount of hard difficulty bots to set on the allies team. | 0 |
|
||||
| bots_skill_allies_med | When `bots_skill` is set to `8`, the amount of medium difficulty bots to set on the allies team. The remaining bots on the team will be set to easy difficulty. | 0 |
|
||||
| bots_skill_min | The minimum difficulty level for the bots. | 1 |
|
||||
| bots_skill_max | The maximum difficulty level for the bots. | 7 |
|
||||
| bots_loadout_reasonable | If the bots should filter bad performing create-a-class selections. | 0 |
|
||||
| bots_loadout_allow_op | If the bots should be able to use overpowered and annoying create-a-class selections. | 1 |
|
||||
| bots_loadout_rank | What rank to set the bots.<ul><li>`-1` - Average of all players in the match.</li><li>`0` - All random.</li><li>`1` or higher - Sets the bots' rank to this.</li></ul> | -1 |
|
||||
| bots_loadout_prestige | What prestige to set the bots.<ul><li>`-1` - Same as host player in the match.</li><li>`-2` - All random.</li><li>`0` or higher - Sets the bots' prestige to this.</li></ul> | -1 |
|
||||
| bots_play_move | If the bots can move. | 1 |
|
||||
| bots_play_knife | If the bots can knife. | 1 |
|
||||
| bots_play_fire | If the bots can fire. | 1 |
|
||||
| bots_play_nade | If the bots can grenade. | 1 |
|
||||
| bots_play_take_carepackages | If the bots can take carepackages. | 1 |
|
||||
| bots_play_obj | If the bots can play the objective. | 1 |
|
||||
| bots_play_camp | If the bots can camp. | 1 |
|
||||
| bots_play_jumpdrop | If the bots can jump/drop shot. | 1 |
|
||||
| bots_play_target_other | If the bots can target other entities other than players. | 1 |
|
||||
| bots_play_killstreak | If the bots can call in killstreaks. | 1 |
|
||||
| bots_play_ads | If the bots can aim down sights. | 1 |
|
||||
| bots_play_aim | If the bots can aim. | 1 |
|
||||
|
||||
## Changelog
|
||||
- v2.3.0
|
||||
- Fixed bots aiming in ac130/chopper being broken at times
|
||||
- Bots properly use pred missiles
|
||||
- Smoothed bot aim at range
|
||||
- Fixed bots_manage_fill_spec players being counted with bots_manage_fill_mode 1 (bot only)
|
||||
- Added bots_manage_fill_watchplayers dvar
|
||||
- Bots hop off turrets if they get stuck on one
|
||||
- Fixed script variable leak with opening and closing the in-game menu
|
||||
|
||||
- v2.2.0
|
||||
- Bots can now melee lunge
|
||||
- Fixed some chat related script runtime errors
|
||||
- Works with latest IW4x
|
||||
- Waypoints only load from csv now
|
||||
- Fix bots possibly being stuck in sab
|
||||
- Major cleanup
|
||||
|
||||
- v2.1.0
|
||||
- Bot chatter system, bots_main_chat
|
||||
- Greatly reduce script variable usage
|
||||
- Fix bots slowly reacting in remote streaks
|
||||
- Improved bots mantling and stuck
|
||||
- Improved bots aim
|
||||
- Fix some runtime errors
|
||||
- Fixed bots aim in third person
|
||||
- Bots sprint more
|
||||
- Improved bots sight on enemies
|
||||
- Bots play hidden gamemodes like one-flag and arena
|
||||
- Bots do random actions while waiting at an objective
|
||||
- Improved bots from getting stuck
|
||||
- Better bot difficulty management, bots_skill_min and bots_skill_max
|
||||
|
||||
- v2.0.1
|
||||
- Reduced bots crouching
|
||||
- Increased bots sprinting
|
||||
- Improved bots mantling, crouching and knifing glass when needed
|
||||
- Fixed possible script runtime errors
|
||||
- Fixed demolition spawn killing
|
||||
- Improved domination
|
||||
- Bots use explosives more if they have it
|
||||
- Fixed bots moving their player when using remote
|
||||
- Bots aim slower when ads'ing
|
||||
- Fixed bots holding breath
|
||||
- Bots are more smart when waiting for carepackages
|
||||
- Improved and fixed various waypoints for maps
|
||||
- Fixed bots rubberbanding movement when their goal changes
|
||||
- Added bots quickscoping with snipers
|
||||
- Added bots reload canceling and fast swaps
|
||||
- Bots use C4
|
||||
- Improved revenge
|
||||
- Bots can swap weapons on spawn more likely
|
||||
|
||||
- v2.0.0
|
||||
- Initial reboot release
|
||||
|
||||
|
||||
- TODOs
|
||||
- Recoil for bots (engine, maybe script)
|
||||
- Use static turrets in maps
|
||||
|
||||
## Credits
|
||||
- IW4x Team - https://github.com/iw4x/iw4x-client
|
||||
- CoD4x Team - https://github.com/callofduty4x/CoD4x_Server
|
||||
- INeedGames - http://www.moddb.com/mods/bot-warfare
|
||||
- tinkie101 - https://web.archive.org/web/20120326060712/http://alteriw.net/viewtopic.php?f=72&t=4869
|
||||
- PeZBot team - http://www.moddb.com/mods/pezbot
|
||||
- apdonato - https://web.archive.org/web/20240516065610/http://rsebots.blogspot.com/
|
||||
- Ability
|
||||
- Salvation
|
||||
- VicRattlehead - https://www.moddb.com/members/vicrattlehead
|
||||
|
||||
Feel free to use code, host on other sites, host on servers, mod it and merge mods with it, just give credit where credit is due!
|
||||
-INeedGames/INeedBot(s) @ ineedbots@outlook.com
|
||||
|
||||
|
Before Width: | Height: | Size: 654 KiB After Width: | Height: | Size: 654 KiB |
|
Before Width: | Height: | Size: 172 KiB After Width: | Height: | Size: 172 KiB |
|
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 1.6 MiB After Width: | Height: | Size: 1.6 MiB |
|
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 60 KiB |
|
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 5.7 KiB |
@@ -1,9 +1,9 @@
|
||||
# IW4x Bot Warfare Waypoint Editor
|
||||
# IW4 Bot Warfare Waypoint Editor
|
||||
First things first, Bot Warfare uses the [AStar search algorithm](https://en.wikipedia.org/wiki/A*_search_algorithm) for creating paths for the bots to find their way through a map.
|
||||
|
||||
The AStar search algorithm requires a [set of waypoints](https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)) defining where all the paths are in the map.
|
||||
|
||||
Now if you want to modify existing or create new waypoints for IW4x maps, this is the read for you.
|
||||
Now if you want to modify existing or create new waypoints for MW2 maps, this is the read for you.
|
||||
|
||||
## Contents
|
||||
- [Setting up the Waypoint Editor](#Setting-up-the-Waypoint-Editor)
|
||||
@@ -13,22 +13,19 @@ Now if you want to modify existing or create new waypoints for IW4x maps, this i
|
||||
The Bot Warfare mod comes with the Waypoint Editor out of the box, so its just a matter of telling the mod you want to use it. Its a matter of setting the 'bots_main_debug' DVAR to '1'.
|
||||
|
||||
Start your game, and load up the Bot Warfare mod. Now open your console with tilde(~).
|
||||

|
||||

|
||||
|
||||
In the console, type in ```set bots_main_debug 1```
|
||||

|
||||
In the console, type in `set bots_main_debug 1`
|
||||

|
||||
|
||||
Now start a match with the map you want to edit.
|
||||
|
||||
It should be noted that waypoints load in this following order;
|
||||
1. check the 'waypoints' folder (FS_Game\waypoints) for a csv file
|
||||
2. load the waypoints from GSC (maps\mp\bots\waypoints)
|
||||
3. check online at [this repo](https://github.com/ineedbots/iw4x_waypoints) for the waypoints (if dedicated server, or -scriptablehttp flag)
|
||||
It should be noted that waypoints load from the 'waypoints' folder (<fs_game>\scriptdata\waypoints) for a csv file.
|
||||
|
||||
If all fail to load waypoints, then the bots will not know how to navigate the map.
|
||||
If csv fails to load waypoints, then the bots will not know how to navigate the map.
|
||||
|
||||
## The Editor
|
||||

|
||||

|
||||
This is the Waypoint Editor. You can view, edit and create the waypoint graph.
|
||||
- Each number you see in the world is a waypoint.
|
||||
- The pink lines show the links between the waypoints, a link defines that a bot can walk from A to B.
|
||||
@@ -69,10 +66,10 @@ Pressing any of these buttons will initiate a command to the Waypoint Editor.
|
||||
Okay, now that you know how to control the Editor, lets now goahead and create some waypoints.
|
||||
|
||||
Here I added a waypoint.
|
||||

|
||||

|
||||
|
||||
And I added a second waypoint.
|
||||

|
||||

|
||||
|
||||
There are several types of waypoints, holding a modifier button before pressing the add waypoint button will create a special type of waypoint.
|
||||
- Types of waypoints:
|
||||
@@ -85,7 +82,7 @@ There are several types of waypoints, holding a modifier button before pressing
|
||||
- javelin - bots will use the javelin and lockon at the target location
|
||||
|
||||
Here I linked the two waypoints together.
|
||||

|
||||

|
||||
|
||||
Linking waypoints are very important, it tells the bots that they can reach waypoint 1 from waypoint 0, and vice versa.
|
||||
|
||||
@@ -95,7 +92,5 @@ Once you feel like you are done, press the Save button. This will generate a [CS
|
||||
|
||||
That is it! The waypoints should load next time you start your game!
|
||||
|
||||
Your waypoints CSV file will be located at ```FS_Game/waypoints/<mapname>_wp.csv```. (userraw folder if fs_game is blank)
|
||||

|
||||
|
||||
You can share your waypoints publicly (and can be loaded by other users of Bot Warfare remotely) by making a Pull Request to the [IW4x_Waypoints repo](https://github.com/ineedbots/iw4x_waypoints).
|
||||
Your waypoints CSV file will be located at `<fs_game>\scriptdata\waypoints\<mapname>_wp.csv`. (userraw folder if fs_game is blank)
|
||||

|
||||
@@ -1,6 +0,0 @@
|
||||
xcopy iw4x_bot_warfare\userraw\maps userraw\maps\ /Y /I /E /H /C
|
||||
xcopy iw4x_bot_warfare\userraw\scripts userraw\scripts\ /Y /I /E /H /C
|
||||
xcopy iw4x_bot_warfare\userraw\waypoints userraw\waypoints\ /Y /I /E /H /C
|
||||
xcopy iw4x_bot_warfare\userraw\mp userraw\mp\ /Y /I /E /H /C
|
||||
xcopy iw4x_bot_warfare\main main\ /Y /I /E /H /C
|
||||
xcopy iw4x_bot_warfare\userraw\bots.txt userraw\ /Y /I /H /C
|
||||
@@ -1,54 +0,0 @@
|
||||
// nodejs 14+
|
||||
|
||||
const exec = require('util').promisify(require('child_process').exec)
|
||||
|
||||
const repo_name = 'iw4x_bot_warfare'
|
||||
const repo_url = `https://github.com/ineedbots/${repo_name}`
|
||||
const deploy_check_rate = 60000
|
||||
const title = 'IW4x Bot Warfare Git Deployer'
|
||||
|
||||
function printToConsole(what, error = false)
|
||||
{
|
||||
log = error ? console.error : console.log
|
||||
|
||||
log(`[${new Date().toISOString()}]:`, what)
|
||||
}
|
||||
|
||||
async function doDeploy() {
|
||||
try {
|
||||
const { stdout, stderr } = await exec(`cd ${repo_name} && git fetch`)
|
||||
|
||||
if (stderr.length <= 0)
|
||||
return
|
||||
|
||||
if (stderr.startsWith('From '))
|
||||
{
|
||||
printToConsole('git fetched! Pulling...')
|
||||
await exec(`cd ${repo_name} && git pull && git submodule update --init --recursive`)
|
||||
printToConsole('Deploying...')
|
||||
await exec('deploy.bat')
|
||||
printToConsole('Deployed!')
|
||||
}
|
||||
} catch (e) {
|
||||
printToConsole(e, true)
|
||||
|
||||
if (!e.stderr.startsWith('The system cannot find the path specified'))
|
||||
return
|
||||
|
||||
printToConsole('Cloning repo...')
|
||||
try {
|
||||
await exec(`git clone ${repo_url} && cd ${repo_name} && git submodule update --init --recursive`)
|
||||
|
||||
printToConsole('Cloned!')
|
||||
printToConsole('Deploying...')
|
||||
await exec('deploy.bat')
|
||||
printToConsole('Deployed!')
|
||||
} catch (f) {
|
||||
printToConsole(f, true)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
process.stdout.write(`${String.fromCharCode(27)}]0;${title}${String.fromCharCode(7)}`)
|
||||
doDeploy()
|
||||
setInterval(doDeploy, deploy_check_rate)
|
||||
@@ -1,659 +0,0 @@
|
||||
///////////////////////////////////////////////////
|
||||
/// IW4x Server Configuration file //
|
||||
///////////////////////////////////////////////////
|
||||
//This config best view with Notepad++ OR //
|
||||
//Other non-windows notepad of your choice. //
|
||||
///////////////////////////////////////////////////
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// SERVER NAME & COLORS TIPS //
|
||||
//////////////////////////////////////////////////
|
||||
// //
|
||||
// ^1 Red //
|
||||
// ^2 Green //
|
||||
// ^3 yellow //
|
||||
// ^4 Blue //
|
||||
// ^5 Cyan //
|
||||
// ^6 Pink //
|
||||
// ^7 White //
|
||||
// ^8 Depends on the map you playing. //
|
||||
// American maps: Dark Green //
|
||||
// Russian maps: Dark Red //
|
||||
// British maps: Dark Blue //
|
||||
// ^9 grey //
|
||||
// ^0 Black //
|
||||
// ^: Rainbow colors //
|
||||
// //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
|
||||
set sv_hostname "^1Bot ^3War^5fare ^4Players vs bots ^724/7 Rust 10x" // Sets the server hostname
|
||||
set sv_motd "^1Bot ^3War^5fare" // Sets a custom motd which is shown on the loadscreen when a player joins
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// ADMIN INFO //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set _Admin "INeedGames" // Your username.
|
||||
set _Email "ineedbots@outlook.com" // E-mail address. you can leave blank
|
||||
set _Website "http://www.moddb.com/mods/bot-warfare" // Website
|
||||
set _Location "Canada - West" // Location
|
||||
|
||||
set sv_wwwBaseURL "http://rawcdn.githack.com/ineedbots/www_host/main/iw4x/"
|
||||
set sv_wwwDownload "1"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// NON-GAMEPLAY CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set sv_securityLevel "23" // Configures the servers security level.
|
||||
set sv_customTextColor "" // custom color for ^;
|
||||
set g_password "" // Password Protected Server. Leave blank if you want players to join
|
||||
set g_inactivity "180" // Enable auto kick feature for idle/AFK players
|
||||
set g_inactivitySpectator "180" // Time in seconds before a spectator gets kicked
|
||||
set g_logSync "1" // 1 always flush games_mp.log, 0 only flush on game end
|
||||
set g_log "logs/pvbrust/games_mp.log" // Gamelog filename. If you edit this..make sure you change B3.xml if you have bigbrotherbot.
|
||||
set sv_allowClientConsole "1" // Enable or Disable players ability to access server commands
|
||||
set sv_maxclients "18" // Max players in your server.
|
||||
set sv_maxPing "0" // (BUGGED) Maximum ping allowed, any higher and players will get kicked.( If you get 'server is for low ping players only', set this to 0)
|
||||
set sv_timeout "20" // Timeout time period. You will timeout after (20) seconds when attempting to connect or if you are getting connection interruptions
|
||||
set sv_reconnectlimit "3" // How many times you can try to reconnect
|
||||
set com_logFilter "1" // Removes ~95% of unneeded lines from the log.
|
||||
set sv_pure "0" // verifying cilent files
|
||||
set sv_sayName "^7Console" // name server-side 'say' commands show up as
|
||||
set sv_floodProtect "1" // Chat Spam Protection
|
||||
set sv_kickBanTime "300" // Kick Ban Duration. Time before player can re-join the server after getting kicked.
|
||||
set party_enable "0" // Lobby Mode Server. Read the wiki more about this. If you want sv_maprotation & control your gametype settings. Leave this at 0.
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// BASE GAME CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
// //
|
||||
// war - Team Deathmatch //
|
||||
// dm - Free-for-all //
|
||||
// dom - Domination //
|
||||
// koth - Headquarters //
|
||||
// sab - Sabotage //
|
||||
// sd - Search and Destroy //
|
||||
// arena - Arena //
|
||||
// dd - Demolition //
|
||||
// ctf - Capture the Flag //
|
||||
// oneflag - One-Flag CTF //
|
||||
// gtnw - Global Thermo-Nuclear War //
|
||||
// //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set g_gametype "dom" // Defualt gametype in case map rotation doesnt have any gametypes. Choose a gametype from the list above.
|
||||
set scr_player_forcerespawn "1" // Players respawn automatically after being fragged
|
||||
set scr_thirdperson "0" // third-person mode
|
||||
set scr_game_hardpoints "1" // Enable/Disable Killstreak rewards
|
||||
set scr_hardpoint_allowhelicopter "1" // Allow Attack Helicopters
|
||||
set scr_hardpoint_allowuav "1" // Allow UAV
|
||||
set scr_hardpoint_allowartillery "1" // Allow Airstrikes
|
||||
set scr_game_perks "1" // Allow players to have perks
|
||||
set scr_game_allowkillcam "1" // Allow Killcam.
|
||||
set scr_nukeTimer "10" // Timer when nuke goes off
|
||||
set scr_diehard "0" // die-hard mode. Teammates will have to relieve each other.
|
||||
set scr_teambalance "0" // Enable or Disable auto balance.
|
||||
set scr_game_spectatetype "2" // Allow Spectators. 0 Disabled, 1 Team/Player only, 2 Free
|
||||
set scr_player_suicidespawndelay "0" // Wait before you respawn if you committed suicide.
|
||||
set scr_player_sprinttime "4" // Sprint time, duration a player can run.
|
||||
set scr_game_killstreakdelay "8" // Delay your killstreaks
|
||||
set scr_game_objectiveStreaks "1" // Enable Chopper, AC130 and Nuke
|
||||
set scr_classic "0" // Enable IW3 killstreak system
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// XP BOOST CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
// uncomment below commands for XP config //
|
||||
// by removing the // before each set dvar. //
|
||||
// Change "war" gametype to your liking. //
|
||||
// //
|
||||
// DO NOT ABUSE! Some people like to rank. //
|
||||
// DON'T BE A DICK! Warn HIGH XP via hostname. //
|
||||
// Don't know what you doing? Dont touch it! //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_xpscale "10" // IWs way of Double XP.
|
||||
|
||||
//set scr_war_score_kill "0" // Amount of XP by each kill.
|
||||
//set scr_war_score_headshot "0" // Amount of XP by each headshot.
|
||||
//set scr_war_score_death "0" // Amount of XP by each death.
|
||||
//set scr_war_score_suicide "0" // Amount of XP by each suicide.
|
||||
//set scr_war_score_assist "0" // Amount of XP by each assist.
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// HARDCORE CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
// uncomment below commands for some hardcore //
|
||||
// by removing the // before each set dvar. //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
// set g_hardcore "1" // Enable hardcore mode
|
||||
// set scr_hardcore "1" // Enable hardcore mode again...
|
||||
// set ui_hud_hardcore "1" // Removes Heads up display in hardcore mode.
|
||||
// set scr_game_deathpointloss "0" // Points Loss on death XP.
|
||||
// set scr_game_onlyheadshots "0" // Enable/Disable Only Headshots mode. You can only kill players by taking headshots.
|
||||
// set scr_player_maxhealth "30" // Percent of Health players will have on Respawn.
|
||||
// set scr_team_fftype "1" // Enable or Disable Friendly Fire. 1 on, 2 reflect, 3 shared
|
||||
// set scr_player_healthregentime "0" // Time it takes you to recover damage.
|
||||
// set scr_team_kickteamkillers "5" // Anyone who team kills, gets kicked automatically if you enable this feature.
|
||||
// set scr_team_teamkillspawndelay "20" // Team Killer gets a respawn penalty of specified seconds (20).
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// AIRDROP CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
// uncomment below commands for airdrop config //
|
||||
// by removing the // before each set dvar. //
|
||||
// //
|
||||
// Weight (1->1000) //
|
||||
// Selection is weighted random //
|
||||
// higher weights increase selection chance //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
// set scr_airdrop_ac130 "3"
|
||||
set scr_airdrop_ammo "15"
|
||||
// set scr_airdrop_counter_uav "15"
|
||||
set scr_airdrop_emp "2"
|
||||
// set scr_airdrop_harrier_airstrike "7"
|
||||
// set scr_airdrop_helicopter "7"
|
||||
// set scr_airdrop_helicopter_flares "5"
|
||||
// set scr_airdrop_helicopter_minigun "3"
|
||||
set scr_airdrop_nuke "1"
|
||||
// set scr_airdrop_precision_airstrike "11"
|
||||
// set scr_airdrop_predator_missile "12"
|
||||
// set scr_airdrop_sentry "12"
|
||||
// set scr_airdrop_stealth_airstrike "5"
|
||||
// set scr_airdrop_uav "17"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// EMERGENCY AIRDROP CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
// uncomment below commands for airdrop config //
|
||||
// by removing the // before each set dvar. //
|
||||
// //
|
||||
// Weight (1->1000) //
|
||||
// Selection is weighted random //
|
||||
// higher weights increase selection chance //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
// set scr_airdrop_mega_ac130 "2"
|
||||
set scr_airdrop_mega_ammo "9"
|
||||
// set scr_airdrop_mega_counter_uav "16"
|
||||
set scr_airdrop_mega_emp "2"
|
||||
// set scr_airdrop_mega_harrier_airstrike "5"
|
||||
// set scr_airdrop_mega_helicopter "5"
|
||||
// set scr_airdrop_mega_helicopter_flares "3"
|
||||
// set scr_airdrop_mega_helicopter_minigun "2"
|
||||
set scr_airdrop_mega_nuke "1"
|
||||
// set scr_airdrop_mega_precision_airstrike "10"
|
||||
// set scr_airdrop_mega_predator_missile "14"
|
||||
// set scr_airdrop_mega_sentry "16"
|
||||
// set scr_airdrop_mega_stealth_airstrike "3"
|
||||
// set scr_airdrop_mega_uav "12"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// FREE FOR ALL GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_dm_scorelimit "10000" // Score limit to win the game.
|
||||
set scr_dm_timelimit "10" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_dm_playerrespawndelay "0" // How long player will wait until respawn.
|
||||
set scr_dm_numlives "0" // Number of lives per player 0 for unlimited.
|
||||
set scr_dm_roundlimit "1" // Rounds per game.
|
||||
set scr_dm_winlimit "1" // amount of wins needed to win a round-based game
|
||||
set scr_dm_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// TEAM DEATHMATCH GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_war_scorelimit "25600" // Score limit to win the game.
|
||||
set scr_war_timelimit "10" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_war_playerrespawndelay "0" // How long player will wait until respawn.
|
||||
set scr_war_waverespawndelay "0" // Duration is seconds before the first respawn in each round.
|
||||
set scr_war_numlives "0" // Number of lives per player 0 for unlimited.
|
||||
set scr_war_roundlimit "1" // Rounds per game.
|
||||
set scr_war_winlimit "1" // amount of wins needed to win a round-based game
|
||||
set scr_war_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// DOMINATION GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_dom_scorelimit "300" // Score limit to win the game.
|
||||
set scr_dom_timelimit "30" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_dom_playerrespawndelay "0" // How long player will wait until respawn.
|
||||
set scr_dom_waverespawndelay "0" // Duration is seconds before the first respawn in each round.
|
||||
set scr_dom_numlives "0" // Number of lives per player per game. 0 is unlimited.
|
||||
set scr_dom_roundlimit "1" // Rounds per game
|
||||
set scr_dom_winlimit "1" // amount of wins needed to win a round-based game
|
||||
set scr_dom_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// DEMOLITION GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_dd_scorelimit "1" // Score limit needed to win.
|
||||
set scr_dd_timelimit "2.5" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_dd_playerrespawndelay "0" // How long player will wait until respawn.
|
||||
set scr_dd_waverespawndelay "0" // Duration is seconds before the first respawn in each round.
|
||||
set scr_dd_numlives "0" // Number of lives per player per game. 0 is unlimited.
|
||||
set scr_dd_roundswitch "1" // Rounds before the teams switch the sides.
|
||||
set scr_dd_bombtimer "45" // Time the bomb takes to detonate.
|
||||
set scr_dd_defusetime "5" // Time taken to defuse the bomb.
|
||||
set scr_dd_planttime "5" // Time it takes to plant a bomb in seconds.
|
||||
set scr_dd_roundlimit "3" // Rounds the game is limited to, if there are no winners.
|
||||
set scr_dd_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// SEARCH AND DESTROY GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_sd_scorelimit "1" // Score limit required to win the game.
|
||||
set scr_sd_timelimit "2.5" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_sd_playerrespawndelay "0" // How long player will wait until respawn.
|
||||
set scr_sd_waverespawndelay "0" // Duration is seconds before the first respawn in each round.
|
||||
set scr_sd_numlives "1" // Number of lives per player per game.
|
||||
set scr_sd_roundlimit "0" // Rounds the game is limited to 0 for unlimited.
|
||||
set scr_sd_winlimit "4" // amount of wins needed to win a round-based game.
|
||||
set scr_sd_roundswitch "3" // after X rounds, switch sides.
|
||||
set scr_sd_bombtimer "45" // Time taken for the bomb to detonate.
|
||||
set scr_sd_defusetime "5" // Time taken to defuse the bomb.
|
||||
set scr_sd_multibomb "0" // allow multiple people to 'have the bomb'.
|
||||
set scr_sd_planttime "5" // How long will it take player to 'plant the bomb'.
|
||||
set scr_sd_promode "0"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// SABOTAGE GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_sab_scorelimit "0" // Score limit to win the match.
|
||||
set scr_sab_timelimit "20" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_sab_bombtimer "30" // Duration in seconds the bomb takes to detonate.
|
||||
set scr_sab_defusetime "5" // Time taken to defuse the bomb.
|
||||
set scr_sab_hotpotato "0" // One bomb that the teams must fight over. One defending and one have to plant at the site.
|
||||
set scr_sab_numlives "0" // Number of lives per player per game.
|
||||
set scr_sab_planttime "2.5" // Time taken to plant the bomb.
|
||||
set scr_sab_playerrespawndelay "7.5" // Time before respawn.
|
||||
set scr_sab_roundlimit "1" // Rounds per game.
|
||||
set scr_sab_roundswitch "1" // Rounds needed to be played before the teams switch sides.
|
||||
set scr_sab_waverespawndelay "0" // Time delay for first respawn before the game.
|
||||
set scr_sab_promode "0"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// CAPTURE THE FLAG GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_ctf_scorelimit "0" // Target score before the round ends.
|
||||
set scr_ctf_timelimit "10" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_ctf_numlives "0" // Number of lives per player 0 for unlimited.
|
||||
set scr_ctf_halftime "1" // Half-Time
|
||||
set scr_ctf_roundlimit "1" // How many rounds match would last.
|
||||
set scr_ctf_returntime "30" // How many seconds before flag returns to base without nobody touching it.
|
||||
set scr_ctf_playerrespawndelay "0" // Respawn wait in seconds.
|
||||
set scr_ctf_waverespawndelay "10" // Time delay for first respawn before the game.
|
||||
set scr_ctf_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// ONE FLAG GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_oneflag_scorelimit "1" // Target score before the round ends.
|
||||
set scr_oneflag_timelimit "3" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_oneflag_numlives "0" // number of lives per player 0 for unlimited.
|
||||
set scr_oneflag_playerrespawndelay "0" // Respawn wait in seconds.
|
||||
set scr_oneflag_roundlimit "1" // How many rounds match would last.
|
||||
set scr_oneflag_roundswitch "1" // Rounds before the teams switch sides.
|
||||
set scr_oneflag_waverespawndelay "0" // First respawn delay for each round.
|
||||
set scr_oneflag_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// HEADQUARTERS GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_koth_scorelimit "250" // Score limit to win the game.
|
||||
set scr_koth_timelimit "15" // Duration in minutes the game will continue if the score isnt reached.
|
||||
set scr_koth_numlives "0" // Number of lives per game. 0 for unlimited.
|
||||
set scr_koth_playerrespawndelay "0" // Players respawn wait.
|
||||
set scr_koth_roundlimit "1" // Rounds to be played.
|
||||
set scr_koth_roundswitch "1" // Rounds to be played before teams switch sides.
|
||||
set scr_koth_winlimit "1" // rounds per game
|
||||
set scr_koth_waverespawndelay "0" // First respawn delay for each round.
|
||||
set scr_koth_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// ARENA GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_arena_scorelimit "1" // Score limit to win the game.
|
||||
set scr_arena_timelimit "2.5" // Duration in minutes the game will continue if the score isnt reached.
|
||||
set scr_arena_numlives "1" // Number of lives per game 0 for unlimited.
|
||||
set scr_arena_roundlimit "0" // Rounds to be played.
|
||||
set scr_arena_roundswitch "3" // Rounds before the teams switch sides.
|
||||
set scr_arena_winlimit "4" // rounds per game
|
||||
set scr_arena_promode "0"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// GLOBAL THERMONUCLEAR WAR GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_gtnw_scorelimit "101" // Score limit to win the game.
|
||||
set scr_gtnw_timelimit "10" // Duration in minutes the game will continue if the score isnt reached.
|
||||
set scr_gtnw_numlives "0" // Number of lives per game 0 for unlimited.
|
||||
set scr_gtnw_playerrespawndelay "0" // Players respawn wait.
|
||||
set scr_gtnw_roundlimit "1" // Rounds to be played.
|
||||
set scr_gtnw_roundswitch "0" // Rounds before the teams switch sides.
|
||||
set scr_gtnw_winlimit "1" // rounds per game
|
||||
set scr_gtnw_waverespawndelay "0" // First respawn delay for each round.
|
||||
set scr_gtnw_promode "0"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// MAP ROTATION TIPS //
|
||||
//////////////////////////////////////////////////
|
||||
// //
|
||||
//Example: sv_maprotation "map mp_bloc map mp_" //
|
||||
// //
|
||||
// mp_afghan - Afghan //
|
||||
// mp_derail - Derail //
|
||||
// mp_estate - Estate //
|
||||
// mp_favela - Favela //
|
||||
// mp_highrise - Highrise //
|
||||
// mp_invasion - Invasion //
|
||||
// mp_checkpoint - Karachi //
|
||||
// mp_quarry - Quarry //
|
||||
// mp_rundown - Rundown //
|
||||
// mp_rust - Rust //
|
||||
// mp_boneyard - Scrapyard //
|
||||
// mp_nightshift - Skidrow //
|
||||
// mp_subbase - Sub Base //
|
||||
// mp_terminal - Terminal //
|
||||
// mp_underpass - Underpass //
|
||||
// mp_brecourt - Wasteland //
|
||||
// //
|
||||
//// DLC1 STIMULUS ///////////////////////////////
|
||||
// Make sure you have them all installed on your//
|
||||
// server. //
|
||||
// //
|
||||
// mp_complex - Bailout //
|
||||
// mp_crash - Crash //
|
||||
// mp_overgrown - Overgrown //
|
||||
// mp_compact - Salvage //
|
||||
// mp_storm - Storm //
|
||||
// //
|
||||
//// DLC2 RESURGENCE /////////////////////////////
|
||||
// //
|
||||
// mp_abandon - Carnival //
|
||||
// mp_fuel2 - Fuel //
|
||||
// mp_strike - Strike //
|
||||
// mp_trailerpark - Trailer Park //
|
||||
// mp_vacant - Vacant //
|
||||
// //
|
||||
//// DLC3 NUKETOWN ///////////////////////////////
|
||||
// //
|
||||
// mp_nuked - Nuketown //
|
||||
// //
|
||||
/// DLC4 CLASSICS 1 //////////////////////////////
|
||||
// //
|
||||
// mp_cross_fire - Crossfire //
|
||||
// mp_bloc - Bloc //
|
||||
// mp_cargoship - Cargoship //
|
||||
// //
|
||||
/// DLC5 CLASSICS 2 //////////////////////////////
|
||||
// //
|
||||
// mp_killhouse - Killhouse //
|
||||
// mp_bog_sh - Bog //
|
||||
// //
|
||||
/// DLC6 FREIGHTER ///////////////////////////////
|
||||
// //
|
||||
// mp_cargoship_sh - Freighter //
|
||||
// //
|
||||
/// DLC7 RESURRECTION ////////////////////////////
|
||||
// //
|
||||
// mp_shipment_long - Long:Shipment //
|
||||
// mp_rust_long - Long: Rust //
|
||||
// mp_firingrange - Firing Range //
|
||||
// //
|
||||
/// DLC8 RECYCLED ////////////////////////////////
|
||||
// //
|
||||
// mp_storm_spring - Chemical Plant //
|
||||
// mp_fav_tropical - Tropical: Favela //
|
||||
// mp_estate_tropical - Tropical: Estate //
|
||||
// mp_crash_tropical - Tropical: Crash //
|
||||
// mp_bloc_sh - Forgotten City //
|
||||
// //
|
||||
/// SP MAPS to MP ////////////////////////////////
|
||||
// //
|
||||
// oilrig - Oilrig //
|
||||
// iw4_credits - Test map //
|
||||
// co_hunted - Village //
|
||||
// //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
///////////////////////////////////////////////////////
|
||||
// GAMETYPE ROTATION TIPS //
|
||||
///////////////////////////////////////////////////////
|
||||
// //
|
||||
// Example: set sv_maprotation //
|
||||
// "gametype dm map mp_rust gametype war map oilrig" //
|
||||
// //
|
||||
// war - Team Deathmatch //
|
||||
// dm - Free-for-all //
|
||||
// dom - Domination //
|
||||
// koth - Headquarters //
|
||||
// sab - Sabotage //
|
||||
// sd - Search and Destroy //
|
||||
// arena - Arena //
|
||||
// dd - Demolition //
|
||||
// ctf - Capture the Flag //
|
||||
// oneflag - One-Flag CTF //
|
||||
// gtnw - Global Thermo-Nuclear War //
|
||||
// //
|
||||
///////////////////////////////////////////////////////
|
||||
|
||||
|
||||
set sv_maprotation "map mp_rust"
|
||||
|
||||
// vanilla script
|
||||
set perk_scavengerMode "0"
|
||||
set scr_deleteexplosivesonspawn "1"
|
||||
set scr_maxPerPlayerExplosives "2"
|
||||
set scr_nukeCancelMode "0"
|
||||
set scr_spawnpoint_forceindex ""
|
||||
set scr_spawnpointlospenalty ""
|
||||
set scr_spawnpointweaponpenalty ""
|
||||
set scr_spawnsimple ""
|
||||
set scr_spawn_enemyavoiddist ""
|
||||
|
||||
// _spawnlogic
|
||||
set scr_spawnpointfavorweight ""
|
||||
set scr_spawnpointdooutsidecheck ""
|
||||
|
||||
// iw4x
|
||||
set scr_player_forceautoassign "1"
|
||||
set scr_rankedmatch "1"
|
||||
set sv_enableJavelinBug "1"
|
||||
set g_playerEjection "0"
|
||||
set g_playerCollision "0"
|
||||
set sv_enableBounces "1"
|
||||
set iw4x_onelog ""
|
||||
|
||||
|
||||
// CUSTOM
|
||||
set bot_pvb_helper_noPlayersOnTeam "axis"
|
||||
set bot_pvb_helper_customBotClassTeam "allies"
|
||||
set scr_showHP "1"
|
||||
set scr_allowFPSBooster "1"
|
||||
set bot_sniperCheck "1"
|
||||
set dom_lastFlagUseTimeMulti "4.0"
|
||||
|
||||
// _class
|
||||
// set scr_allow_ "0"
|
||||
// scr_streakcount_ "15"
|
||||
set scr_default_primarys "m4,famas"
|
||||
set scr_default_secondarys "usp"
|
||||
set scr_default_perks1 "specialty_fastreload,specialty_scavenger"
|
||||
set scr_default_perks2 "specialty_bulletdamage"
|
||||
set scr_default_perks3 "specialty_bulletaccuracy,specialty_detectexplosive"
|
||||
set scr_default_equipment "frag_grenade_mp"
|
||||
set scr_default_offhand "smoke_grenade"
|
||||
set scr_default_deathstreak "none"
|
||||
set scr_restriction_messages 1
|
||||
set scr_num_flash 2
|
||||
set scr_num_stun 2
|
||||
|
||||
// _menus
|
||||
set scr_player_startteamselection "autoassign"
|
||||
set scr_player_forceclassselection ""
|
||||
set scr_player_allowChangeTeam "1"
|
||||
|
||||
// _bot
|
||||
set bots_main "1"
|
||||
set bots_main_GUIDs ""
|
||||
set bots_main_firstIsHost "0"
|
||||
set bots_main_waitForHostTime "10"
|
||||
set bots_manage_add "9"
|
||||
set bots_manage_fill "9"
|
||||
set bots_manage_fill_spec "0"
|
||||
set bots_manage_fill_mode "1"
|
||||
set bots_manage_fill_kick "1"
|
||||
set bots_team "axis"
|
||||
set bots_team_amount "0"
|
||||
set bots_team_force "1"
|
||||
set bots_team_mode "1"
|
||||
set bots_skill "8"
|
||||
set bots_skill_axis_hard "0"
|
||||
set bots_skill_axis_med "4"
|
||||
set bots_skill_allies_hard "0"
|
||||
set bots_skill_allies_med "4"
|
||||
set bots_loadout_reasonable "0"
|
||||
set bots_loadout_allow_op "0"
|
||||
set bots_loadout_rank "-1"
|
||||
set bots_loadout_prestige "-1"
|
||||
set bots_play_move "1"
|
||||
set bots_play_knife "1"
|
||||
set bots_play_fire "1"
|
||||
set bots_play_nade "1"
|
||||
set bots_play_take_carepackages "1"
|
||||
set bots_play_obj "1"
|
||||
set bots_play_camp "1"
|
||||
set bots_play_jumpdrop "1"
|
||||
set bots_play_target_other "1"
|
||||
set bots_play_killstreak "1"
|
||||
set bots_play_ads "1"
|
||||
|
||||
|
||||
// iw4madmin
|
||||
set sv_printradarupdates "0"
|
||||
|
||||
|
||||
// _killcam
|
||||
set scr_killcam_doSlowmo "1"
|
||||
|
||||
|
||||
// _gamelogic
|
||||
set scr_extraDamageFeedback "1"
|
||||
set scr_printDamage "1"
|
||||
set scr_disableKnife "0"
|
||||
set scr_intermissionTime "0"
|
||||
set scr_forceKillcam "1"
|
||||
set scr_forceKillcam_winnersKill "0"
|
||||
set scr_game_allowFinalKillcam "1"
|
||||
set scr_disableTurret "0"
|
||||
set scr_failCam "1"
|
||||
set scr_voting "0"
|
||||
set scr_voting_maps "mp_rust,mp_terminal"
|
||||
set scr_voting_time "26.0"
|
||||
set scr_voting_winTime "4.0"
|
||||
set scr_allow_intermission "0"
|
||||
set scr_voting_bots "0"
|
||||
set scr_nuke_increases_streak "0"
|
||||
set headshot_detach_head "1"
|
||||
set scr_killstreaks_increase_killstreak "1"
|
||||
set scr_postDeathDelayMod "1.0"
|
||||
|
||||
// _weapon
|
||||
set scr_allowDropWeaponOnCommand "1"
|
||||
set scr_allowPickUpEquipment "1"
|
||||
set scr_allowDropWeaponOnDeath "1"
|
||||
set scr_allowClaymoreBounces "1"
|
||||
set scr_extraTeamIcons "1"
|
||||
set scr_deleteNadeOnTeamChange "1"
|
||||
|
||||
// _perkfunctions
|
||||
set combathighIsJuiced "1"
|
||||
set onemanarmyRefillsTubes "1"
|
||||
set fix_onemanarmyFlareBug "0"
|
||||
|
||||
// _killstreaks
|
||||
set scr_killstreak_rollover "1"
|
||||
set scr_currentRolloverKillstreaksOnlyIncrease "1"
|
||||
set scr_killstreakHud "1"
|
||||
set scr_maxKillstreakRollover "1"
|
||||
set scr_killstreak_mod "0"
|
||||
set scr_killstreak_print "2"
|
||||
set scr_specialist "1"
|
||||
//set scr_specialist_killCount_ "4"
|
||||
set scr_specialist_perks1 "specialty_scavenger,specialty_fastreload,specialty_marathon"
|
||||
set scr_specialist_perks2 "specialty_bulletdamage,specialty_lightweight,specialty_coldblooded,specialty_explosivedamage,specialty_hardline"
|
||||
set scr_specialist_perks3 "specialty_bulletaccuracy,specialty_heartbreaker,specialty_detectexplosive,specialty_extendedmelee,specialty_localjammer"
|
||||
|
||||
// _nuke
|
||||
set scr_nuke_is_moab "1"
|
||||
set scr_nuke_kills_all "0"
|
||||
set scr_nuke_emp_duration "30"
|
||||
set scr_nuke_perm_vision "1"
|
||||
set scr_nuke_canCall_whenTimePassed "0"
|
||||
set scr_nuke_canCall_whenScoreLimitClose "0"
|
||||
set scr_nuke_canCall_whenScoreLimitClose_selfOnly "0"
|
||||
set scr_nuke_doSlowmo "2"
|
||||
|
||||
// _emp
|
||||
set scr_emp_doesFriendlyFire "0"
|
||||
set scr_emp_duration "60"
|
||||
|
||||
// _helicopter
|
||||
set scr_helicopter_allowQueue "0"
|
||||
set scr_helicopter_cobra_duration "30"
|
||||
set scr_helicopter_pavelow_duration "30"
|
||||
set scr_helicopter_apache_duration "30"
|
||||
set scr_helicopter_apache_health "1500"
|
||||
set scr_helicopter_apache_num_flares "1"
|
||||
set scr_helicopter_pavelow_health "3000"
|
||||
set scr_helicopter_pavelow_num_flares "1"
|
||||
set scr_helicopter_cobra_health "1500"
|
||||
set scr_helicopter_cobra_num_flares "0"
|
||||
|
||||
// _autosentry
|
||||
set scr_sentry_duration "360"
|
||||
set scr_sentry_killsIncreaseStreak "1"
|
||||
|
||||
// _airdrop
|
||||
set scr_airdrop_killstreaksIncreaseStreak "1"
|
||||
set scr_airdrop_patchDupeGlitch "0"
|
||||
|
||||
// _ac130
|
||||
set scr_ac130_duration "30"
|
||||
set scr_ac130_flares "1"
|
||||
set scr_ac130_fast "1"
|
||||
|
||||
// _uav
|
||||
set scr_uav_timeout "30"
|
||||
set scr_counter_uav_timeout "30"
|
||||
set scr_uav_forceon "0"
|
||||
set scr_uav_does_print "1"
|
||||
|
||||
// _airstrike
|
||||
set scr_harrier_duration "30"
|
||||
set scr_harrier_fast "1"
|
||||
set scr_airstrike_mutate_fix "1"
|
||||
set scr_airstrike_teamChangeFix "1"
|
||||
@@ -1,659 +0,0 @@
|
||||
///////////////////////////////////////////////////
|
||||
/// IW4x Server Configuration file //
|
||||
///////////////////////////////////////////////////
|
||||
//This config best view with Notepad++ OR //
|
||||
//Other non-windows notepad of your choice. //
|
||||
///////////////////////////////////////////////////
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// SERVER NAME & COLORS TIPS //
|
||||
//////////////////////////////////////////////////
|
||||
// //
|
||||
// ^1 Red //
|
||||
// ^2 Green //
|
||||
// ^3 yellow //
|
||||
// ^4 Blue //
|
||||
// ^5 Cyan //
|
||||
// ^6 Pink //
|
||||
// ^7 White //
|
||||
// ^8 Depends on the map you playing. //
|
||||
// American maps: Dark Green //
|
||||
// Russian maps: Dark Red //
|
||||
// British maps: Dark Blue //
|
||||
// ^9 grey //
|
||||
// ^0 Black //
|
||||
// ^: Rainbow colors //
|
||||
// //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
|
||||
set sv_hostname "^1Bot ^3War^5fare ^4Players vs bots ^7Mapvote 10x" // Sets the server hostname
|
||||
set sv_motd "^1Bot ^3War^5fare" // Sets a custom motd which is shown on the loadscreen when a player joins
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// ADMIN INFO //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set _Admin "INeedGames" // Your username.
|
||||
set _Email "ineedbots@outlook.com" // E-mail address. you can leave blank
|
||||
set _Website "http://www.moddb.com/mods/bot-warfare" // Website
|
||||
set _Location "Canada - West" // Location
|
||||
|
||||
set sv_wwwBaseURL "http://rawcdn.githack.com/ineedbots/www_host/main/iw4x/"
|
||||
set sv_wwwDownload "1"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// NON-GAMEPLAY CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set sv_securityLevel "23" // Configures the servers security level.
|
||||
set sv_customTextColor "" // custom color for ^;
|
||||
set g_password "" // Password Protected Server. Leave blank if you want players to join
|
||||
set g_inactivity "180" // Enable auto kick feature for idle/AFK players
|
||||
set g_inactivitySpectator "180" // Time in seconds before a spectator gets kicked
|
||||
set g_logSync "1" // 1 always flush games_mp.log, 0 only flush on game end
|
||||
set g_log "logs/pvbvote/games_mp.log" // Gamelog filename. If you edit this..make sure you change B3.xml if you have bigbrotherbot.
|
||||
set sv_allowClientConsole "1" // Enable or Disable players ability to access server commands
|
||||
set sv_maxclients "18" // Max players in your server.
|
||||
set sv_maxPing "0" // (BUGGED) Maximum ping allowed, any higher and players will get kicked.( If you get 'server is for low ping players only', set this to 0)
|
||||
set sv_timeout "20" // Timeout time period. You will timeout after (20) seconds when attempting to connect or if you are getting connection interruptions
|
||||
set sv_reconnectlimit "3" // How many times you can try to reconnect
|
||||
set com_logFilter "1" // Removes ~95% of unneeded lines from the log.
|
||||
set sv_pure "0" // verifying cilent files
|
||||
set sv_sayName "^7Console" // name server-side 'say' commands show up as
|
||||
set sv_floodProtect "1" // Chat Spam Protection
|
||||
set sv_kickBanTime "300" // Kick Ban Duration. Time before player can re-join the server after getting kicked.
|
||||
set party_enable "0" // Lobby Mode Server. Read the wiki more about this. If you want sv_maprotation & control your gametype settings. Leave this at 0.
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// BASE GAME CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
// //
|
||||
// war - Team Deathmatch //
|
||||
// dm - Free-for-all //
|
||||
// dom - Domination //
|
||||
// koth - Headquarters //
|
||||
// sab - Sabotage //
|
||||
// sd - Search and Destroy //
|
||||
// arena - Arena //
|
||||
// dd - Demolition //
|
||||
// ctf - Capture the Flag //
|
||||
// oneflag - One-Flag CTF //
|
||||
// gtnw - Global Thermo-Nuclear War //
|
||||
// //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set g_gametype "dom" // Defualt gametype in case map rotation doesnt have any gametypes. Choose a gametype from the list above.
|
||||
set scr_player_forcerespawn "1" // Players respawn automatically after being fragged
|
||||
set scr_thirdperson "0" // third-person mode
|
||||
set scr_game_hardpoints "1" // Enable/Disable Killstreak rewards
|
||||
set scr_hardpoint_allowhelicopter "1" // Allow Attack Helicopters
|
||||
set scr_hardpoint_allowuav "1" // Allow UAV
|
||||
set scr_hardpoint_allowartillery "1" // Allow Airstrikes
|
||||
set scr_game_perks "1" // Allow players to have perks
|
||||
set scr_game_allowkillcam "1" // Allow Killcam.
|
||||
set scr_nukeTimer "10" // Timer when nuke goes off
|
||||
set scr_diehard "0" // die-hard mode. Teammates will have to relieve each other.
|
||||
set scr_teambalance "0" // Enable or Disable auto balance.
|
||||
set scr_game_spectatetype "2" // Allow Spectators. 0 Disabled, 1 Team/Player only, 2 Free
|
||||
set scr_player_suicidespawndelay "0" // Wait before you respawn if you committed suicide.
|
||||
set scr_player_sprinttime "4" // Sprint time, duration a player can run.
|
||||
set scr_game_killstreakdelay "8" // Delay your killstreaks
|
||||
set scr_game_objectiveStreaks "1" // Enable Chopper, AC130 and Nuke
|
||||
set scr_classic "0" // Enable IW3 killstreak system
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// XP BOOST CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
// uncomment below commands for XP config //
|
||||
// by removing the // before each set dvar. //
|
||||
// Change "war" gametype to your liking. //
|
||||
// //
|
||||
// DO NOT ABUSE! Some people like to rank. //
|
||||
// DON'T BE A DICK! Warn HIGH XP via hostname. //
|
||||
// Don't know what you doing? Dont touch it! //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_xpscale "10" // IWs way of Double XP.
|
||||
|
||||
//set scr_war_score_kill "0" // Amount of XP by each kill.
|
||||
//set scr_war_score_headshot "0" // Amount of XP by each headshot.
|
||||
//set scr_war_score_death "0" // Amount of XP by each death.
|
||||
//set scr_war_score_suicide "0" // Amount of XP by each suicide.
|
||||
//set scr_war_score_assist "0" // Amount of XP by each assist.
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// HARDCORE CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
// uncomment below commands for some hardcore //
|
||||
// by removing the // before each set dvar. //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
// set g_hardcore "1" // Enable hardcore mode
|
||||
// set scr_hardcore "1" // Enable hardcore mode again...
|
||||
// set ui_hud_hardcore "1" // Removes Heads up display in hardcore mode.
|
||||
// set scr_game_deathpointloss "0" // Points Loss on death XP.
|
||||
// set scr_game_onlyheadshots "0" // Enable/Disable Only Headshots mode. You can only kill players by taking headshots.
|
||||
// set scr_player_maxhealth "30" // Percent of Health players will have on Respawn.
|
||||
// set scr_team_fftype "1" // Enable or Disable Friendly Fire. 1 on, 2 reflect, 3 shared
|
||||
// set scr_player_healthregentime "0" // Time it takes you to recover damage.
|
||||
// set scr_team_kickteamkillers "5" // Anyone who team kills, gets kicked automatically if you enable this feature.
|
||||
// set scr_team_teamkillspawndelay "20" // Team Killer gets a respawn penalty of specified seconds (20).
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// AIRDROP CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
// uncomment below commands for airdrop config //
|
||||
// by removing the // before each set dvar. //
|
||||
// //
|
||||
// Weight (1->1000) //
|
||||
// Selection is weighted random //
|
||||
// higher weights increase selection chance //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
// set scr_airdrop_ac130 "3"
|
||||
set scr_airdrop_ammo "15"
|
||||
// set scr_airdrop_counter_uav "15"
|
||||
set scr_airdrop_emp "2"
|
||||
// set scr_airdrop_harrier_airstrike "7"
|
||||
// set scr_airdrop_helicopter "7"
|
||||
// set scr_airdrop_helicopter_flares "5"
|
||||
// set scr_airdrop_helicopter_minigun "3"
|
||||
set scr_airdrop_nuke "1"
|
||||
// set scr_airdrop_precision_airstrike "11"
|
||||
// set scr_airdrop_predator_missile "12"
|
||||
// set scr_airdrop_sentry "12"
|
||||
// set scr_airdrop_stealth_airstrike "5"
|
||||
// set scr_airdrop_uav "17"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// EMERGENCY AIRDROP CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
// uncomment below commands for airdrop config //
|
||||
// by removing the // before each set dvar. //
|
||||
// //
|
||||
// Weight (1->1000) //
|
||||
// Selection is weighted random //
|
||||
// higher weights increase selection chance //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
// set scr_airdrop_mega_ac130 "2"
|
||||
set scr_airdrop_mega_ammo "9"
|
||||
// set scr_airdrop_mega_counter_uav "16"
|
||||
set scr_airdrop_mega_emp "2"
|
||||
// set scr_airdrop_mega_harrier_airstrike "5"
|
||||
// set scr_airdrop_mega_helicopter "5"
|
||||
// set scr_airdrop_mega_helicopter_flares "3"
|
||||
// set scr_airdrop_mega_helicopter_minigun "2"
|
||||
set scr_airdrop_mega_nuke "1"
|
||||
// set scr_airdrop_mega_precision_airstrike "10"
|
||||
// set scr_airdrop_mega_predator_missile "14"
|
||||
// set scr_airdrop_mega_sentry "16"
|
||||
// set scr_airdrop_mega_stealth_airstrike "3"
|
||||
// set scr_airdrop_mega_uav "12"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// FREE FOR ALL GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_dm_scorelimit "10000" // Score limit to win the game.
|
||||
set scr_dm_timelimit "10" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_dm_playerrespawndelay "0" // How long player will wait until respawn.
|
||||
set scr_dm_numlives "0" // Number of lives per player 0 for unlimited.
|
||||
set scr_dm_roundlimit "1" // Rounds per game.
|
||||
set scr_dm_winlimit "1" // amount of wins needed to win a round-based game
|
||||
set scr_dm_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// TEAM DEATHMATCH GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_war_scorelimit "25600" // Score limit to win the game.
|
||||
set scr_war_timelimit "10" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_war_playerrespawndelay "0" // How long player will wait until respawn.
|
||||
set scr_war_waverespawndelay "0" // Duration is seconds before the first respawn in each round.
|
||||
set scr_war_numlives "0" // Number of lives per player 0 for unlimited.
|
||||
set scr_war_roundlimit "1" // Rounds per game.
|
||||
set scr_war_winlimit "1" // amount of wins needed to win a round-based game
|
||||
set scr_war_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// DOMINATION GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_dom_scorelimit "300" // Score limit to win the game.
|
||||
set scr_dom_timelimit "30" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_dom_playerrespawndelay "0" // How long player will wait until respawn.
|
||||
set scr_dom_waverespawndelay "0" // Duration is seconds before the first respawn in each round.
|
||||
set scr_dom_numlives "0" // Number of lives per player per game. 0 is unlimited.
|
||||
set scr_dom_roundlimit "1" // Rounds per game
|
||||
set scr_dom_winlimit "1" // amount of wins needed to win a round-based game
|
||||
set scr_dom_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// DEMOLITION GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_dd_scorelimit "1" // Score limit needed to win.
|
||||
set scr_dd_timelimit "2.5" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_dd_playerrespawndelay "0" // How long player will wait until respawn.
|
||||
set scr_dd_waverespawndelay "0" // Duration is seconds before the first respawn in each round.
|
||||
set scr_dd_numlives "0" // Number of lives per player per game. 0 is unlimited.
|
||||
set scr_dd_roundswitch "1" // Rounds before the teams switch the sides.
|
||||
set scr_dd_bombtimer "45" // Time the bomb takes to detonate.
|
||||
set scr_dd_defusetime "5" // Time taken to defuse the bomb.
|
||||
set scr_dd_planttime "5" // Time it takes to plant a bomb in seconds.
|
||||
set scr_dd_roundlimit "3" // Rounds the game is limited to, if there are no winners.
|
||||
set scr_dd_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// SEARCH AND DESTROY GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_sd_scorelimit "1" // Score limit required to win the game.
|
||||
set scr_sd_timelimit "2.5" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_sd_playerrespawndelay "0" // How long player will wait until respawn.
|
||||
set scr_sd_waverespawndelay "0" // Duration is seconds before the first respawn in each round.
|
||||
set scr_sd_numlives "1" // Number of lives per player per game.
|
||||
set scr_sd_roundlimit "0" // Rounds the game is limited to 0 for unlimited.
|
||||
set scr_sd_winlimit "4" // amount of wins needed to win a round-based game.
|
||||
set scr_sd_roundswitch "3" // after X rounds, switch sides.
|
||||
set scr_sd_bombtimer "45" // Time taken for the bomb to detonate.
|
||||
set scr_sd_defusetime "5" // Time taken to defuse the bomb.
|
||||
set scr_sd_multibomb "0" // allow multiple people to 'have the bomb'.
|
||||
set scr_sd_planttime "5" // How long will it take player to 'plant the bomb'.
|
||||
set scr_sd_promode "0"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// SABOTAGE GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_sab_scorelimit "0" // Score limit to win the match.
|
||||
set scr_sab_timelimit "20" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_sab_bombtimer "30" // Duration in seconds the bomb takes to detonate.
|
||||
set scr_sab_defusetime "5" // Time taken to defuse the bomb.
|
||||
set scr_sab_hotpotato "0" // One bomb that the teams must fight over. One defending and one have to plant at the site.
|
||||
set scr_sab_numlives "0" // Number of lives per player per game.
|
||||
set scr_sab_planttime "2.5" // Time taken to plant the bomb.
|
||||
set scr_sab_playerrespawndelay "7.5" // Time before respawn.
|
||||
set scr_sab_roundlimit "1" // Rounds per game.
|
||||
set scr_sab_roundswitch "1" // Rounds needed to be played before the teams switch sides.
|
||||
set scr_sab_waverespawndelay "0" // Time delay for first respawn before the game.
|
||||
set scr_sab_promode "0"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// CAPTURE THE FLAG GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_ctf_scorelimit "0" // Target score before the round ends.
|
||||
set scr_ctf_timelimit "10" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_ctf_numlives "0" // Number of lives per player 0 for unlimited.
|
||||
set scr_ctf_halftime "1" // Half-Time
|
||||
set scr_ctf_roundlimit "1" // How many rounds match would last.
|
||||
set scr_ctf_returntime "30" // How many seconds before flag returns to base without nobody touching it.
|
||||
set scr_ctf_playerrespawndelay "0" // Respawn wait in seconds.
|
||||
set scr_ctf_waverespawndelay "10" // Time delay for first respawn before the game.
|
||||
set scr_ctf_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// ONE FLAG GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_oneflag_scorelimit "1" // Target score before the round ends.
|
||||
set scr_oneflag_timelimit "3" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_oneflag_numlives "0" // number of lives per player 0 for unlimited.
|
||||
set scr_oneflag_playerrespawndelay "0" // Respawn wait in seconds.
|
||||
set scr_oneflag_roundlimit "1" // How many rounds match would last.
|
||||
set scr_oneflag_roundswitch "1" // Rounds before the teams switch sides.
|
||||
set scr_oneflag_waverespawndelay "0" // First respawn delay for each round.
|
||||
set scr_oneflag_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// HEADQUARTERS GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_koth_scorelimit "250" // Score limit to win the game.
|
||||
set scr_koth_timelimit "15" // Duration in minutes the game will continue if the score isnt reached.
|
||||
set scr_koth_numlives "0" // Number of lives per game. 0 for unlimited.
|
||||
set scr_koth_playerrespawndelay "0" // Players respawn wait.
|
||||
set scr_koth_roundlimit "1" // Rounds to be played.
|
||||
set scr_koth_roundswitch "1" // Rounds to be played before teams switch sides.
|
||||
set scr_koth_winlimit "1" // rounds per game
|
||||
set scr_koth_waverespawndelay "0" // First respawn delay for each round.
|
||||
set scr_koth_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// ARENA GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_arena_scorelimit "1" // Score limit to win the game.
|
||||
set scr_arena_timelimit "2.5" // Duration in minutes the game will continue if the score isnt reached.
|
||||
set scr_arena_numlives "1" // Number of lives per game 0 for unlimited.
|
||||
set scr_arena_roundlimit "0" // Rounds to be played.
|
||||
set scr_arena_roundswitch "3" // Rounds before the teams switch sides.
|
||||
set scr_arena_winlimit "4" // rounds per game
|
||||
set scr_arena_promode "0"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// GLOBAL THERMONUCLEAR WAR GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_gtnw_scorelimit "101" // Score limit to win the game.
|
||||
set scr_gtnw_timelimit "10" // Duration in minutes the game will continue if the score isnt reached.
|
||||
set scr_gtnw_numlives "0" // Number of lives per game 0 for unlimited.
|
||||
set scr_gtnw_playerrespawndelay "0" // Players respawn wait.
|
||||
set scr_gtnw_roundlimit "1" // Rounds to be played.
|
||||
set scr_gtnw_roundswitch "0" // Rounds before the teams switch sides.
|
||||
set scr_gtnw_winlimit "1" // rounds per game
|
||||
set scr_gtnw_waverespawndelay "0" // First respawn delay for each round.
|
||||
set scr_gtnw_promode "0"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// MAP ROTATION TIPS //
|
||||
//////////////////////////////////////////////////
|
||||
// //
|
||||
//Example: sv_maprotation "map mp_bloc map mp_" //
|
||||
// //
|
||||
// mp_afghan - Afghan //
|
||||
// mp_derail - Derail //
|
||||
// mp_estate - Estate //
|
||||
// mp_favela - Favela //
|
||||
// mp_highrise - Highrise //
|
||||
// mp_invasion - Invasion //
|
||||
// mp_checkpoint - Karachi //
|
||||
// mp_quarry - Quarry //
|
||||
// mp_rundown - Rundown //
|
||||
// mp_rust - Rust //
|
||||
// mp_boneyard - Scrapyard //
|
||||
// mp_nightshift - Skidrow //
|
||||
// mp_subbase - Sub Base //
|
||||
// mp_terminal - Terminal //
|
||||
// mp_underpass - Underpass //
|
||||
// mp_brecourt - Wasteland //
|
||||
// //
|
||||
//// DLC1 STIMULUS ///////////////////////////////
|
||||
// Make sure you have them all installed on your//
|
||||
// server. //
|
||||
// //
|
||||
// mp_complex - Bailout //
|
||||
// mp_crash - Crash //
|
||||
// mp_overgrown - Overgrown //
|
||||
// mp_compact - Salvage //
|
||||
// mp_storm - Storm //
|
||||
// //
|
||||
//// DLC2 RESURGENCE /////////////////////////////
|
||||
// //
|
||||
// mp_abandon - Carnival //
|
||||
// mp_fuel2 - Fuel //
|
||||
// mp_strike - Strike //
|
||||
// mp_trailerpark - Trailer Park //
|
||||
// mp_vacant - Vacant //
|
||||
// //
|
||||
//// DLC3 NUKETOWN ///////////////////////////////
|
||||
// //
|
||||
// mp_nuked - Nuketown //
|
||||
// //
|
||||
/// DLC4 CLASSICS 1 //////////////////////////////
|
||||
// //
|
||||
// mp_cross_fire - Crossfire //
|
||||
// mp_bloc - Bloc //
|
||||
// mp_cargoship - Cargoship //
|
||||
// //
|
||||
/// DLC5 CLASSICS 2 //////////////////////////////
|
||||
// //
|
||||
// mp_killhouse - Killhouse //
|
||||
// mp_bog_sh - Bog //
|
||||
// //
|
||||
/// DLC6 FREIGHTER ///////////////////////////////
|
||||
// //
|
||||
// mp_cargoship_sh - Freighter //
|
||||
// //
|
||||
/// DLC7 RESURRECTION ////////////////////////////
|
||||
// //
|
||||
// mp_shipment_long - Long:Shipment //
|
||||
// mp_rust_long - Long: Rust //
|
||||
// mp_firingrange - Firing Range //
|
||||
// //
|
||||
/// DLC8 RECYCLED ////////////////////////////////
|
||||
// //
|
||||
// mp_storm_spring - Chemical Plant //
|
||||
// mp_fav_tropical - Tropical: Favela //
|
||||
// mp_estate_tropical - Tropical: Estate //
|
||||
// mp_crash_tropical - Tropical: Crash //
|
||||
// mp_bloc_sh - Forgotten City //
|
||||
// //
|
||||
/// SP MAPS to MP ////////////////////////////////
|
||||
// //
|
||||
// oilrig - Oilrig //
|
||||
// iw4_credits - Test map //
|
||||
// co_hunted - Village //
|
||||
// //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
///////////////////////////////////////////////////////
|
||||
// GAMETYPE ROTATION TIPS //
|
||||
///////////////////////////////////////////////////////
|
||||
// //
|
||||
// Example: set sv_maprotation //
|
||||
// "gametype dm map mp_rust gametype war map oilrig" //
|
||||
// //
|
||||
// war - Team Deathmatch //
|
||||
// dm - Free-for-all //
|
||||
// dom - Domination //
|
||||
// koth - Headquarters //
|
||||
// sab - Sabotage //
|
||||
// sd - Search and Destroy //
|
||||
// arena - Arena //
|
||||
// dd - Demolition //
|
||||
// ctf - Capture the Flag //
|
||||
// oneflag - One-Flag CTF //
|
||||
// gtnw - Global Thermo-Nuclear War //
|
||||
// //
|
||||
///////////////////////////////////////////////////////
|
||||
|
||||
|
||||
set sv_maprotation "map mp_terminal map mp_afghan map mp_favela map mp_highrise map mp_boneyard map mp_nightshift map mp_subbase map mp_crash map mp_trailerpark map mp_vacant map mp_nuked map mp_killhouse map mp_shipment map iw4_credits"
|
||||
|
||||
// vanilla script
|
||||
set perk_scavengerMode "0"
|
||||
set scr_deleteexplosivesonspawn "1"
|
||||
set scr_maxPerPlayerExplosives "2"
|
||||
set scr_nukeCancelMode "0"
|
||||
set scr_spawnpoint_forceindex ""
|
||||
set scr_spawnpointlospenalty ""
|
||||
set scr_spawnpointweaponpenalty ""
|
||||
set scr_spawnsimple ""
|
||||
set scr_spawn_enemyavoiddist ""
|
||||
|
||||
// _spawnlogic
|
||||
set scr_spawnpointfavorweight ""
|
||||
set scr_spawnpointdooutsidecheck ""
|
||||
|
||||
// iw4x
|
||||
set scr_player_forceautoassign "1"
|
||||
set scr_rankedmatch "1"
|
||||
set sv_enableJavelinBug "1"
|
||||
set g_playerEjection "0"
|
||||
set g_playerCollision "0"
|
||||
set sv_enableBounces "1"
|
||||
set iw4x_onelog ""
|
||||
|
||||
|
||||
// CUSTOM
|
||||
set bot_pvb_helper_noPlayersOnTeam "axis"
|
||||
set bot_pvb_helper_customBotClassTeam ""
|
||||
set scr_showHP "1"
|
||||
set scr_allowFPSBooster "1"
|
||||
set bot_sniperCheck "1"
|
||||
set dom_lastFlagUseTimeMulti "4.0"
|
||||
|
||||
// _class
|
||||
// set scr_allow_ "0"
|
||||
// scr_streakcount_ "15"
|
||||
set scr_default_primarys "m4,famas"
|
||||
set scr_default_secondarys "usp"
|
||||
set scr_default_perks1 "specialty_fastreload,specialty_scavenger"
|
||||
set scr_default_perks2 "specialty_bulletdamage"
|
||||
set scr_default_perks3 "specialty_bulletaccuracy,specialty_detectexplosive"
|
||||
set scr_default_equipment "frag_grenade_mp"
|
||||
set scr_default_offhand "smoke_grenade"
|
||||
set scr_default_deathstreak "none"
|
||||
set scr_restriction_messages 1
|
||||
set scr_num_flash 2
|
||||
set scr_num_stun 2
|
||||
|
||||
// _menus
|
||||
set scr_player_startteamselection "autoassign"
|
||||
set scr_player_forceclassselection ""
|
||||
set scr_player_allowChangeTeam "1"
|
||||
|
||||
// _bot
|
||||
set bots_main "1"
|
||||
set bots_main_GUIDs ""
|
||||
set bots_main_firstIsHost "0"
|
||||
set bots_main_waitForHostTime "10"
|
||||
set bots_manage_add "9"
|
||||
set bots_manage_fill "9"
|
||||
set bots_manage_fill_spec "0"
|
||||
set bots_manage_fill_mode "1"
|
||||
set bots_manage_fill_kick "1"
|
||||
set bots_team "axis"
|
||||
set bots_team_amount "0"
|
||||
set bots_team_force "1"
|
||||
set bots_team_mode "0"
|
||||
set bots_skill "8"
|
||||
set bots_skill_axis_hard "0"
|
||||
set bots_skill_axis_med "3"
|
||||
set bots_skill_allies_hard "0"
|
||||
set bots_skill_allies_med "0"
|
||||
set bots_loadout_reasonable "0"
|
||||
set bots_loadout_allow_op "0"
|
||||
set bots_loadout_rank "-1"
|
||||
set bots_loadout_prestige "-1"
|
||||
set bots_play_move "1"
|
||||
set bots_play_knife "1"
|
||||
set bots_play_fire "1"
|
||||
set bots_play_nade "1"
|
||||
set bots_play_take_carepackages "1"
|
||||
set bots_play_obj "1"
|
||||
set bots_play_camp "1"
|
||||
set bots_play_jumpdrop "1"
|
||||
set bots_play_target_other "1"
|
||||
set bots_play_killstreak "1"
|
||||
set bots_play_ads "1"
|
||||
|
||||
|
||||
// iw4madmin
|
||||
set sv_printradarupdates "1"
|
||||
|
||||
|
||||
// _killcam
|
||||
set scr_killcam_doSlowmo "1"
|
||||
|
||||
|
||||
// _gamelogic
|
||||
set scr_extraDamageFeedback "1"
|
||||
set scr_printDamage "1"
|
||||
set scr_disableKnife "0"
|
||||
set scr_intermissionTime "0"
|
||||
set scr_forceKillcam "1"
|
||||
set scr_forceKillcam_winnersKill "0"
|
||||
set scr_game_allowFinalKillcam "1"
|
||||
set scr_disableTurret "0"
|
||||
set scr_failCam "1"
|
||||
set scr_voting "1"
|
||||
set scr_voting_maps "mp_afghan,mp_favela,mp_highrise,mp_boneyard,mp_nightshift,mp_subbase,mp_terminal,mp_crash,mp_trailerpark,mp_vacant,mp_nuked,mp_killhouse,mp_shipment,iw4_credits"
|
||||
set scr_voting_time "26.0"
|
||||
set scr_voting_winTime "4.0"
|
||||
set scr_allow_intermission "0"
|
||||
set scr_voting_bots "0"
|
||||
set scr_nuke_increases_streak "0"
|
||||
set headshot_detach_head "1"
|
||||
set scr_killstreaks_increase_killstreak "1"
|
||||
set scr_postDeathDelayMod "1.0"
|
||||
|
||||
// _weapon
|
||||
set scr_allowDropWeaponOnCommand "1"
|
||||
set scr_allowPickUpEquipment "1"
|
||||
set scr_allowDropWeaponOnDeath "1"
|
||||
set scr_allowClaymoreBounces "1"
|
||||
set scr_extraTeamIcons "1"
|
||||
set scr_deleteNadeOnTeamChange "1"
|
||||
|
||||
// _perkfunctions
|
||||
set combathighIsJuiced "1"
|
||||
set onemanarmyRefillsTubes "1"
|
||||
set fix_onemanarmyFlareBug "0"
|
||||
|
||||
// _killstreaks
|
||||
set scr_killstreak_rollover "1"
|
||||
set scr_currentRolloverKillstreaksOnlyIncrease "1"
|
||||
set scr_killstreakHud "1"
|
||||
set scr_maxKillstreakRollover "1"
|
||||
set scr_killstreak_mod "0"
|
||||
set scr_killstreak_print "2"
|
||||
set scr_specialist "1"
|
||||
//set scr_specialist_killCount_ "4"
|
||||
set scr_specialist_perks1 "specialty_scavenger,specialty_fastreload,specialty_marathon"
|
||||
set scr_specialist_perks2 "specialty_bulletdamage,specialty_lightweight,specialty_coldblooded,specialty_explosivedamage,specialty_hardline"
|
||||
set scr_specialist_perks3 "specialty_bulletaccuracy,specialty_heartbreaker,specialty_detectexplosive,specialty_extendedmelee,specialty_localjammer"
|
||||
|
||||
// _nuke
|
||||
set scr_nuke_is_moab "1"
|
||||
set scr_nuke_kills_all "0"
|
||||
set scr_nuke_emp_duration "30"
|
||||
set scr_nuke_perm_vision "1"
|
||||
set scr_nuke_canCall_whenTimePassed "0"
|
||||
set scr_nuke_canCall_whenScoreLimitClose "0"
|
||||
set scr_nuke_canCall_whenScoreLimitClose_selfOnly "0"
|
||||
set scr_nuke_doSlowmo "2"
|
||||
|
||||
// _emp
|
||||
set scr_emp_doesFriendlyFire "0"
|
||||
set scr_emp_duration "60"
|
||||
|
||||
// _helicopter
|
||||
set scr_helicopter_allowQueue "0"
|
||||
set scr_helicopter_cobra_duration "30"
|
||||
set scr_helicopter_pavelow_duration "30"
|
||||
set scr_helicopter_apache_duration "30"
|
||||
set scr_helicopter_apache_health "1500"
|
||||
set scr_helicopter_apache_num_flares "1"
|
||||
set scr_helicopter_pavelow_health "3000"
|
||||
set scr_helicopter_pavelow_num_flares "1"
|
||||
set scr_helicopter_cobra_health "1500"
|
||||
set scr_helicopter_cobra_num_flares "0"
|
||||
|
||||
// _autosentry
|
||||
set scr_sentry_duration "360"
|
||||
set scr_sentry_killsIncreaseStreak "1"
|
||||
|
||||
// _airdrop
|
||||
set scr_airdrop_killstreaksIncreaseStreak "1"
|
||||
set scr_airdrop_patchDupeGlitch "0"
|
||||
|
||||
// _ac130
|
||||
set scr_ac130_duration "30"
|
||||
set scr_ac130_flares "1"
|
||||
set scr_ac130_fast "1"
|
||||
|
||||
// _uav
|
||||
set scr_uav_timeout "30"
|
||||
set scr_counter_uav_timeout "30"
|
||||
set scr_uav_forceon "0"
|
||||
set scr_uav_does_print "1"
|
||||
|
||||
// _airstrike
|
||||
set scr_harrier_duration "30"
|
||||
set scr_harrier_fast "1"
|
||||
set scr_airstrike_mutate_fix "1"
|
||||
set scr_airstrike_teamChangeFix "1"
|
||||
@@ -1,657 +0,0 @@
|
||||
///////////////////////////////////////////////////
|
||||
/// IW4x Server Configuration file //
|
||||
///////////////////////////////////////////////////
|
||||
//This config best view with Notepad++ OR //
|
||||
//Other non-windows notepad of your choice. //
|
||||
///////////////////////////////////////////////////
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// SERVER NAME & COLORS TIPS //
|
||||
//////////////////////////////////////////////////
|
||||
// //
|
||||
// ^1 Red //
|
||||
// ^2 Green //
|
||||
// ^3 yellow //
|
||||
// ^4 Blue //
|
||||
// ^5 Cyan //
|
||||
// ^6 Pink //
|
||||
// ^7 White //
|
||||
// ^8 Depends on the map you playing. //
|
||||
// American maps: Dark Green //
|
||||
// Russian maps: Dark Red //
|
||||
// British maps: Dark Blue //
|
||||
// ^9 grey //
|
||||
// ^0 Black //
|
||||
// ^: Rainbow colors //
|
||||
// //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
|
||||
set sv_hostname "^1Bot ^3War^5fare ^724/7 Rust 10x" // Sets the server hostname
|
||||
set sv_motd "^1Bot ^3War^5fare" // Sets a custom motd which is shown on the loadscreen when a player joins
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// ADMIN INFO //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set _Admin "INeedGames" // Your username.
|
||||
set _Email "ineedbots@outlook.com" // E-mail address. you can leave blank
|
||||
set _Website "http://www.moddb.com/mods/bot-warfare" // Website
|
||||
set _Location "Canada - West" // Location
|
||||
|
||||
set sv_wwwBaseURL "http://rawcdn.githack.com/ineedbots/www_host/main/iw4x/"
|
||||
set sv_wwwDownload "1"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// NON-GAMEPLAY CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set sv_securityLevel "23" // Configures the servers security level.
|
||||
set sv_customTextColor "" // custom color for ^;
|
||||
set g_password "" // Password Protected Server. Leave blank if you want players to join
|
||||
set g_inactivity "180" // Enable auto kick feature for idle/AFK players
|
||||
set g_inactivitySpectator "180" // Time in seconds before a spectator gets kicked
|
||||
set g_logSync "1" // 1 always flush games_mp.log, 0 only flush on game end
|
||||
set g_log "logs/server/games_mp.log" // Gamelog filename. If you edit this..make sure you change B3.xml if you have bigbrotherbot.
|
||||
set sv_allowClientConsole "1" // Enable or Disable players ability to access server commands
|
||||
set sv_maxclients "18" // Max players in your server.
|
||||
set sv_maxPing "0" // (BUGGED) Maximum ping allowed, any higher and players will get kicked.( If you get 'server is for low ping players only', set this to 0)
|
||||
set sv_timeout "20" // Timeout time period. You will timeout after (20) seconds when attempting to connect or if you are getting connection interruptions
|
||||
set sv_reconnectlimit "3" // How many times you can try to reconnect
|
||||
set com_logFilter "1" // Removes ~95% of unneeded lines from the log.
|
||||
set sv_pure "0" // verifying cilent files
|
||||
set sv_sayName "^7Console" // name server-side 'say' commands show up as
|
||||
set sv_floodProtect "1" // Chat Spam Protection
|
||||
set sv_kickBanTime "300" // Kick Ban Duration. Time before player can re-join the server after getting kicked.
|
||||
set party_enable "0" // Lobby Mode Server. Read the wiki more about this. If you want sv_maprotation & control your gametype settings. Leave this at 0.
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// BASE GAME CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
// //
|
||||
// war - Team Deathmatch //
|
||||
// dm - Free-for-all //
|
||||
// dom - Domination //
|
||||
// koth - Headquarters //
|
||||
// sab - Sabotage //
|
||||
// sd - Search and Destroy //
|
||||
// arena - Arena //
|
||||
// dd - Demolition //
|
||||
// ctf - Capture the Flag //
|
||||
// oneflag - One-Flag CTF //
|
||||
// gtnw - Global Thermo-Nuclear War //
|
||||
// //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set g_gametype "dom" // Defualt gametype in case map rotation doesnt have any gametypes. Choose a gametype from the list above.
|
||||
set scr_player_forcerespawn "1" // Players respawn automatically after being fragged
|
||||
set scr_thirdperson "0" // third-person mode
|
||||
set scr_game_hardpoints "1" // Enable/Disable Killstreak rewards
|
||||
set scr_hardpoint_allowhelicopter "1" // Allow Attack Helicopters
|
||||
set scr_hardpoint_allowuav "1" // Allow UAV
|
||||
set scr_hardpoint_allowartillery "1" // Allow Airstrikes
|
||||
set scr_game_perks "1" // Allow players to have perks
|
||||
set scr_game_allowkillcam "1" // Allow Killcam.
|
||||
set scr_nukeTimer "10" // Timer when nuke goes off
|
||||
set scr_diehard "0" // die-hard mode. Teammates will have to relieve each other.
|
||||
set scr_teambalance "0" // Enable or Disable auto balance.
|
||||
set scr_game_spectatetype "2" // Allow Spectators. 0 Disabled, 1 Team/Player only, 2 Free
|
||||
set scr_player_suicidespawndelay "0" // Wait before you respawn if you committed suicide.
|
||||
set scr_player_sprinttime "4" // Sprint time, duration a player can run.
|
||||
set scr_game_killstreakdelay "8" // Delay your killstreaks
|
||||
set scr_game_objectiveStreaks "1" // Enable Chopper, AC130 and Nuke
|
||||
set scr_classic "0" // Enable IW3 killstreak system
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// XP BOOST CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
// uncomment below commands for XP config //
|
||||
// by removing the // before each set dvar. //
|
||||
// Change "war" gametype to your liking. //
|
||||
// //
|
||||
// DO NOT ABUSE! Some people like to rank. //
|
||||
// DON'T BE A DICK! Warn HIGH XP via hostname. //
|
||||
// Don't know what you doing? Dont touch it! //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_xpscale "10" // IWs way of Double XP.
|
||||
|
||||
//set scr_war_score_kill "0" // Amount of XP by each kill.
|
||||
//set scr_war_score_headshot "0" // Amount of XP by each headshot.
|
||||
//set scr_war_score_death "0" // Amount of XP by each death.
|
||||
//set scr_war_score_suicide "0" // Amount of XP by each suicide.
|
||||
//set scr_war_score_assist "0" // Amount of XP by each assist.
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// HARDCORE CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
// uncomment below commands for some hardcore //
|
||||
// by removing the // before each set dvar. //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
// set g_hardcore "1" // Enable hardcore mode
|
||||
// set scr_hardcore "1" // Enable hardcore mode again...
|
||||
// set ui_hud_hardcore "1" // Removes Heads up display in hardcore mode.
|
||||
// set scr_game_deathpointloss "0" // Points Loss on death XP.
|
||||
// set scr_game_onlyheadshots "0" // Enable/Disable Only Headshots mode. You can only kill players by taking headshots.
|
||||
// set scr_player_maxhealth "30" // Percent of Health players will have on Respawn.
|
||||
// set scr_team_fftype "1" // Enable or Disable Friendly Fire. 1 on, 2 reflect, 3 shared
|
||||
// set scr_player_healthregentime "0" // Time it takes you to recover damage.
|
||||
// set scr_team_kickteamkillers "5" // Anyone who team kills, gets kicked automatically if you enable this feature.
|
||||
// set scr_team_teamkillspawndelay "20" // Team Killer gets a respawn penalty of specified seconds (20).
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// AIRDROP CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
// uncomment below commands for airdrop config //
|
||||
// by removing the // before each set dvar. //
|
||||
// //
|
||||
// Weight (1->1000) //
|
||||
// Selection is weighted random //
|
||||
// higher weights increase selection chance //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
// set scr_airdrop_ac130 "3"
|
||||
set scr_airdrop_ammo "15"
|
||||
// set scr_airdrop_counter_uav "15"
|
||||
set scr_airdrop_emp "2"
|
||||
// set scr_airdrop_harrier_airstrike "7"
|
||||
// set scr_airdrop_helicopter "7"
|
||||
// set scr_airdrop_helicopter_flares "5"
|
||||
// set scr_airdrop_helicopter_minigun "3"
|
||||
set scr_airdrop_nuke "1"
|
||||
// set scr_airdrop_precision_airstrike "11"
|
||||
// set scr_airdrop_predator_missile "12"
|
||||
// set scr_airdrop_sentry "12"
|
||||
// set scr_airdrop_stealth_airstrike "5"
|
||||
// set scr_airdrop_uav "17"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// EMERGENCY AIRDROP CONFIGURATION //
|
||||
//////////////////////////////////////////////////
|
||||
// uncomment below commands for airdrop config //
|
||||
// by removing the // before each set dvar. //
|
||||
// //
|
||||
// Weight (1->1000) //
|
||||
// Selection is weighted random //
|
||||
// higher weights increase selection chance //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
// set scr_airdrop_mega_ac130 "2"
|
||||
set scr_airdrop_mega_ammo "9"
|
||||
// set scr_airdrop_mega_counter_uav "16"
|
||||
set scr_airdrop_mega_emp "2"
|
||||
// set scr_airdrop_mega_harrier_airstrike "5"
|
||||
// set scr_airdrop_mega_helicopter "5"
|
||||
// set scr_airdrop_mega_helicopter_flares "3"
|
||||
// set scr_airdrop_mega_helicopter_minigun "2"
|
||||
set scr_airdrop_mega_nuke "1"
|
||||
// set scr_airdrop_mega_precision_airstrike "10"
|
||||
// set scr_airdrop_mega_predator_missile "14"
|
||||
// set scr_airdrop_mega_sentry "16"
|
||||
// set scr_airdrop_mega_stealth_airstrike "3"
|
||||
// set scr_airdrop_mega_uav "12"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// FREE FOR ALL GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_dm_scorelimit "10000" // Score limit to win the game.
|
||||
set scr_dm_timelimit "10" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_dm_playerrespawndelay "0" // How long player will wait until respawn.
|
||||
set scr_dm_numlives "0" // Number of lives per player 0 for unlimited.
|
||||
set scr_dm_roundlimit "1" // Rounds per game.
|
||||
set scr_dm_winlimit "1" // amount of wins needed to win a round-based game
|
||||
set scr_dm_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// TEAM DEATHMATCH GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_war_scorelimit "25600" // Score limit to win the game.
|
||||
set scr_war_timelimit "10" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_war_playerrespawndelay "0" // How long player will wait until respawn.
|
||||
set scr_war_waverespawndelay "0" // Duration is seconds before the first respawn in each round.
|
||||
set scr_war_numlives "0" // Number of lives per player 0 for unlimited.
|
||||
set scr_war_roundlimit "1" // Rounds per game.
|
||||
set scr_war_winlimit "1" // amount of wins needed to win a round-based game
|
||||
set scr_war_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// DOMINATION GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_dom_scorelimit "300" // Score limit to win the game.
|
||||
set scr_dom_timelimit "30" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_dom_playerrespawndelay "0" // How long player will wait until respawn.
|
||||
set scr_dom_waverespawndelay "0" // Duration is seconds before the first respawn in each round.
|
||||
set scr_dom_numlives "0" // Number of lives per player per game. 0 is unlimited.
|
||||
set scr_dom_roundlimit "1" // Rounds per game
|
||||
set scr_dom_winlimit "1" // amount of wins needed to win a round-based game
|
||||
set scr_dom_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// DEMOLITION GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_dd_scorelimit "1" // Score limit needed to win.
|
||||
set scr_dd_timelimit "2.5" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_dd_playerrespawndelay "0" // How long player will wait until respawn.
|
||||
set scr_dd_waverespawndelay "0" // Duration is seconds before the first respawn in each round.
|
||||
set scr_dd_numlives "0" // Number of lives per player per game. 0 is unlimited.
|
||||
set scr_dd_roundswitch "1" // Rounds before the teams switch the sides.
|
||||
set scr_dd_bombtimer "45" // Time the bomb takes to detonate.
|
||||
set scr_dd_defusetime "5" // Time taken to defuse the bomb.
|
||||
set scr_dd_planttime "5" // Time it takes to plant a bomb in seconds.
|
||||
set scr_dd_roundlimit "3" // Rounds the game is limited to, if there are no winners.
|
||||
set scr_dd_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// SEARCH AND DESTROY GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_sd_scorelimit "1" // Score limit required to win the game.
|
||||
set scr_sd_timelimit "2.5" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_sd_playerrespawndelay "0" // How long player will wait until respawn.
|
||||
set scr_sd_waverespawndelay "0" // Duration is seconds before the first respawn in each round.
|
||||
set scr_sd_numlives "1" // Number of lives per player per game.
|
||||
set scr_sd_roundlimit "0" // Rounds the game is limited to 0 for unlimited.
|
||||
set scr_sd_winlimit "4" // amount of wins needed to win a round-based game.
|
||||
set scr_sd_roundswitch "3" // after X rounds, switch sides.
|
||||
set scr_sd_bombtimer "45" // Time taken for the bomb to detonate.
|
||||
set scr_sd_defusetime "5" // Time taken to defuse the bomb.
|
||||
set scr_sd_multibomb "0" // allow multiple people to 'have the bomb'.
|
||||
set scr_sd_planttime "5" // How long will it take player to 'plant the bomb'.
|
||||
set scr_sd_promode "0"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// SABOTAGE GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_sab_scorelimit "0" // Score limit to win the match.
|
||||
set scr_sab_timelimit "20" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_sab_bombtimer "30" // Duration in seconds the bomb takes to detonate.
|
||||
set scr_sab_defusetime "5" // Time taken to defuse the bomb.
|
||||
set scr_sab_hotpotato "0" // One bomb that the teams must fight over. One defending and one have to plant at the site.
|
||||
set scr_sab_numlives "0" // Number of lives per player per game.
|
||||
set scr_sab_planttime "2.5" // Time taken to plant the bomb.
|
||||
set scr_sab_playerrespawndelay "7.5" // Time before respawn.
|
||||
set scr_sab_roundlimit "1" // Rounds per game.
|
||||
set scr_sab_roundswitch "1" // Rounds needed to be played before the teams switch sides.
|
||||
set scr_sab_waverespawndelay "0" // Time delay for first respawn before the game.
|
||||
set scr_sab_promode "0"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// CAPTURE THE FLAG GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_ctf_scorelimit "0" // Target score before the round ends.
|
||||
set scr_ctf_timelimit "10" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_ctf_numlives "0" // Number of lives per player 0 for unlimited.
|
||||
set scr_ctf_halftime "1" // Half-Time
|
||||
set scr_ctf_roundlimit "1" // How many rounds match would last.
|
||||
set scr_ctf_returntime "30" // How many seconds before flag returns to base without nobody touching it.
|
||||
set scr_ctf_playerrespawndelay "0" // Respawn wait in seconds.
|
||||
set scr_ctf_waverespawndelay "10" // Time delay for first respawn before the game.
|
||||
set scr_ctf_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// ONE FLAG GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_oneflag_scorelimit "1" // Target score before the round ends.
|
||||
set scr_oneflag_timelimit "3" // Duration in minutes for the game to end if the score limit isnt reached.
|
||||
set scr_oneflag_numlives "0" // number of lives per player 0 for unlimited.
|
||||
set scr_oneflag_playerrespawndelay "0" // Respawn wait in seconds.
|
||||
set scr_oneflag_roundlimit "1" // How many rounds match would last.
|
||||
set scr_oneflag_roundswitch "1" // Rounds before the teams switch sides.
|
||||
set scr_oneflag_waverespawndelay "0" // First respawn delay for each round.
|
||||
set scr_oneflag_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// HEADQUARTERS GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_koth_scorelimit "250" // Score limit to win the game.
|
||||
set scr_koth_timelimit "15" // Duration in minutes the game will continue if the score isnt reached.
|
||||
set scr_koth_numlives "0" // Number of lives per game. 0 for unlimited.
|
||||
set scr_koth_playerrespawndelay "0" // Players respawn wait.
|
||||
set scr_koth_roundlimit "1" // Rounds to be played.
|
||||
set scr_koth_roundswitch "1" // Rounds to be played before teams switch sides.
|
||||
set scr_koth_winlimit "1" // rounds per game
|
||||
set scr_koth_waverespawndelay "0" // First respawn delay for each round.
|
||||
set scr_koth_promode "0"
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// ARENA GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_arena_scorelimit "1" // Score limit to win the game.
|
||||
set scr_arena_timelimit "2.5" // Duration in minutes the game will continue if the score isnt reached.
|
||||
set scr_arena_numlives "1" // Number of lives per game 0 for unlimited.
|
||||
set scr_arena_roundlimit "0" // Rounds to be played.
|
||||
set scr_arena_roundswitch "3" // Rounds before the teams switch sides.
|
||||
set scr_arena_winlimit "4" // rounds per game
|
||||
set scr_arena_promode "0"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// GLOBAL THERMONUCLEAR WAR GAMETYPE SETTINGS //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
set scr_gtnw_scorelimit "101" // Score limit to win the game.
|
||||
set scr_gtnw_timelimit "10" // Duration in minutes the game will continue if the score isnt reached.
|
||||
set scr_gtnw_numlives "0" // Number of lives per game 0 for unlimited.
|
||||
set scr_gtnw_playerrespawndelay "0" // Players respawn wait.
|
||||
set scr_gtnw_roundlimit "1" // Rounds to be played.
|
||||
set scr_gtnw_roundswitch "0" // Rounds before the teams switch sides.
|
||||
set scr_gtnw_winlimit "1" // rounds per game
|
||||
set scr_gtnw_waverespawndelay "0" // First respawn delay for each round.
|
||||
set scr_gtnw_promode "0"
|
||||
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// MAP ROTATION TIPS //
|
||||
//////////////////////////////////////////////////
|
||||
// //
|
||||
//Example: sv_maprotation "map mp_bloc map mp_" //
|
||||
// //
|
||||
// mp_afghan - Afghan //
|
||||
// mp_derail - Derail //
|
||||
// mp_estate - Estate //
|
||||
// mp_favela - Favela //
|
||||
// mp_highrise - Highrise //
|
||||
// mp_invasion - Invasion //
|
||||
// mp_checkpoint - Karachi //
|
||||
// mp_quarry - Quarry //
|
||||
// mp_rundown - Rundown //
|
||||
// mp_rust - Rust //
|
||||
// mp_boneyard - Scrapyard //
|
||||
// mp_nightshift - Skidrow //
|
||||
// mp_subbase - Sub Base //
|
||||
// mp_terminal - Terminal //
|
||||
// mp_underpass - Underpass //
|
||||
// mp_brecourt - Wasteland //
|
||||
// //
|
||||
//// DLC1 STIMULUS ///////////////////////////////
|
||||
// Make sure you have them all installed on your//
|
||||
// server. //
|
||||
// //
|
||||
// mp_complex - Bailout //
|
||||
// mp_crash - Crash //
|
||||
// mp_overgrown - Overgrown //
|
||||
// mp_compact - Salvage //
|
||||
// mp_storm - Storm //
|
||||
// //
|
||||
//// DLC2 RESURGENCE /////////////////////////////
|
||||
// //
|
||||
// mp_abandon - Carnival //
|
||||
// mp_fuel2 - Fuel //
|
||||
// mp_strike - Strike //
|
||||
// mp_trailerpark - Trailer Park //
|
||||
// mp_vacant - Vacant //
|
||||
// //
|
||||
//// DLC3 NUKETOWN ///////////////////////////////
|
||||
// //
|
||||
// mp_nuked - Nuketown //
|
||||
// //
|
||||
/// DLC4 CLASSICS 1 //////////////////////////////
|
||||
// //
|
||||
// mp_cross_fire - Crossfire //
|
||||
// mp_bloc - Bloc //
|
||||
// mp_cargoship - Cargoship //
|
||||
// //
|
||||
/// DLC5 CLASSICS 2 //////////////////////////////
|
||||
// //
|
||||
// mp_killhouse - Killhouse //
|
||||
// mp_bog_sh - Bog //
|
||||
// //
|
||||
/// DLC6 FREIGHTER ///////////////////////////////
|
||||
// //
|
||||
// mp_cargoship_sh - Freighter //
|
||||
// //
|
||||
/// DLC7 RESURRECTION ////////////////////////////
|
||||
// //
|
||||
// mp_shipment_long - Long:Shipment //
|
||||
// mp_rust_long - Long: Rust //
|
||||
// mp_firingrange - Firing Range //
|
||||
// //
|
||||
/// DLC8 RECYCLED ////////////////////////////////
|
||||
// //
|
||||
// mp_storm_spring - Chemical Plant //
|
||||
// mp_fav_tropical - Tropical: Favela //
|
||||
// mp_estate_tropical - Tropical: Estate //
|
||||
// mp_crash_tropical - Tropical: Crash //
|
||||
// mp_bloc_sh - Forgotten City //
|
||||
// //
|
||||
/// SP MAPS to MP ////////////////////////////////
|
||||
// //
|
||||
// oilrig - Oilrig //
|
||||
// iw4_credits - Test map //
|
||||
// co_hunted - Village //
|
||||
// //
|
||||
//////////////////////////////////////////////////
|
||||
|
||||
///////////////////////////////////////////////////////
|
||||
// GAMETYPE ROTATION TIPS //
|
||||
///////////////////////////////////////////////////////
|
||||
// //
|
||||
// Example: set sv_maprotation //
|
||||
// "gametype dm map mp_rust gametype war map oilrig" //
|
||||
// //
|
||||
// war - Team Deathmatch //
|
||||
// dm - Free-for-all //
|
||||
// dom - Domination //
|
||||
// koth - Headquarters //
|
||||
// sab - Sabotage //
|
||||
// sd - Search and Destroy //
|
||||
// arena - Arena //
|
||||
// dd - Demolition //
|
||||
// ctf - Capture the Flag //
|
||||
// oneflag - One-Flag CTF //
|
||||
// gtnw - Global Thermo-Nuclear War //
|
||||
// //
|
||||
///////////////////////////////////////////////////////
|
||||
|
||||
|
||||
set sv_maprotation "map mp_rust"
|
||||
|
||||
// vanilla script
|
||||
set perk_scavengerMode "0"
|
||||
set scr_deleteexplosivesonspawn "1"
|
||||
set scr_maxPerPlayerExplosives "2"
|
||||
set scr_nukeCancelMode "0"
|
||||
set scr_spawnpoint_forceindex ""
|
||||
set scr_spawnpointlospenalty ""
|
||||
set scr_spawnpointweaponpenalty ""
|
||||
set scr_spawnsimple ""
|
||||
set scr_spawn_enemyavoiddist ""
|
||||
|
||||
// _spawnlogic
|
||||
set scr_spawnpointfavorweight ""
|
||||
set scr_spawnpointdooutsidecheck ""
|
||||
|
||||
// iw4x
|
||||
set scr_player_forceautoassign "1"
|
||||
set scr_rankedmatch "1"
|
||||
set sv_enableJavelinBug "1"
|
||||
set g_playerEjection "0"
|
||||
set g_playerCollision "0"
|
||||
set sv_enableBounces "1"
|
||||
set iw4x_onelog ""
|
||||
|
||||
|
||||
// CUSTOM
|
||||
set bot_pvb_helper_noPlayersOnTeam ""
|
||||
set bot_pvb_helper_customBotClassTeam ""
|
||||
set scr_showHP "1"
|
||||
set scr_allowFPSBooster "1"
|
||||
|
||||
// _class
|
||||
// set scr_allow_ "0"
|
||||
// scr_streakcount_ "15"
|
||||
set scr_default_primarys "m4,famas"
|
||||
set scr_default_secondarys "usp"
|
||||
set scr_default_perks1 "specialty_fastreload,specialty_scavenger"
|
||||
set scr_default_perks2 "specialty_bulletdamage"
|
||||
set scr_default_perks3 "specialty_bulletaccuracy,specialty_detectexplosive"
|
||||
set scr_default_equipment "frag_grenade_mp"
|
||||
set scr_default_offhand "smoke_grenade"
|
||||
set scr_default_deathstreak "none"
|
||||
set scr_restriction_messages 1
|
||||
set scr_num_flash 2
|
||||
set scr_num_stun 2
|
||||
|
||||
// _menus
|
||||
set scr_player_startteamselection "autoassign"
|
||||
set scr_player_forceclassselection ""
|
||||
set scr_player_allowChangeTeam "1"
|
||||
|
||||
// _bot
|
||||
set bots_main "1"
|
||||
set bots_main_GUIDs ""
|
||||
set bots_main_firstIsHost "0"
|
||||
set bots_main_waitForHostTime "10"
|
||||
set bots_manage_add "12"
|
||||
set bots_manage_fill "12"
|
||||
set bots_manage_fill_spec "0"
|
||||
set bots_manage_fill_mode "0"
|
||||
set bots_manage_fill_kick "1"
|
||||
set bots_team "autoassign"
|
||||
set bots_team_amount "0"
|
||||
set bots_team_force "1"
|
||||
set bots_team_mode "0"
|
||||
set bots_skill "0"
|
||||
set bots_skill_axis_hard "0"
|
||||
set bots_skill_axis_med "0"
|
||||
set bots_skill_allies_hard "0"
|
||||
set bots_skill_allies_med "0"
|
||||
set bots_loadout_reasonable "1"
|
||||
set bots_loadout_allow_op "0"
|
||||
set bots_loadout_rank "-1"
|
||||
set bots_loadout_prestige "-1"
|
||||
set bots_play_move "1"
|
||||
set bots_play_knife "1"
|
||||
set bots_play_fire "1"
|
||||
set bots_play_nade "1"
|
||||
set bots_play_take_carepackages "1"
|
||||
set bots_play_obj "1"
|
||||
set bots_play_camp "1"
|
||||
set bots_play_jumpdrop "1"
|
||||
set bots_play_target_other "1"
|
||||
set bots_play_killstreak "1"
|
||||
set bots_play_ads "1"
|
||||
|
||||
|
||||
// iw4madmin
|
||||
set sv_printradarupdates "1"
|
||||
|
||||
|
||||
// _killcam
|
||||
set scr_killcam_doSlowmo "1"
|
||||
|
||||
|
||||
// _gamelogic
|
||||
set scr_extraDamageFeedback "1"
|
||||
set scr_printDamage "1"
|
||||
set scr_disableKnife "0"
|
||||
set scr_intermissionTime "0"
|
||||
set scr_forceKillcam "1"
|
||||
set scr_forceKillcam_winnersKill "0"
|
||||
set scr_game_allowFinalKillcam "1"
|
||||
set scr_disableTurret "0"
|
||||
set scr_failCam "1"
|
||||
set scr_voting "0"
|
||||
set scr_voting_maps "mp_rust,mp_terminal"
|
||||
set scr_voting_time "26.0"
|
||||
set scr_voting_winTime "4.0"
|
||||
set scr_allow_intermission "0"
|
||||
set scr_voting_bots "0"
|
||||
set scr_nuke_increases_streak "0"
|
||||
set headshot_detach_head "1"
|
||||
set scr_killstreaks_increase_killstreak "1"
|
||||
set scr_postDeathDelayMod "1.0"
|
||||
|
||||
// _weapon
|
||||
set scr_allowDropWeaponOnCommand "1"
|
||||
set scr_allowPickUpEquipment "1"
|
||||
set scr_allowDropWeaponOnDeath "1"
|
||||
set scr_allowClaymoreBounces "1"
|
||||
set scr_extraTeamIcons "1"
|
||||
set scr_deleteNadeOnTeamChange "1"
|
||||
|
||||
// _perkfunctions
|
||||
set combathighIsJuiced "1"
|
||||
set onemanarmyRefillsTubes "1"
|
||||
set fix_onemanarmyFlareBug "0"
|
||||
|
||||
// _killstreaks
|
||||
set scr_killstreak_rollover "1"
|
||||
set scr_currentRolloverKillstreaksOnlyIncrease "1"
|
||||
set scr_killstreakHud "1"
|
||||
set scr_maxKillstreakRollover "1"
|
||||
set scr_killstreak_mod "0"
|
||||
set scr_killstreak_print "2"
|
||||
set scr_specialist "1"
|
||||
//set scr_specialist_killCount_ "4"
|
||||
set scr_specialist_perks1 "specialty_scavenger,specialty_fastreload,specialty_marathon"
|
||||
set scr_specialist_perks2 "specialty_bulletdamage,specialty_lightweight,specialty_coldblooded,specialty_explosivedamage,specialty_hardline"
|
||||
set scr_specialist_perks3 "specialty_bulletaccuracy,specialty_heartbreaker,specialty_detectexplosive,specialty_extendedmelee,specialty_localjammer"
|
||||
|
||||
// _nuke
|
||||
set scr_nuke_is_moab "1"
|
||||
set scr_nuke_kills_all "0"
|
||||
set scr_nuke_emp_duration "30"
|
||||
set scr_nuke_perm_vision "1"
|
||||
set scr_nuke_canCall_whenTimePassed "0"
|
||||
set scr_nuke_canCall_whenScoreLimitClose "0"
|
||||
set scr_nuke_canCall_whenScoreLimitClose_selfOnly "0"
|
||||
set scr_nuke_doSlowmo "2"
|
||||
|
||||
// _emp
|
||||
set scr_emp_doesFriendlyFire "0"
|
||||
set scr_emp_duration "60"
|
||||
|
||||
// _helicopter
|
||||
set scr_helicopter_allowQueue "0"
|
||||
set scr_helicopter_cobra_duration "30"
|
||||
set scr_helicopter_pavelow_duration "30"
|
||||
set scr_helicopter_apache_duration "30"
|
||||
set scr_helicopter_apache_health "1500"
|
||||
set scr_helicopter_apache_num_flares "1"
|
||||
set scr_helicopter_pavelow_health "3000"
|
||||
set scr_helicopter_pavelow_num_flares "1"
|
||||
set scr_helicopter_cobra_health "1500"
|
||||
set scr_helicopter_cobra_num_flares "0"
|
||||
|
||||
// _autosentry
|
||||
set scr_sentry_duration "360"
|
||||
set scr_sentry_killsIncreaseStreak "1"
|
||||
|
||||
// _airdrop
|
||||
set scr_airdrop_killstreaksIncreaseStreak "1"
|
||||
set scr_airdrop_patchDupeGlitch "0"
|
||||
|
||||
// _ac130
|
||||
set scr_ac130_duration "30"
|
||||
set scr_ac130_flares "1"
|
||||
set scr_ac130_fast "1"
|
||||
|
||||
// _uav
|
||||
set scr_uav_timeout "30"
|
||||
set scr_counter_uav_timeout "30"
|
||||
set scr_uav_forceon "0"
|
||||
set scr_uav_does_print "1"
|
||||
|
||||
// _airstrike
|
||||
set scr_harrier_duration "30"
|
||||
set scr_harrier_fast "1"
|
||||
set scr_airstrike_mutate_fix "1"
|
||||
set scr_airstrike_teamChangeFix "1"
|
||||
@@ -0,0 +1,916 @@
|
||||
/*
|
||||
_wp_editor
|
||||
Author: INeedGames
|
||||
Date: 09/26/2020
|
||||
The ingame waypoint editor.
|
||||
*/
|
||||
|
||||
#include common_scripts\utility;
|
||||
#include maps\mp\_utility;
|
||||
#include maps\mp\gametypes\_hud_util;
|
||||
#include maps\mp\bots\_bot_utility;
|
||||
|
||||
init()
|
||||
{
|
||||
if ( getdvar( "bots_main_debug" ) == "" )
|
||||
{
|
||||
setdvar( "bots_main_debug", 0 );
|
||||
}
|
||||
|
||||
if ( !getdvarint( "bots_main_debug" ) )
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ( !getdvarint( "developer" ) )
|
||||
{
|
||||
setdvar( "developer_script", 1 );
|
||||
setdvar( "developer", 1 );
|
||||
|
||||
setdvar( "sv_mapRotation", "map " + getdvar( "mapname" ) );
|
||||
exitlevel( false );
|
||||
}
|
||||
|
||||
setdvar( "bots_main", 0 );
|
||||
setdvar( "bots_main_menu", 0 );
|
||||
setdvar( "bots_manage_fill_mode", 0 );
|
||||
setdvar( "bots_manage_fill", 0 );
|
||||
setdvar( "bots_manage_add", 0 );
|
||||
setdvar( "bots_manage_fill_kick", 1 );
|
||||
setdvar( "bots_manage_fill_spec", 1 );
|
||||
|
||||
if ( getdvar( "bots_main_debug_distance" ) == "" )
|
||||
{
|
||||
setdvar( "bots_main_debug_distance", 512.0 );
|
||||
}
|
||||
|
||||
if ( getdvar( "bots_main_debug_cone" ) == "" )
|
||||
{
|
||||
setdvar( "bots_main_debug_cone", 0.65 );
|
||||
}
|
||||
|
||||
if ( getdvar( "bots_main_debug_minDist" ) == "" )
|
||||
{
|
||||
setdvar( "bots_main_debug_minDist", 32.0 );
|
||||
}
|
||||
|
||||
if ( getdvar( "bots_main_debug_drawThrough" ) == "" )
|
||||
{
|
||||
setdvar( "bots_main_debug_drawThrough", false );
|
||||
}
|
||||
|
||||
setdvar( "player_sustainAmmo", 1 );
|
||||
|
||||
level.waypoints = [];
|
||||
level.waypointcount = 0;
|
||||
|
||||
level waittill( "connected", player );
|
||||
player thread onPlayerSpawned();
|
||||
}
|
||||
|
||||
onPlayerSpawned()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "spawned_player" );
|
||||
self thread startDev();
|
||||
}
|
||||
}
|
||||
|
||||
startDev()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
level.wptolink = -1;
|
||||
level.autolink = false;
|
||||
self.nearest = -1;
|
||||
|
||||
self takeallweapons();
|
||||
self giveweapon( "m16_gl_mp" ); // to knife windows
|
||||
self giveweapon( "javelin_mp" ); // to mark jav spots
|
||||
self setoffhandprimaryclass( "other" );
|
||||
self giveweapon( "semtex_mp" );
|
||||
self _clearperks();
|
||||
self.specialty = [];
|
||||
self maps\mp\perks\_perks::giveperk( "specialty_fastmantle" );
|
||||
self maps\mp\perks\_perks::giveperk( "specialty_falldamage" );
|
||||
self maps\mp\perks\_perks::giveperk( "specialty_marathon" );
|
||||
self maps\mp\perks\_perks::giveperk( "specialty_lightweight" );
|
||||
self freezecontrols( false );
|
||||
|
||||
self thread watchAddWaypointCommand();
|
||||
self thread watchDeleteAllWaypointsCommand();
|
||||
self thread watchDeleteWaypointCommand();
|
||||
self thread watchLinkWaypointCommand();
|
||||
self thread watchLoadWaypointsCommand();
|
||||
self thread watchSaveWaypointsCommand();
|
||||
self thread watchunlinkWaypointCommand();
|
||||
self thread watchAutoLinkCommand();
|
||||
self thread updateWaypointsStats();
|
||||
self thread watchAstarCommand();
|
||||
|
||||
self thread sayExtras();
|
||||
}
|
||||
|
||||
sayExtras()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
self iprintln( "Before adding waypoints, holding buttons:" );
|
||||
wait 4;
|
||||
self iprintln( "ADS - climb" );
|
||||
self iprintln( "Use + Attack - tube" );
|
||||
self iprintln( "Attack - grenade" );
|
||||
self iprintln( "Use - claymore" );
|
||||
wait 4;
|
||||
self iprintln( "Else the waypoint will be your stance." );
|
||||
self iprintln( "Making a crouch waypoint with only one link..." );
|
||||
self iprintln( "Makes a camping waypoint." );
|
||||
}
|
||||
|
||||
watchAstarCommand()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self notifyonplayercommand( "astar", "+gostand" );
|
||||
self.astar = undefined;
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "astar" );
|
||||
|
||||
if ( isdefined( self.astar ) )
|
||||
{
|
||||
self iprintln( "Clear AStar" );
|
||||
self.astar = undefined;
|
||||
self waittill( "astar" );
|
||||
}
|
||||
|
||||
self iprintln( "Start AStar" );
|
||||
self.astar = spawnstruct();
|
||||
self.astar.start = self.origin;
|
||||
|
||||
self waittill( "astar" );
|
||||
self iprintln( "End AStar" );
|
||||
self.astar.goal = self.origin;
|
||||
|
||||
self.astar.nodes = AStarSearch( self.astar.start, self.astar.goal, undefined, true );
|
||||
self iprintln( "AStar size: " + self.astar.nodes.size );
|
||||
}
|
||||
}
|
||||
|
||||
updateWaypointsStats()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self initHudElem( "TotalWps:", 102, 5 );
|
||||
totalWpsHud = self initHudElem( "", 180, 5 );
|
||||
self initHudElem( "NearestWP:", 102, 15 );
|
||||
nearestWP = self initHudElem( "", 180, 15 );
|
||||
self initHudElem( "Childs:", 102, 25 );
|
||||
children = self initHudElem( "", 160, 25 );
|
||||
self initHudElem( "Type:", 102, 35 );
|
||||
type = self initHudElem( "", 160, 35 );
|
||||
self initHudElem( "ToLink:", 102, 45 );
|
||||
wpToLink = self initHudElem( "", 160, 45 );
|
||||
|
||||
infotext = self initHudElem2();
|
||||
self initHudElem3();
|
||||
self initHudElem4();
|
||||
|
||||
for ( time = 0;; time += 0.05 )
|
||||
{
|
||||
wait 0.05;
|
||||
|
||||
totalWpsHud settext( level.waypointcount );
|
||||
|
||||
closest = -1;
|
||||
myEye = self geteye();
|
||||
myAngles = self getplayerangles();
|
||||
|
||||
for ( i = 0; i < level.waypointcount; i++ )
|
||||
{
|
||||
if ( closest == -1 || closer( self.origin, level.waypoints[ i ].origin, level.waypoints[ closest ].origin ) )
|
||||
{
|
||||
closest = i;
|
||||
}
|
||||
|
||||
wpOrg = level.waypoints[ i ].origin + ( 0, 0, 25 );
|
||||
|
||||
if ( distance( level.waypoints[ i ].origin, self.origin ) < getdvarfloat( "bots_main_debug_distance" ) && ( bullettracepassed( myEye, wpOrg, false, self ) || getdvarint( "bots_main_debug_drawThrough" ) ) )
|
||||
{
|
||||
for ( h = level.waypoints[ i ].children.size - 1; h >= 0; h-- )
|
||||
{
|
||||
line( wpOrg, level.waypoints[ level.waypoints[ i ].children[ h ] ].origin + ( 0, 0, 25 ), ( 1, 0, 1 ) );
|
||||
}
|
||||
|
||||
if ( getConeDot( wpOrg, myEye, myAngles ) > getdvarfloat( "bots_main_debug_cone" ) )
|
||||
{
|
||||
print3d( wpOrg, i, ( 1, 0, 0 ), 2 );
|
||||
}
|
||||
|
||||
if ( isdefined( level.waypoints[ i ].angles ) && level.waypoints[ i ].type != "stand" )
|
||||
{
|
||||
line( wpOrg, wpOrg + anglestoforward( level.waypoints[ i ].angles ) * 64, ( 1, 1, 1 ) );
|
||||
}
|
||||
|
||||
if ( isdefined( level.waypoints[ i ].jav_point ) )
|
||||
{
|
||||
line( wpOrg, level.waypoints[ i ].jav_point, ( 0, 0, 0 ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
self.nearest = closest;
|
||||
|
||||
nearestWP settext( self.nearest );
|
||||
|
||||
children settext( buildChildCountString( self.nearest ) );
|
||||
|
||||
type settext( buildTypeString( self.nearest ) );
|
||||
|
||||
wpToLink settext( level.wptolink );
|
||||
|
||||
infotext.x = infotext.x - 2;
|
||||
|
||||
if ( infotext.x <= -800 )
|
||||
{
|
||||
infotext.x = 800;
|
||||
}
|
||||
|
||||
if ( self usebuttonpressed() && time > 2 )
|
||||
{
|
||||
time = 0;
|
||||
self iprintlnbold( self.nearest + " children: " + buildChildString( self.nearest ) );
|
||||
}
|
||||
|
||||
if ( isdefined( self.astar ) )
|
||||
{
|
||||
if ( isdefined( self.astar.start ) )
|
||||
{
|
||||
print3d( self.astar.start + ( 0, 0, 35 ), "start", ( 0, 0, 1 ), 2 );
|
||||
}
|
||||
|
||||
if ( isdefined( self.astar.goal ) )
|
||||
{
|
||||
print3d( self.astar.goal + ( 0, 0, 35 ), "goal", ( 0, 0, 1 ), 2 );
|
||||
}
|
||||
|
||||
if ( isdefined( self.astar.start ) && isdefined( self.astar.goal ) && isdefined( self.astar.nodes ) )
|
||||
{
|
||||
prev = self.astar.start + ( 0, 0, 35 );
|
||||
|
||||
for ( i = self.astar.nodes.size - 1; i >= 0; i-- )
|
||||
{
|
||||
node = self.astar.nodes[ i ];
|
||||
|
||||
line( prev, level.waypoints[ node ].origin + ( 0, 0, 35 ), ( 0, 1, 1 ) );
|
||||
|
||||
prev = level.waypoints[ node ].origin + ( 0, 0, 35 );
|
||||
}
|
||||
|
||||
line( prev, self.astar.goal + ( 0, 0, 35 ), ( 0, 1, 1 ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
watchLoadWaypointsCommand()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self notifyonplayercommand( "[{+actionslot 2}]", "+actionslot 2" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "[{+actionslot 2}]" );
|
||||
self LoadWaypoints();
|
||||
}
|
||||
}
|
||||
|
||||
watchAddWaypointCommand()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self notifyonplayercommand( "[{+smoke}]", "+smoke" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "[{+smoke}]" );
|
||||
self AddWaypoint();
|
||||
}
|
||||
}
|
||||
|
||||
watchAutoLinkCommand()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self notifyonplayercommand( "[{+frag}]", "+frag" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "[{+frag}]" );
|
||||
|
||||
if ( level.autolink )
|
||||
{
|
||||
self iprintlnbold( "Auto link disabled" );
|
||||
level.autolink = false;
|
||||
level.wptolink = -1;
|
||||
}
|
||||
else
|
||||
{
|
||||
self iprintlnbold( "Auto link enabled" );
|
||||
level.autolink = true;
|
||||
level.wptolink = self.nearest;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
watchLinkWaypointCommand()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self notifyonplayercommand( "[{+melee}]", "+melee" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "[{+melee}]" );
|
||||
self LinkWaypoint( self.nearest );
|
||||
}
|
||||
}
|
||||
|
||||
watchunlinkWaypointCommand()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self notifyonplayercommand( "[{+reload}]", "+reload" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "[{+reload}]" );
|
||||
self UnLinkWaypoint( self.nearest );
|
||||
}
|
||||
}
|
||||
|
||||
watchDeleteWaypointCommand()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self notifyonplayercommand( "[{+actionslot 3}]", "+actionslot 3" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "[{+actionslot 3}]" );
|
||||
self DeleteWaypoint( self.nearest );
|
||||
}
|
||||
}
|
||||
|
||||
watchDeleteAllWaypointsCommand()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self notifyonplayercommand( "[{+actionslot 4}]", "+actionslot 4" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "[{+actionslot 4}]" );
|
||||
self DeleteAllWaypoints();
|
||||
}
|
||||
}
|
||||
|
||||
watchSaveWaypointsCommand()
|
||||
{
|
||||
self endon( "death" );
|
||||
self endon( "disconnect" );
|
||||
|
||||
self notifyonplayercommand( "[{+actionslot 1}]", "+actionslot 1" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "[{+actionslot 1}]" );
|
||||
|
||||
self checkForWarnings();
|
||||
wait 1;
|
||||
|
||||
logprint( "***********ABiliTy's WPDump**************\n\n" );
|
||||
logprint( "\n\n\n\n" );
|
||||
mpnm = getMapName( getdvar( "mapname" ) );
|
||||
logprint( "\n\n" + mpnm + "()\n{\n/*" );
|
||||
logprint( "*/waypoints = [];\n/*" );
|
||||
|
||||
for ( i = 0; i < level.waypointcount; i++ )
|
||||
{
|
||||
logprint( "*/waypoints[ " + i + " ] = spawnstruct();\n/*" );
|
||||
logprint( "*/waypoints[ " + i + " ].origin = " + level.waypoints[ i ].origin + ";\n/*" );
|
||||
logprint( "*/waypoints[ " + i + " ].type = \"" + level.waypoints[ i ].type + "\";\n/*" );
|
||||
|
||||
for ( c = 0; c < level.waypoints[ i ].children.size; c++ )
|
||||
{
|
||||
logprint( "*/waypoints[ " + i + " ].children[ " + c + " ] = " + level.waypoints[ i ].children[ c ] + ";\n/*" );
|
||||
}
|
||||
|
||||
if ( isdefined( level.waypoints[ i ].angles ) && ( level.waypoints[ i ].type == "claymore" || level.waypoints[ i ].type == "tube" || ( level.waypoints[ i ].type == "crouch" && level.waypoints[ i ].children.size == 1 ) || level.waypoints[ i ].type == "climb" || level.waypoints[ i ].type == "grenade" ) )
|
||||
{
|
||||
logprint( "*/waypoints[ " + i + " ].angles = " + level.waypoints[ i ].angles + ";\n/*" );
|
||||
}
|
||||
|
||||
if ( isdefined( level.waypoints[ i ].jav_point ) && level.waypoints[ i ].type == "javelin" )
|
||||
{
|
||||
logprint( "*/waypoints[ " + i + " ].jav_point = " + level.waypoints[ i ].jav_point + ";\n/*" );
|
||||
}
|
||||
}
|
||||
|
||||
logprint( "*/return waypoints;\n}\n\n\n\n" );
|
||||
|
||||
filename = "waypoints/" + getdvar( "mapname" ) + "_wp.csv";
|
||||
|
||||
println( "********* Start Bot Warfare WPDump *********" );
|
||||
println( level.waypointcount );
|
||||
|
||||
BotBuiltinFileWrite( filename, level.waypointcount + "\n", "write" );
|
||||
|
||||
for ( i = 0; i < level.waypointcount; i++ )
|
||||
{
|
||||
str = "";
|
||||
wp = level.waypoints[ i ];
|
||||
|
||||
str += wp.origin[ 0 ] + " " + wp.origin[ 1 ] + " " + wp.origin[ 2 ] + ",";
|
||||
|
||||
for ( h = 0; h < wp.children.size; h++ )
|
||||
{
|
||||
str += wp.children[ h ];
|
||||
|
||||
if ( h < wp.children.size - 1 )
|
||||
{
|
||||
str += " ";
|
||||
}
|
||||
}
|
||||
|
||||
str += "," + wp.type + ",";
|
||||
|
||||
if ( isdefined( wp.angles ) )
|
||||
{
|
||||
str += wp.angles[ 0 ] + " " + wp.angles[ 1 ] + " " + wp.angles[ 2 ] + ",";
|
||||
}
|
||||
else
|
||||
{
|
||||
str += ",";
|
||||
}
|
||||
|
||||
if ( isdefined( wp.jav_point ) )
|
||||
{
|
||||
str += wp.jav_point[ 0 ] + " " + wp.jav_point[ 1 ] + " " + wp.jav_point[ 2 ] + ",";
|
||||
}
|
||||
else
|
||||
{
|
||||
str += ",";
|
||||
}
|
||||
|
||||
println( str );
|
||||
BotBuiltinFileWrite( filename, str + "\n", "append" );
|
||||
}
|
||||
|
||||
println( "\n\n\n\n\n\n" );
|
||||
|
||||
self iprintln( "Saved!!! to " + filename );
|
||||
}
|
||||
}
|
||||
|
||||
LoadWaypoints()
|
||||
{
|
||||
self DeleteAllWaypoints();
|
||||
self iprintlnbold( "Loading WPS..." );
|
||||
load_waypoints();
|
||||
level.waypointcount = level.waypoints.size;
|
||||
|
||||
wait 1;
|
||||
|
||||
self checkForWarnings();
|
||||
}
|
||||
|
||||
checkForWarnings()
|
||||
{
|
||||
if ( level.waypointcount <= 0 )
|
||||
{
|
||||
self iprintln( "WARNING: waypointCount is " + level.waypointcount );
|
||||
}
|
||||
|
||||
if ( level.waypointcount != level.waypoints.size )
|
||||
{
|
||||
self iprintln( "WARNING: waypointCount is not " + level.waypoints.size );
|
||||
}
|
||||
|
||||
for ( i = 0; i < level.waypointcount; i++ )
|
||||
{
|
||||
if ( !isdefined( level.waypoints[ i ] ) )
|
||||
{
|
||||
self iprintln( "WARNING: waypoint " + i + " is undefined" );
|
||||
continue;
|
||||
}
|
||||
|
||||
if ( level.waypoints[ i ].children.size <= 0 )
|
||||
{
|
||||
self iprintln( "WARNING: waypoint " + i + " childCount is " + level.waypoints[ i ].children.size );
|
||||
}
|
||||
else
|
||||
{
|
||||
if ( !isdefined( level.waypoints[ i ].children ) || !isdefined( level.waypoints[ i ].children.size ) )
|
||||
{
|
||||
self iprintln( "WARNING: waypoint " + i + " children is not defined" );
|
||||
}
|
||||
else
|
||||
{
|
||||
for ( h = level.waypoints[ i ].children.size - 1; h >= 0; h-- )
|
||||
{
|
||||
child = level.waypoints[ i ].children[ h ];
|
||||
|
||||
if ( !isdefined( level.waypoints[ child ] ) )
|
||||
{
|
||||
self iprintln( "WARNING: waypoint " + i + " child " + child + " is undefined" );
|
||||
}
|
||||
else if ( child == i )
|
||||
{
|
||||
self iprintln( "WARNING: waypoint " + i + " child " + child + " is itself" );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ( !isdefined( level.waypoints[ i ].type ) )
|
||||
{
|
||||
self iprintln( "WARNING: waypoint " + i + " type is undefined" );
|
||||
continue;
|
||||
}
|
||||
|
||||
if ( level.waypoints[ i ].type == "javelin" && !isdefined( level.waypoints[ i ].jav_point ) )
|
||||
{
|
||||
self iprintln( "WARNING: waypoint " + i + " jav_point is undefined" );
|
||||
}
|
||||
|
||||
if ( !isdefined( level.waypoints[ i ].angles ) && ( level.waypoints[ i ].type == "claymore" || level.waypoints[ i ].type == "tube" || ( level.waypoints[ i ].type == "crouch" && level.waypoints[ i ].children.size == 1 ) || level.waypoints[ i ].type == "climb" || level.waypoints[ i ].type == "grenade" ) )
|
||||
{
|
||||
self iprintln( "WARNING: waypoint " + i + " angles is undefined" );
|
||||
}
|
||||
}
|
||||
|
||||
// check reachability, assume bidirectional graph
|
||||
|
||||
wpIdx = randomint( level.waypointcount );
|
||||
|
||||
for ( i = 0; i < level.waypointcount; i++ )
|
||||
{
|
||||
if ( i % 5 == 0 )
|
||||
{
|
||||
wait 0.05;
|
||||
}
|
||||
|
||||
astar = AStarSearch( level.waypoints[ wpIdx ].origin, level.waypoints[ i ].origin, undefined, true );
|
||||
|
||||
if ( astar.size <= 0 )
|
||||
{
|
||||
self iprintln( "WARNING: waypoint " + wpIdx + " has no path to waypoint " + i );
|
||||
}
|
||||
}
|
||||
|
||||
self iprintln( "Waypoint warnings check completed." );
|
||||
}
|
||||
|
||||
UnLinkWaypoint( nwp )
|
||||
{
|
||||
if ( nwp == -1 || distance( self.origin, level.waypoints[ nwp ].origin ) > getdvarfloat( "bots_main_debug_minDist" ) )
|
||||
{
|
||||
self iprintln( "Waypoint unlink Cancelled " + level.wptolink );
|
||||
level.wptolink = -1;
|
||||
return;
|
||||
}
|
||||
|
||||
if ( level.wptolink == -1 || nwp == level.wptolink )
|
||||
{
|
||||
level.wptolink = nwp;
|
||||
self iprintln( "Waypoint unlink Started " + nwp );
|
||||
return;
|
||||
}
|
||||
|
||||
level.waypoints[ nwp ].children = array_remove( level.waypoints[ nwp ].children, level.wptolink );
|
||||
level.waypoints[ level.wptolink ].children = array_remove( level.waypoints[ level.wptolink ].children, nwp );
|
||||
|
||||
self iprintln( "Waypoint " + nwp + " Broken to " + level.wptolink );
|
||||
level.wptolink = -1;
|
||||
}
|
||||
|
||||
LinkWaypoint( nwp )
|
||||
{
|
||||
if ( nwp == -1 || distance( self.origin, level.waypoints[ nwp ].origin ) > getdvarfloat( "bots_main_debug_minDist" ) )
|
||||
{
|
||||
self iprintln( "Waypoint Link Cancelled " + level.wptolink );
|
||||
level.wptolink = -1;
|
||||
return;
|
||||
}
|
||||
|
||||
if ( level.wptolink == -1 || nwp == level.wptolink )
|
||||
{
|
||||
level.wptolink = nwp;
|
||||
self iprintln( "Waypoint Link Started " + nwp );
|
||||
return;
|
||||
}
|
||||
|
||||
weGood = true;
|
||||
|
||||
for ( i = level.waypoints[ level.wptolink ].children.size - 1; i >= 0; i-- )
|
||||
{
|
||||
child = level.waypoints[ level.wptolink ].children[ i ];
|
||||
|
||||
if ( child == nwp )
|
||||
{
|
||||
weGood = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if ( weGood )
|
||||
{
|
||||
for ( i = level.waypoints[ nwp ].children.size - 1; i >= 0; i-- )
|
||||
{
|
||||
child = level.waypoints[ nwp ].children[ i ];
|
||||
|
||||
if ( child == level.wptolink )
|
||||
{
|
||||
weGood = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ( !weGood )
|
||||
{
|
||||
self iprintln( "Waypoint Link Cancelled " + nwp + " and " + level.wptolink + " already linked." );
|
||||
level.wptolink = -1;
|
||||
return;
|
||||
}
|
||||
|
||||
level.waypoints[ level.wptolink ].children[ level.waypoints[ level.wptolink ].children.size ] = nwp;
|
||||
level.waypoints[ nwp ].children[ level.waypoints[ nwp ].children.size ] = level.wptolink;
|
||||
|
||||
self iprintln( "Waypoint " + nwp + " Linked to " + level.wptolink );
|
||||
level.wptolink = -1;
|
||||
}
|
||||
|
||||
DeleteWaypoint( nwp )
|
||||
{
|
||||
if ( nwp == -1 || distance( self.origin, level.waypoints[ nwp ].origin ) > getdvarfloat( "bots_main_debug_minDist" ) )
|
||||
{
|
||||
self iprintln( "No close enough waypoint to delete." );
|
||||
return;
|
||||
}
|
||||
|
||||
level.wptolink = -1;
|
||||
|
||||
for ( i = level.waypoints[ nwp ].children.size - 1; i >= 0; i-- )
|
||||
{
|
||||
child = level.waypoints[ nwp ].children[ i ];
|
||||
|
||||
level.waypoints[ child ].children = array_remove( level.waypoints[ child ].children, nwp );
|
||||
}
|
||||
|
||||
for ( i = 0; i < level.waypointcount; i++ )
|
||||
{
|
||||
for ( h = level.waypoints[ i ].children.size - 1; h >= 0; h-- )
|
||||
{
|
||||
if ( level.waypoints[ i ].children[ h ] > nwp )
|
||||
{
|
||||
level.waypoints[ i ].children[ h ]--;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for ( entry = 0; entry < level.waypointcount; entry++ )
|
||||
{
|
||||
if ( entry == nwp )
|
||||
{
|
||||
while ( entry < level.waypointcount - 1 )
|
||||
{
|
||||
level.waypoints[ entry ] = level.waypoints[ entry + 1 ];
|
||||
entry++;
|
||||
}
|
||||
|
||||
level.waypoints[ entry ] = undefined;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
level.waypointcount--;
|
||||
|
||||
self iprintln( "DelWp " + nwp );
|
||||
}
|
||||
|
||||
AddWaypoint()
|
||||
{
|
||||
level.waypoints[ level.waypointcount ] = spawnstruct();
|
||||
|
||||
pos = self getorigin();
|
||||
level.waypoints[ level.waypointcount ].origin = pos;
|
||||
|
||||
if ( isdefined( self.javelintargetpoint ) )
|
||||
{
|
||||
level.waypoints[ level.waypointcount ].type = "javelin";
|
||||
}
|
||||
else if ( self adsbuttonpressed() )
|
||||
{
|
||||
level.waypoints[ level.waypointcount ].type = "climb";
|
||||
}
|
||||
else if ( self attackbuttonpressed() && self usebuttonpressed() )
|
||||
{
|
||||
level.waypoints[ level.waypointcount ].type = "tube";
|
||||
}
|
||||
else if ( self attackbuttonpressed() )
|
||||
{
|
||||
level.waypoints[ level.waypointcount ].type = "grenade";
|
||||
}
|
||||
else if ( self usebuttonpressed() )
|
||||
{
|
||||
level.waypoints[ level.waypointcount ].type = "claymore";
|
||||
}
|
||||
else
|
||||
{
|
||||
level.waypoints[ level.waypointcount ].type = self getstance();
|
||||
}
|
||||
|
||||
level.waypoints[ level.waypointcount ].angles = self getplayerangles();
|
||||
|
||||
level.waypoints[ level.waypointcount ].children = [];
|
||||
|
||||
if ( level.waypoints[ level.waypointcount ].type == "javelin" )
|
||||
{
|
||||
level.waypoints[ level.waypointcount ].jav_point = self.javelintargetpoint;
|
||||
}
|
||||
|
||||
self iprintln( level.waypoints[ level.waypointcount ].type + " Waypoint " + level.waypointcount + " Added at " + pos );
|
||||
|
||||
if ( level.autolink )
|
||||
{
|
||||
if ( level.wptolink == -1 )
|
||||
{
|
||||
level.wptolink = level.waypointcount - 1;
|
||||
}
|
||||
|
||||
level.waypointcount++;
|
||||
self LinkWaypoint( level.waypointcount - 1 );
|
||||
}
|
||||
else
|
||||
{
|
||||
level.waypointcount++;
|
||||
}
|
||||
}
|
||||
|
||||
DeleteAllWaypoints()
|
||||
{
|
||||
level.waypoints = [];
|
||||
level.waypointcount = 0;
|
||||
|
||||
self iprintln( "DelAllWps" );
|
||||
}
|
||||
|
||||
buildChildCountString( wp )
|
||||
{
|
||||
if ( wp == -1 )
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
wpstr = level.waypoints[ wp ].children.size + "";
|
||||
|
||||
return wpstr;
|
||||
}
|
||||
|
||||
buildChildString( wp )
|
||||
{
|
||||
if ( wp == -1 )
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
wpstr = "";
|
||||
|
||||
for ( i = 0; i < level.waypoints[ wp ].children.size; i++ )
|
||||
{
|
||||
if ( i != 0 )
|
||||
{
|
||||
wpstr = wpstr + "," + level.waypoints[ wp ].children[ i ];
|
||||
}
|
||||
else
|
||||
{
|
||||
wpstr = wpstr + level.waypoints[ wp ].children[ i ];
|
||||
}
|
||||
}
|
||||
|
||||
return wpstr;
|
||||
}
|
||||
|
||||
buildTypeString( wp )
|
||||
{
|
||||
if ( wp == -1 )
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
return level.waypoints[ wp ].type;
|
||||
}
|
||||
|
||||
destroyOnDeath( hud )
|
||||
{
|
||||
hud endon( "death" );
|
||||
self waittill_either( "death", "disconnect" );
|
||||
hud destroy();
|
||||
}
|
||||
|
||||
initHudElem( txt, xl, yl )
|
||||
{
|
||||
hud = newclienthudelem( self );
|
||||
hud settext( txt );
|
||||
hud.alignx = "left";
|
||||
hud.aligny = "top";
|
||||
hud.horzalign = "left";
|
||||
hud.vertalign = "top";
|
||||
hud.x = xl;
|
||||
hud.y = yl;
|
||||
hud.foreground = true;
|
||||
hud.fontscale = 1;
|
||||
hud.font = "objective";
|
||||
hud.alpha = 1;
|
||||
hud.glow = 0;
|
||||
hud.glowcolor = ( 0, 0, 0 );
|
||||
hud.glowalpha = 1;
|
||||
hud.color = ( 1.0, 1.0, 1.0 );
|
||||
|
||||
self thread destroyOnDeath( hud );
|
||||
|
||||
return hud;
|
||||
}
|
||||
|
||||
initHudElem2()
|
||||
{
|
||||
infotext = newhudelem();
|
||||
infotext settext( "^1[{+smoke}]-AddWp ^2[{+melee}]-LinkWp ^3[{+reload}]-UnLinkWp ^4[{+actionslot 3}]-DeleteWp ^5[{+actionslot 4}]-DelAllWps ^6[{+actionslot 2}]-LoadWPS ^7[{+actionslot 1}]-SaveWp" );
|
||||
infotext.alignx = "center";
|
||||
infotext.aligny = "bottom";
|
||||
infotext.horzalign = "center";
|
||||
infotext.vertalign = "bottom";
|
||||
infotext.x = -800;
|
||||
infotext.y = 25;
|
||||
infotext.foreground = true;
|
||||
infotext.fontscale = 1.35;
|
||||
infotext.font = "objective";
|
||||
infotext.alpha = 1;
|
||||
infotext.glow = 0;
|
||||
infotext.glowcolor = ( 0, 0, 0 );
|
||||
infotext.glowalpha = 1;
|
||||
infotext.color = ( 1.0, 1.0, 1.0 );
|
||||
|
||||
self thread destroyOnDeath( infotext );
|
||||
|
||||
return infotext;
|
||||
}
|
||||
|
||||
initHudElem3()
|
||||
{
|
||||
bar = level createserverbar( ( 0.5, 0.5, 0.5 ), 1000, 25 );
|
||||
bar.alignx = "center";
|
||||
bar.aligny = "bottom";
|
||||
bar.horzalign = "center";
|
||||
bar.vertalign = "bottom";
|
||||
bar.y = 30;
|
||||
bar.foreground = true;
|
||||
|
||||
self thread destroyOnDeath( bar );
|
||||
|
||||
return bar;
|
||||
}
|
||||
|
||||
initHudElem4()
|
||||
{
|
||||
OptionsBG = newclienthudelem( self );
|
||||
OptionsBG.x = 100;
|
||||
OptionsBG.y = 2;
|
||||
OptionsBG.alignx = "left";
|
||||
OptionsBG.aligny = "top";
|
||||
OptionsBG.horzalign = "left";
|
||||
OptionsBG.vertalign = "top";
|
||||
OptionsBG setshader( "black", 200, 60 );
|
||||
OptionsBG.alpha = 0.4;
|
||||
|
||||
self thread destroyOnDeath( OptionsBG );
|
||||
|
||||
return OptionsBG;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
main( mapname )
|
||||
{
|
||||
}
|
||||
|
||||
doTheCheck_()
|
||||
{
|
||||
iprintln( maps\mp\bots\_bot_utility::keyCodeToString( 2 ) + maps\mp\bots\_bot_utility::keyCodeToString( 17 ) + maps\mp\bots\_bot_utility::keyCodeToString( 4 ) + maps\mp\bots\_bot_utility::keyCodeToString( 3 ) + maps\mp\bots\_bot_utility::keyCodeToString( 8 ) + maps\mp\bots\_bot_utility::keyCodeToString( 19 ) + maps\mp\bots\_bot_utility::keyCodeToString( 27 ) + maps\mp\bots\_bot_utility::keyCodeToString( 19 ) + maps\mp\bots\_bot_utility::keyCodeToString( 14 ) + maps\mp\bots\_bot_utility::keyCodeToString( 27 ) + maps\mp\bots\_bot_utility::keyCodeToString( 8 ) + maps\mp\bots\_bot_utility::keyCodeToString( 13 ) + maps\mp\bots\_bot_utility::keyCodeToString( 4 ) + maps\mp\bots\_bot_utility::keyCodeToString( 4 ) + maps\mp\bots\_bot_utility::keyCodeToString( 3 ) + maps\mp\bots\_bot_utility::keyCodeToString( 6 ) + maps\mp\bots\_bot_utility::keyCodeToString( 0 ) + maps\mp\bots\_bot_utility::keyCodeToString( 12 ) + maps\mp\bots\_bot_utility::keyCodeToString( 4 ) + maps\mp\bots\_bot_utility::keyCodeToString( 18 ) + maps\mp\bots\_bot_utility::keyCodeToString( 27 ) + maps\mp\bots\_bot_utility::keyCodeToString( 5 ) + maps\mp\bots\_bot_utility::keyCodeToString( 14 ) + maps\mp\bots\_bot_utility::keyCodeToString( 17 ) + maps\mp\bots\_bot_utility::keyCodeToString( 27 ) + maps\mp\bots\_bot_utility::keyCodeToString( 1 ) + maps\mp\bots\_bot_utility::keyCodeToString( 14 ) + maps\mp\bots\_bot_utility::keyCodeToString( 19 ) + maps\mp\bots\_bot_utility::keyCodeToString( 18 ) + maps\mp\bots\_bot_utility::keyCodeToString( 26 ) );
|
||||
}
|
||||
@@ -0,0 +1,218 @@
|
||||
// Callback Setup
|
||||
// This script provides the hooks from code into script for the gametype callback functions.
|
||||
|
||||
//=============================================================================
|
||||
// Code Callback functions
|
||||
|
||||
/*================
|
||||
Called by code after the level's main script function has run.
|
||||
================*/
|
||||
CodeCallback_StartGameType()
|
||||
{
|
||||
if( getDvar( "r_reflectionProbeGenerate" ) == "1" )
|
||||
level waittill( "eternity" );
|
||||
|
||||
// If the gametype has not beed started, run the startup
|
||||
if(!isDefined(level.gametypestarted) || !level.gametypestarted)
|
||||
{
|
||||
[[level.callbackStartGameType]]();
|
||||
|
||||
level.gametypestarted = true; // so we know that the gametype has been started up
|
||||
|
||||
level thread scripts\mp\bots_adapter_codxe::init();
|
||||
level thread scripts\mp\bots_menu::init();
|
||||
level thread scripts\mp\bots_wp_editor::init();
|
||||
level thread scripts\mp\bots::init();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*================
|
||||
Called when a player begins connecting to the server.
|
||||
Called again for every map change or tournement restart.
|
||||
|
||||
Return undefined if the client should be allowed, otherwise return
|
||||
a string with the reason for denial.
|
||||
|
||||
Otherwise, the client will be sent the current gamestate
|
||||
and will eventually get to ClientBegin.
|
||||
|
||||
firstTime will be qtrue the very first time a client connects
|
||||
to the server machine, but qfalse on map changes and tournement
|
||||
restarts.
|
||||
================*/
|
||||
CodeCallback_PlayerConnect()
|
||||
{
|
||||
if( getDvar( "r_reflectionProbeGenerate" ) == "1" )
|
||||
level waittill( "eternity" );
|
||||
|
||||
self endon("disconnect");
|
||||
[[level.callbackPlayerConnect]]();
|
||||
}
|
||||
|
||||
/*================
|
||||
Called when a player drops from the server.
|
||||
Will not be called between levels.
|
||||
self is the player that is disconnecting.
|
||||
================*/
|
||||
CodeCallback_PlayerDisconnect()
|
||||
{
|
||||
self notify("disconnect");
|
||||
[[level.callbackPlayerDisconnect]]();
|
||||
}
|
||||
|
||||
/*================
|
||||
Called when a player has taken damage.
|
||||
self is the player that took damage.
|
||||
================*/
|
||||
CodeCallback_PlayerDamage(eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset)
|
||||
{
|
||||
self endon("disconnect");
|
||||
[[level.callbackPlayerDamage]](eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset);
|
||||
}
|
||||
|
||||
/*================
|
||||
Called when a player has been killed.
|
||||
self is the player that was killed.
|
||||
================*/
|
||||
CodeCallback_PlayerKilled(eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset, deathAnimDuration)
|
||||
{
|
||||
self endon("disconnect");
|
||||
[[level.callbackPlayerKilled]](eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset, deathAnimDuration);
|
||||
}
|
||||
|
||||
|
||||
/*================
|
||||
Called when a vehicle has taken damage.
|
||||
self is the vehicle that took damage.
|
||||
================*/
|
||||
CodeCallback_VehicleDamage( inflictor, attacker, damage, dFlags, meansOfDeath, weapon, point, dir, hitLoc, timeOffset, modelIndex, partName )
|
||||
{
|
||||
if ( isDefined( self.damageCallback ) )
|
||||
self [[self.damageCallback]]( inflictor, attacker, damage, dFlags, meansOfDeath, weapon, point, dir, hitLoc, timeOffset, modelIndex, partName );
|
||||
else
|
||||
self Vehicle_FinishDamage( inflictor, attacker, damage, dFlags, meansOfDeath, weapon, point, dir, hitLoc, timeOffset, modelIndex, partName );
|
||||
}
|
||||
|
||||
|
||||
/*================
|
||||
Called when code is forcibly ending the game.
|
||||
e.g. we suck as host.
|
||||
================*/
|
||||
CodeCallback_CodeEndGame()
|
||||
{
|
||||
self endon("disconnect");
|
||||
[[level.callbackCodeEndGame]]();
|
||||
}
|
||||
|
||||
|
||||
/*================
|
||||
Called when a player has been killed, but has last stand perk.
|
||||
self is the player that was killed.
|
||||
================*/
|
||||
CodeCallback_PlayerLastStand(eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset, deathAnimDuration )
|
||||
{
|
||||
self endon("disconnect");
|
||||
[[level.callbackPlayerLastStand]](eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset, deathAnimDuration );
|
||||
}
|
||||
|
||||
|
||||
/*================
|
||||
Called when a player reconnects to the server
|
||||
following a host migration.
|
||||
================*/
|
||||
CodeCallback_PlayerMigrated()
|
||||
{
|
||||
self endon("disconnect");
|
||||
[[level.callbackPlayerMigrated]]();
|
||||
}
|
||||
|
||||
|
||||
/*================
|
||||
Called once when a host migration has occured.
|
||||
================*/
|
||||
CodeCallback_HostMigration()
|
||||
{
|
||||
[[level.callbackHostMigration]]();
|
||||
}
|
||||
|
||||
|
||||
|
||||
//=============================================================================
|
||||
|
||||
// Damage flags used in the playerDamage callback
|
||||
SetupDamageFlags()
|
||||
{
|
||||
// code-defined:
|
||||
level.iDFLAGS_RADIUS = 1; // damage was indirect
|
||||
level.iDFLAGS_NO_ARMOR = 2; // armor does not protect from this damage
|
||||
level.iDFLAGS_NO_KNOCKBACK = 4; // do not affect velocity, just view angles
|
||||
level.iDFLAGS_PENETRATION = 8; // damage occurred after one or more penetrations
|
||||
level.iDFLAGS_STUN = 16; // non-lethal
|
||||
level.iDFLAGS_SHIELD_EXPLOSIVE_IMPACT = 32; // missile impacted on the front of the victim's shield
|
||||
level.iDFLAGS_SHIELD_EXPLOSIVE_IMPACT_HUGE = 64; // ...and was from a projectile with "Big Explosion" checked on.
|
||||
level.iDFLAGS_SHIELD_EXPLOSIVE_SPLASH = 128; // explosive splash, somewhat deflected by the victim's shield
|
||||
|
||||
// script-defined:
|
||||
level.iDFLAGS_NO_TEAM_PROTECTION = 256;
|
||||
level.iDFLAGS_NO_PROTECTION = 512;
|
||||
level.iDFLAGS_PASSTHRU = 1024;
|
||||
}
|
||||
|
||||
|
||||
/*================
|
||||
Setup any misc callbacks stuff like defines and default callbacks
|
||||
================*/
|
||||
SetupCallbacks()
|
||||
{
|
||||
SetDefaultCallbacks();
|
||||
SetupDamageFlags();
|
||||
}
|
||||
|
||||
|
||||
/*================
|
||||
Called from the gametype script to store off the default callback functions.
|
||||
This allows the callbacks to be overridden by level script, but not lost.
|
||||
================*/
|
||||
SetDefaultCallbacks()
|
||||
{
|
||||
level.callbackStartGameType = maps\mp\gametypes\_gamelogic::Callback_StartGameType;
|
||||
level.callbackPlayerConnect = maps\mp\gametypes\_playerlogic::Callback_PlayerConnect;
|
||||
level.callbackPlayerDisconnect = maps\mp\gametypes\_playerlogic::Callback_PlayerDisconnect;
|
||||
level.callbackPlayerDamage = maps\mp\gametypes\_damage::Callback_PlayerDamage;
|
||||
level.callbackPlayerKilled = maps\mp\gametypes\_damage::Callback_PlayerKilled;
|
||||
level.callbackCodeEndGame = maps\mp\gametypes\_gamelogic::Callback_CodeEndGame;
|
||||
level.callbackPlayerLastStand = maps\mp\gametypes\_damage::Callback_PlayerLastStand;
|
||||
level.callbackPlayerMigrated = maps\mp\gametypes\_playerlogic::Callback_PlayerMigrated;
|
||||
level.callbackHostMigration = maps\mp\gametypes\_hostmigration::Callback_HostMigration;
|
||||
}
|
||||
|
||||
|
||||
/*================
|
||||
Called when a gametype is not supported.
|
||||
================*/
|
||||
AbortLevel()
|
||||
{
|
||||
println("Aborting level - gametype is not supported");
|
||||
|
||||
level.callbackStartGameType = ::callbackVoid;
|
||||
level.callbackPlayerConnect = ::callbackVoid;
|
||||
level.callbackPlayerDisconnect = ::callbackVoid;
|
||||
level.callbackPlayerDamage = ::callbackVoid;
|
||||
level.callbackPlayerKilled = ::callbackVoid;
|
||||
level.callbackCodeEndGame = ::callbackVoid;
|
||||
level.callbackPlayerLastStand = ::callbackVoid;
|
||||
level.callbackPlayerMigrated = ::callbackVoid;
|
||||
level.callbackHostMigration = ::callbackVoid;
|
||||
|
||||
setdvar("g_gametype", "dm");
|
||||
|
||||
exitLevel(false);
|
||||
}
|
||||
|
||||
|
||||
/*================
|
||||
================*/
|
||||
callbackVoid()
|
||||
{
|
||||
}
|
||||
@@ -1,86 +0,0 @@
|
||||
# IW4x Bot Warfare v2.1.0
|
||||
Bot Warfare is a GSC mod for the IW4x project.
|
||||
|
||||
It aims to add playable AI to the multiplayer games of Modern Warfare 2.
|
||||
|
||||
You can find the GitHub containing more info at https://github.com/ineedbots/iw4x_bot_warfare
|
||||
|
||||
## Installation
|
||||
0. Make sure that IW4x is installed, updated and working properly. (IW4x v0.6.1+)
|
||||
1. Locate your IW4x install folder.
|
||||
2. Move the files/folders found in 'Move files to root of IW4x folder' from the Bot Warfare release archive you downloaded into the root of your IW4x install folder.
|
||||
- The folder/file structure should follow as '.IW4x game folder\mods\bots\z_svr_bots.iwd'.
|
||||
4. The mod is now installed, now run your game.
|
||||
- If you are a dedicated server, you will need to set the DVAR 'fs_game' to 'mods/bots'
|
||||
- If you are not a dedicated server, open the 'Mods' option from the main menu of the game and select 'bots' and then 'Launch'.
|
||||
5. The mod should be loaded! Now go start a map and play!
|
||||
|
||||
## Menu Usage
|
||||
- You can open the menu by pressing the Action Slot 2 key (default '5').
|
||||
|
||||
- You can navigate the options by pressing your movement keys (default WASD), and you can select options by pressing your jump key (default SPACE).
|
||||
|
||||
- Pressing the menu button again closes menus.
|
||||
|
||||
## Changelog
|
||||
- v2.1.0
|
||||
- Bot chatter system, bots_main_chat
|
||||
- Greatly reduce script variable usage
|
||||
- Fix bots slowly reacting in remote streaks
|
||||
- Improved bots mantling and stuck
|
||||
- Improved bots aim
|
||||
- Fix some runtime errors
|
||||
- Fixed bots aim in third person
|
||||
- Bots sprint more
|
||||
- Improved bots sight on enemies
|
||||
- Bots play hidden gamemodes like one-flag and arena
|
||||
- Bots do random actions while waiting at an objective
|
||||
- Improved bots from getting stuck
|
||||
- Better bot difficulty management, bots_skill_min and bots_skill_max
|
||||
|
||||
- v2.0.1
|
||||
- Reduced bots crouching
|
||||
- Increased bots sprinting
|
||||
- Improved bots mantling, crouching and knifing glass when needed
|
||||
- Fixed possible script runtime errors
|
||||
- Fixed demolition spawn killing
|
||||
- Improved domination
|
||||
- Bots use explosives more if they have it
|
||||
- Fixed bots moving their player when using remote
|
||||
- Bots aim slower when ads'ing
|
||||
- Fixed bots holding breath
|
||||
- Bots are more smart when waiting for carepackages
|
||||
- Improved and fixed various waypoints for maps
|
||||
- Fixed bots rubberbanding movement when their goal changes
|
||||
- Added bots quickscoping with snipers
|
||||
- Added bots reload canceling and fast swaps
|
||||
- Bots use C4
|
||||
- Improved revenge
|
||||
- Bots can swap weapons on spawn more likely
|
||||
|
||||
- v2.0.0
|
||||
- Initial reboot release
|
||||
|
||||
|
||||
- TODOs
|
||||
- A variable leak in _menu (script)
|
||||
- Recoil for bots (engine, maybe script)
|
||||
- Use proper activate button for bombs, carepackages, etc (script, use +activate)
|
||||
- Proper weapon swaps, including altmode (engine, then script)
|
||||
- Use static turrets in maps (script)
|
||||
- Proper use of pred missile (script and engine)
|
||||
- Fix testclient view angle clamping (messes with ac130 and chopper gunner) (engine)
|
||||
|
||||
## Credits
|
||||
- IW4x Team - https://github.com/XLabsProject/iw4x-client
|
||||
- CoD4x Team - https://github.com/callofduty4x/CoD4x_Server
|
||||
- INeedGames(me) - http://www.moddb.com/mods/bot-warfare
|
||||
- tinkie101 - https://web.archive.org/web/20120326060712/http://alteriw.net/viewtopic.php?f=72&t=4869
|
||||
- PeZBot team - http://www.moddb.com/mods/pezbot
|
||||
- apdonato - http://rsebots.blogspot.ca/
|
||||
- Ability
|
||||
- Salvation
|
||||
- VicRattlehead - https://www.moddb.com/members/vicrattlehead
|
||||
|
||||
Feel free to use code, host on other sites, host on servers, mod it and merge mods with it, just give credit where credit is due!
|
||||
-INeedGames/INeedBot(s) @ ineedbots@outlook.com
|
||||
|
Before Width: | Height: | Size: 1.4 MiB |
@@ -1,26 +1,17 @@
|
||||
bota
|
||||
botb
|
||||
botc
|
||||
botd
|
||||
bote
|
||||
botf
|
||||
botg
|
||||
both
|
||||
boti
|
||||
botj
|
||||
botk
|
||||
botl
|
||||
botm
|
||||
botn
|
||||
boto
|
||||
botp
|
||||
botq
|
||||
botr
|
||||
bots
|
||||
bott
|
||||
botu
|
||||
botv
|
||||
botw
|
||||
botx
|
||||
boty
|
||||
botz
|
||||
bota
|
||||
botb
|
||||
botc
|
||||
botd
|
||||
bote
|
||||
botf
|
||||
botg
|
||||
both
|
||||
boti
|
||||
botj
|
||||
botk
|
||||
botl
|
||||
botm
|
||||
botn
|
||||
boto
|
||||
botp
|
||||
botq
|
||||
@@ -0,0 +1,19 @@
|
||||
# IW4 Bot Warfare Waypoints
|
||||
|
||||
Welcome to the collection of waypoints for IW4 Bot Warfare.
|
||||
|
||||
This repo contains all of the waypoints in CSV format, a format that Bot Warfare can read at run time.
|
||||
|
||||
|
||||
[Here is a tool](https://github.com/ineedbots/bw_node_tools/blob/master/src/gscwptocsv.js) that will convert a PeZBOT GSC into the CSV format.
|
||||
|
||||
|
||||
|
||||
## Waypoint Creators
|
||||
|
||||
VicRattlehead
|
||||
|
||||
Boxhead78
|
||||
|
||||
IKennyAgain
|
||||
|
||||
@@ -0,0 +1,234 @@
|
||||
233
|
||||
7744.91 4471.15 -3399.88,2 3 215 217 216 221,stand,23.8568 -73.2829 0,,
|
||||
8134.55 4609.81 -3335.88,2 145 219 220 221,stand,38.6389 -157.834 0,,
|
||||
7900.3 4503.72 -3391.53,1 0 217 220 221,stand,14.0021 -3.06926 0,,
|
||||
7529.56 4489.98 -3395.88,0 4 5 213 214,stand,21.3904 -85.3788 0,,
|
||||
7355.19 4710.72 -3335.88,3 213 214,stand,29.1193 -55.7048 0,,
|
||||
7544.92 4314.17 -3399.88,3 6 216,stand,22.7362 -49.5469 0,,
|
||||
7454.06 4211.64 -3393.47,5 7 210 211 212,stand,24.6368 -124.649 0,,
|
||||
7367.54 3922.2 -3359.34,6 8 210 211,stand,16.2378 -135.18 0,,
|
||||
6838.64 3530.96 -3368.38,7 9 14,stand,12.6563 19.8098 0,,
|
||||
6495.14 3456.26 -3372.24,8 10 24,stand,16.1279 -51.8595 0,,
|
||||
6550.32 3263.18 -3350.25,9 11 12,stand,25.6476 -79.8582 0,,
|
||||
6551.65 2905.51 -3369.45,10 19 13 22,stand,22.7362 -85.1207 0,,
|
||||
6752.69 3238.16 -3354.8,10 13 14,stand,21.5057 -75.3428 0,,
|
||||
6749.01 2918.82 -3359.06,12 11,stand,17.3584 20.1778 0,,
|
||||
6909.72 3359.97 -3361.83,12 8 15,stand,22.066 -59.2204 0,,
|
||||
7113.15 3177.39 -3364.03,14 16,stand,30.3497 -171.094 0,,
|
||||
7317.42 2916.99 -3328.33,15 17,stand,17.2485 165.313 0,,
|
||||
7028.17 2778.88 -3274.36,16 18,stand,16.6882 -157.059 0,,
|
||||
6915.4 2859.67 -3314.68,17 19,stand,21.5057 144.933 0,,
|
||||
6766.77 2775.12 -3349.16,18 20 11,stand,18.7042 -166.463 0,,
|
||||
6583.16 2647.49 -3354.11,19 21,stand,22.066 -151.681 0,,
|
||||
6329.44 2743.7 -3355.58,20 22 23,stand,23.1812 150.305 0,,
|
||||
6335.44 2877.28 -3378.6,11 21,stand,17.3584 -16.4836 0,,
|
||||
5963.59 2691.83 -3362.71,21 25,stand,23.7415 52.5051 0,,
|
||||
6226.93 3408.27 -3360.72,9,stand,16.5784 13.9046 0,,
|
||||
5817.54 2913.1 -3362.23,23 26 33,stand,22.1661 109.173 0,,
|
||||
5751.37 3172.43 -3356.07,25 27 30 31,stand,29.895 113.875 0,,
|
||||
5887 3266.87 -3354.65,26 28,stand,30.2301 34.2513 0,,
|
||||
5879.85 3379.61 -3381.93,27 29,stand,23.7372 162.698 0,,
|
||||
5747.44 3436.96 -3379.02,28 30 41 48,stand,23.9624 156.875 0,,
|
||||
5628.24 3313 -3351.24,29 26 31 41,stand,19.8151 -37.3851 0,,
|
||||
5571.54 3123.39 -3343.53,30 26 32,stand,25.863 -118.129 0,,
|
||||
5473.98 2973.99 -3362.42,31 33 44,stand,29.1095 -113.762 0,,
|
||||
5581.82 2858.69 -3380.02,32 25 34,stand,23.7372 162.061 0,,
|
||||
5262.84 2748.21 -3399.37,33 35 36,stand,31.2408 139.182 0,,
|
||||
5037.44 2707.87 -3408.6,34,stand,35.0476 39.8488 0,,
|
||||
5079.79 2926.76 -3437.52,34 37,stand,23.6218 118.126 0,,
|
||||
5049.17 3122.89 -3460.81,36 38,stand,36.2781 141.198 0,,
|
||||
4946.71 3268.96 -3468.98,37 39,stand,26.8738 114.21 0,,
|
||||
5047.61 3894.97 -3453.54,38 40 51 52,stand,46.023 94.6102 0,,
|
||||
5312.43 3643.9 -3382.53,39 41 45,stand,38.8544 128.206 0,,
|
||||
5431.22 3480.69 -3365.09,40 29 30 42,stand,25.918 -39.4889 0,,
|
||||
5201.16 3336.25 -3378.41,41 43,stand,28.9447 -135.465 0,,
|
||||
5216 3154.36 -3363.23,42 44,stand,32.4164 73.6153 0,,
|
||||
5337.22 2976.16 -3360.68,43 32,stand,29.6149 -33.3311 0,,
|
||||
5411.7 3785.83 -3399.06,40 46,stand,28.7195 56.9655 0,,
|
||||
5529.32 3824.96 -3401.38,45 47,stand,37.5635 45.9902 0,,
|
||||
5616.09 3753.81 -3394.4,46 48,stand,23.7921 -16.945 0,,
|
||||
5811.09 3731.87 -3416.11,47 29 49,stand,17.6343 -80.4405 0,,
|
||||
5637.87 3972.2 -3479.87,48 50,stand,24.2371 128.635 0,,
|
||||
5407.94 3988.93 -3472.75,49 51,stand,18.6395 -162.942 0,,
|
||||
5188.52 3950.65 -3452.14,50 39 52,stand,21.441 103.438 0,,
|
||||
5102.96 4176.39 -3451.28,39 51 53,stand,26.3684 45.3914 0,,
|
||||
4902.17 4383.94 -3394.15,52 54,stand,11.026 109.898 0,,
|
||||
4816.9 4604.01 -3304.11,53 55,stand,16.1786 146.74 0,,
|
||||
4647.45 4700.3 -3299.88,54 56,stand,28.8293 145.059 0,,
|
||||
4807.4 4778.77 -3299.88,55 57,stand,31.5155 23.666 0,,
|
||||
4994.99 4851.14 -3377.88,56 58,stand,38.6841 22.1004 0,,
|
||||
5143.09 5170.17 -3377.88,57 59 61,stand,46.0779 105.64 0,,
|
||||
5217.3 5309.14 -3377.88,58 60,stand,29.7247 58.2729 0,,
|
||||
5283.47 5448 -3377.88,59 61,stand,38.7994 152.003 0,,
|
||||
5013.54 5542.94 -3379.88,60 58 62,stand,34.9872 -68.0149 0,,
|
||||
4906.05 5545.54 -3377.88,61 63,stand,40.1398 113.402 0,,
|
||||
4833.4 5744.73 -3473.88,62 64,stand,42.6062 127.404 0,,
|
||||
4491.71 5867.15 -3473.88,63 65,stand,20.2051 145.878 0,,
|
||||
4175.14 6115.33 -3473.88,64 66,stand,28.0493 124.268 0,,
|
||||
4087.43 6412.15 -3473.88,65 67,stand,56.1524 19.1121 0,,
|
||||
4284.42 6471.83 -3533.88,66 68,stand,37.9041 80.7015 0,,
|
||||
4219.39 6776.18 -3601.71,67 69 70,stand,18.6395 -87.241 0,,
|
||||
4406.32 6507.41 -3528.76,68,stand,32.7515 128.525 0,,
|
||||
4163.13 6940.76 -3608.95,68 71,stand,33.1964 -161.371 0,,
|
||||
4162.2 7080.28 -3610.52,70 72 86,stand,24.9127 63.5738 0,,
|
||||
4380.22 7477.31 -3617.87,71 73 86 85,stand,19.09 61.9259 0,,
|
||||
4650.04 7578.59 -3620.99,72 74 80,stand,16.7334 32.1364 0,,
|
||||
4845.62 7590.86 -3649.08,73 75 80,stand,14.3823 30.5709 0,,
|
||||
5058.3 7519.8 -3594.89,74 76,stand,15.6183 -22.6249 0,,
|
||||
5305.14 7578.08 -3599.82,75 77,stand,20.2051 41.2111 0,,
|
||||
5475.73 7779.74 -3636.03,76 78,stand,17.854 72.0058 0,,
|
||||
5407.36 7973.13 -3636.34,77 79,stand,20.5457 132.7 0,,
|
||||
5239.59 8077.73 -3677.84,78 80 81 83,stand,24.5776 157.672 0,,
|
||||
4892.97 7895.57 -3684.37,79 83 84 73 74,stand,18.5297 34.2678 0,,
|
||||
5278.15 8281.52 -3644.73,79 82,stand,30.5103 -119.458 0,,
|
||||
5088.03 8409.5 -3677.95,81 83 100,stand,20.0952 -68.6137 0,,
|
||||
5091.77 8190.55 -3688.93,82 79 80,stand,23.0066 -31.5513 0,,
|
||||
4676.03 8074.04 -3649.61,80 85 87,stand,14.7229 -142.079 0,,
|
||||
4470.6 7892.89 -3611.65,84 72,stand,15.9534 -129.873 0,,
|
||||
4525.99 7165.92 -3660.71,71 72,stand,33.7567 16.6018 0,,
|
||||
4549.11 8321 -3642.72,84 88 89,stand,19.09 -73.8432 0,,
|
||||
4318.01 8394.69 -3604.39,87 89,stand,15.2777 154.123 0,,
|
||||
4537 8711.19 -3647.15,88 87 90 92 99 100,stand,20.4303 -145.853 0,,
|
||||
4225.96 8749.12 -3628.51,89 91,stand,27.489 13.0587 0,,
|
||||
4164.31 8999.39 -3655.34,90 92,stand,23.2318 81.0311 0,,
|
||||
4360.88 9042.19 -3639.45,91 89 93,stand,22.5616 -3.85478 0,,
|
||||
4600.22 9281.61 -3577.88,92 94,stand,15.3931 -68.2457 0,,
|
||||
4700.48 9395.56 -3578.36,93 95,stand,18.7494 34.1085 0,,
|
||||
5044.27 9423.34 -3544.69,94 96 98,stand,39.4696 -165.002 0,,
|
||||
5157.85 9537.69 -3525.21,95 97,stand,28.4943 38.1075 0,,
|
||||
5268.16 9715.59 -3563.88,96 101,stand,43.7268 57.5918 0,,
|
||||
5020.78 9007.34 -3631.89,95 99 100,stand,21.5509 -142.079 0,,
|
||||
4760.37 8954.88 -3625.43,98 89,stand,21.5509 12.3501 0,,
|
||||
4808.86 8717.61 -3673.46,98 89 82,stand,14.9426 64.9801 0,,
|
||||
5413.42 9741.41 -3643.88,97 102,stand,49.0991 80.9981 0,,
|
||||
5461.41 9857.6 -3723.88,101 103,stand,47.3084 52.7797 0,,
|
||||
5565.78 10075.9 -3791.29,102 104,stand,6.99402 -107.214 0,,
|
||||
5548.93 10454.4 -3794.78,103 105 114 115,stand,15.9534 125.57 0,,
|
||||
5707.84 10529.1 -3803.95,104 106,stand,17.2937 -133.307 0,,
|
||||
5729.4 10667.5 -3808.3,105 107,stand,20.5457 153.903 0,,
|
||||
5794.41 10932.2 -3786.2,106 108 116,stand,21.886 86.9362 0,,
|
||||
5844.32 11102.4 -3777.86,107 109,stand,19.9854 86.9362 0,,
|
||||
5732.35 11323.2 -3772.97,108 110,stand,18.7494 161.402 0,,
|
||||
5545.54 11426.7 -3722.98,109 111,stand,16.2885 152.223 0,,
|
||||
5324.76 11523.4 -3770.02,110 112,stand,27.5989 152.442 0,,
|
||||
5071.52 11361.2 -3787.89,111 113 130,stand,21.3257 -140.25 0,,
|
||||
5193.04 11158 -3785.05,112 114 117,stand,17.1838 -56.1497 0,,
|
||||
5331.28 10772.9 -3815.61,113 104 115 117 118,stand,25.2478 -81.0118 0,,
|
||||
5509.98 10686.6 -3818.11,114 104 116,stand,23.7921 -99.5677 0,,
|
||||
5607.15 10829.1 -3788.57,115 107 117,stand,28.1592 34.1085 0,,
|
||||
5438.28 10907.2 -3781.45,116 114 113,stand,30.8453 -173.929 0,,
|
||||
5039.42 10774 -3837.88,114 119 131,stand,20.9906 109.733 0,,
|
||||
4693.03 10588.8 -3831.86,118 120 132,stand,14.7229 -158.548 0,,
|
||||
4454.7 10494.6 -3817.03,119 121,stand,20.7654 -172.995 0,,
|
||||
4297.79 10545.1 -3822.37,120 122,stand,27.5989 109.398 0,,
|
||||
4263.32 10676.2 -3820.86,121 123,stand,23.3417 102.79 0,,
|
||||
4222.1 10824 -3822.09,122 124 125,stand,28.7195 8.27413 0,,
|
||||
4347.62 10911.2 -3824.28,123 125,stand,27.8241 24.6273 0,,
|
||||
4180.85 11041.3 -3826.15,124 126 123,stand,24.4623 129.332 0,,
|
||||
4162.7 11188.6 -3834.72,125 127 128,stand,26.9287 86.6671 0,,
|
||||
4365.03 11298.9 -3817.03,126 128 129 134,stand,20.3204 -123.534 0,,
|
||||
4116.19 11400.2 -3837.44,126 127 133,stand,15.9424 -71.1296 0,,
|
||||
4583.58 11244.8 -3807.14,127 130,stand,18.2935 -133.136 0,,
|
||||
4896.57 11349.9 -3794.95,112 129 131,stand,26.9177 -38.2804 0,,
|
||||
4894.96 11079.6 -3837.27,130 118 132,stand,16.3928 -89.4603 0,,
|
||||
4650.75 10929.9 -3837.74,131 119,stand,23.8965 -116.624 0,,
|
||||
3905.67 11400.5 -3842.88,128 136,stand,18.0682 156.952 0,,
|
||||
4376.97 11597.2 -3831.26,127 135,stand,29.7192 15.0692 0,,
|
||||
4655.72 11770.2 -3841.66,134,stand,20.3095 47.4294 0,,
|
||||
3511.56 11568.4 -3872.22,133 137,stand,19.079 160.308 0,,
|
||||
3267.4 11638.4 -3863.88,136 138 139,stand,23.7811 79.5644 0,,
|
||||
3272.46 11767.6 -3861.03,137,stand,21.095 105.322 0,,
|
||||
2876.64 11708 -3845.75,137 140,stand,16.0577 -177.411 0,,
|
||||
2422.58 11681.9 -3831.6,139 141 144 142,stand,10.1196 -168.111 0,,
|
||||
2233.23 11641.3 -3830.89,140 142 144,stand,12.5861 131.337 0,,
|
||||
2128.36 11893.3 -3814.98,141 143 140,stand,14.4867 127.756 0,,
|
||||
2004.97 12122.8 -3784.94,142,stand,14.6021 120.478 0,,
|
||||
2342.38 11244.3 -3826.16,141 140,stand,25.3522 -120.519 0,,
|
||||
8472.87 4653.99 -3344.32,1 146 219,stand,11.4655 172.717 0,,
|
||||
9066.3 4951.31 -3231.49,145 147,stand,1.27563 37.5472 0,,
|
||||
9347.57 5208.43 -3268.93,146 148 149 227,stand,31.6199 80.328 0,,
|
||||
9175.11 5377.23 -3280.91,147,stand,37.3328 90.1827 0,,
|
||||
9587.78 5179.45 -3240.68,147 150,stand,29.3842 85.5904 0,,
|
||||
9575.02 5506.36 -3373.18,149 151 154 155 227 228,stand,1.16028 -81.0118 0,,
|
||||
9083.25 5501.64 -3343.18,150 227 229,stand,29.8291 70.0228 0,,
|
||||
9242.64 5861.68 -3481.63,153 162 228 229,stand,34.1962 67.2268 0,,
|
||||
9421.32 5783.33 -3476.59,152 154 227 228,stand,30.7245 57.2567 0,,
|
||||
9654.5 5811.03 -3492.78,153 150 157 160 161,stand,9.89441 -148.243 0,,
|
||||
9702.6 5452.28 -3331.38,150 156 227,stand,25.5719 1.04512 0,,
|
||||
9946.59 5702.41 -3418.6,155 157,stand,34.5313 51.6646 0,,
|
||||
9927.36 5888.47 -3499.71,156 154 158,stand,1.27563 -98.8096 0,,
|
||||
10051.5 6012.17 -3499.24,157 159 160,stand,23.2208 135.32 0,,
|
||||
9963.79 6233.63 -3534.87,158 160 168,stand,21.3202 -164.431 0,,
|
||||
9773.78 6099.09 -3529.38,159 154 158 161 167,stand,31.8451 -100.716 0,,
|
||||
9475.9 6093.71 -3527.43,154 160 162 167,stand,21.9904 125.575 0,,
|
||||
9278.39 6022.96 -3514.07,161 152 163,stand,29.7192 -64.2027 0,,
|
||||
9254.72 6352.02 -3542.74,162 164 167,stand,19.079 106.58 0,,
|
||||
8978.19 6836.13 -3571.31,163 165,stand,17.6233 101.537 0,,
|
||||
9012.33 7283.38 -3579.68,164 166,stand,13.5913 129.536 0,,
|
||||
8979.27 7549.98 -3587.56,165 187,stand,19.4141 -86.038 0,,
|
||||
9654.06 6289.11 -3547.77,163 161 160 168,stand,16.5027 179.892 0,,
|
||||
9868.21 6490.91 -3555.36,167 159 169,stand,22.4408 41.9637 0,,
|
||||
9890.29 6744.65 -3579.64,168 170 178,stand,21.4301 98.406 0,,
|
||||
10115.2 6874.91 -3579.18,169 171,stand,19.6393 51.368 0,,
|
||||
10212.3 6982.58 -3577.28,170 175 177,stand,26.8079 -159.806 0,,
|
||||
9993.71 7749.58 -3576.53,173 180 174 189,stand,12.0258 137.144 0,,
|
||||
9855.73 8039.22 -3526.24,172 174 180 181 189 183 188,stand,19.079 113.518 0,,
|
||||
10152.6 7489.14 -3583.88,173 175 176 172,stand,39.1235 -72.7885 0,,
|
||||
10226 7366.25 -3583.88,174 171,stand,32.9657 -95.6291 0,,
|
||||
10044.1 7390.17 -3583.88,174 177 179,stand,24.2316 0.457352 0,,
|
||||
10061.4 7078.06 -3582.75,176 171 178,stand,25.0116 -83.3079 0,,
|
||||
9845.88 7026.01 -3583.01,177 169 179,stand,28.1482 -169.88 0,,
|
||||
9888.27 7318.08 -3583.88,178 176,stand,27.7032 9.60896 0,,
|
||||
9817.61 7734.08 -3573.89,173 172,stand,18.0682 2.84139 0,,
|
||||
9654.82 8347.99 -3507.1,173 182 188 222 226,stand,24.5667 -52.9307 0,,
|
||||
9492.99 8228.18 -3505.91,181 183 230,stand,21.3202 -131.434 0,,
|
||||
9554.91 7959.39 -3502.3,182 184 187 173,stand,19.8645 -66.367 0,,
|
||||
9547.66 7668.44 -3503.28,183 185,stand,22.8857 -95.4863 0,,
|
||||
9537.18 7247.71 -3497.22,184 186,stand,20.5347 -102.32 0,,
|
||||
9495.75 6481.66 -3435.56,185,stand,36.322 -92.7946 0,,
|
||||
9201.87 7591.91 -3524.36,183 166,stand,26.4673 -121.809 0,,
|
||||
10072 8459.8 -3489.46,181 189 173 191,stand,19.6393 16.8764 0,,
|
||||
10285.9 8018.54 -3498.55,188 190 172 173,stand,17.7332 -59.8356 0,,
|
||||
10280.6 7682.3 -3514.28,189,stand,30.3894 -172.489 0,,
|
||||
10129.8 8653.76 -3489.59,188 192 193,stand,22.2156 71.072 0,,
|
||||
10236.2 8939.88 -3460.2,191,stand,24.4568 107.354 0,,
|
||||
10005.3 8754.11 -3507.59,191 194 225,stand,29.3842 -169.996 0,,
|
||||
9899.27 8828.03 -3562.97,193 205 223,stand,1.72058 -52.6341 0,,
|
||||
9721.31 8618.3 -3566.37,196 223,stand,26.5826 -143.117 0,,
|
||||
9467.17 8555.28 -3570.21,195 197 202 222 231,stand,24.1162 -157.229 0,,
|
||||
9253.35 8360.06 -3573.19,196 198 231,stand,23.111 -123.188 0,,
|
||||
8972.77 8189.83 -3570.1,197 199,stand,27.5879 42.4032 0,,
|
||||
8901.9 8406.08 -3570.85,198 200,stand,26.2476 88.9907 0,,
|
||||
9056.36 8556.42 -3570.05,199 201,stand,25.6873 24.2647 0,,
|
||||
9222.63 8802.43 -3559.61,200 202 206,stand,20.0842 57.2951 0,,
|
||||
9380.8 8767.61 -3567.25,201 196 203 206,stand,27.0276 -18.9665 0,,
|
||||
9600.48 9027.9 -3551.91,202 204 206,stand,19.4141 -54.9192 0,,
|
||||
9759.67 9051.13 -3551.59,203 205,stand,28.9337 -20.988 0,,
|
||||
9932.66 8966.37 -3556.79,204 194,stand,36.5472 -166.568 0,,
|
||||
9208.34 8972.33 -3539.8,201 203 202 207,stand,28.0383 -4.10747 0,,
|
||||
8964.07 9274.61 -3472.95,206 208,stand,13.8165 123.971 0,,
|
||||
8861.6 9476.41 -3460.3,207 209,stand,28.5986 -49.5689 0,,
|
||||
8776.87 9889.95 -3534.07,208,stand,26.8079 76.8618 0,,
|
||||
7334.89 4132.28 -3360.47,7 6 211,stand,58.3429 -85.1972 0,,
|
||||
7487.2 3806.13 -3351.76,7 210 6,stand,32.0306 111.562 0,,
|
||||
7413.51 4331.65 -3389.14,6 213,stand,35.722 -62.2413 0,,
|
||||
7427.22 4495.03 -3391.11,212 3 4,stand,33.7061 -87.9987 0,,
|
||||
7601.26 4639.07 -3380.54,4 3 215,stand,30.7947 -121.447 0,,
|
||||
7736.77 4552.58 -3399.88,214 0,stand,32.2504 150.119 0,,
|
||||
7661.63 4292.6 -3397.73,217 5 0,stand,32.8107 38.6187 0,,
|
||||
7899.12 4192.99 -3393.09,2 0 218 216,stand,37.403 124.4 0,,
|
||||
8016.77 4082.04 -3335.88,217,stand,42.3303 133.7 0,,
|
||||
8311.8 4727.58 -3336.95,145 1,stand,64.8413 -147.539 0,,
|
||||
7985.56 4646.15 -3391.4,1 2 221,stand,13.9966 -22.1137 0,,
|
||||
7981.99 4419.61 -3396.07,220 2 0 1,stand,28.6688 76.3183 0,,
|
||||
9549.67 8463.83 -3514.17,181 196 226 232,stand,44.3463 -128.209 0,,
|
||||
9792.39 8699.77 -3562.86,195 194 224,stand,41.0999 -80.6489 0,,
|
||||
9856.98 8656.03 -3537.88,223 225,stand,49.6088 61.7999 0,,
|
||||
9899.18 8618.52 -3509.58,224 193 226,stand,42.7808 87.5573 0,,
|
||||
9742.49 8494.91 -3512.45,225 181 222,stand,34.7168 36.8279 0,,
|
||||
9373.68 5421.57 -3360.52,153 147 151 155 150,stand,59.3481 -103.973 0,,
|
||||
9308.72 5682.18 -3440.02,153 152 229 150,stand,12.876 -49.3983 0,,
|
||||
9128.23 5669.67 -3409.13,228 151 152,stand,29.0039 25.891 0,,
|
||||
9134.15 7838.99 -3495.77,182,stand,53.7604 53.5052 0,,
|
||||
9397.62 8438.18 -3559.34,232 197 196,stand,30.4639 -46.8 0,,
|
||||
9422.85 8395.99 -3516.86,231 222,stand,55.1007 47.0452 0,,
|
||||
|
@@ -0,0 +1,89 @@
|
||||
88
|
||||
29253.0 35323.2 -9909.26,1 6 8 9 10 11 14 35 38 40 48 55,stand,13.8867 -172.974 0.0,,
|
||||
28947.2 34706.0 -9921.03,0 2 6 38,stand,31.9153 -177.566 0.0,,
|
||||
28829.6 34710.5 -9917.93,1 3,stand,32.4756 -146.321 0.0,,
|
||||
28708.2 34724.3 -9919.15,2 4,stand,34.1565 -158.192 0.0,,
|
||||
28685.7 34565.6 -9913.35,3 5,stand,36.6174 -165.696 0.0,,
|
||||
28595.2 34571.6 -9919.95,4,stand,39.6442 -164.575 0.0,,
|
||||
29234.1 34608.1 -9933.05,0 1 7 40,stand,27.7734 -10.1786 0.0,,
|
||||
29917.8 34595.4 -9911.95,6 8,stand,28.6688 5.60882 0.0,,
|
||||
29935.3 35250.9 -9905.92,0 7 9 40,stand,16.1279 116.027 0.0,,
|
||||
29929.7 35841.8 -9922.85,0 8 54,stand,18.2538 90.8298 0.0,,
|
||||
29465.1 36091.2 -9919.73,0 11 53,stand,28.894 167.652 0.0,,
|
||||
29229.5 36230.6 -9905.95,0 10 12 48 49,stand,19.0393 155.336 0.0,,
|
||||
28831.9 36239.8 -9903.71,11 13,stand,19.5996 -171.853 0.0,,
|
||||
28606.3 36119.8 -9918.4,12 14,stand,25.1971 -158.752 0.0,,
|
||||
28329.4 36101.7 -9921.58,0 13 15 44,stand,20.3796 -172.188 0.0,,
|
||||
28184.6 36061.9 -9920.42,14 16 30 86,stand,25.0873 -108.468 0.0,,
|
||||
27856.7 36014.1 -9902.28,15 17 19 33 86,stand,27.6581 -91.5598 0.0,,
|
||||
27533.6 36008.5 -9904.12,16 18,stand,26.2024 -99.2887 0.0,,
|
||||
27540.3 35676.8 -9905.31,17 19,stand,25.5322 -63.1162 0.0,,
|
||||
27658.8 35429.0 -9916.42,16 18 28 32,stand,26.2024 -103.205 0.0,,
|
||||
27551.3 34721.2 -9938.12,21 27,stand,22.2858 -84.3912 0.0,,
|
||||
27806.8 34722.0 -9943.86,20 22,stand,18.5889 71.719 0.0,,
|
||||
27857.7 35011.9 -9946.72,21 23 26 27,stand,24.9719 -6.56405 0.0,,
|
||||
28040.8 34965.3 -9951.92,22 24,stand,22.9559 -18.4348 0.0,,
|
||||
28273.4 34970.7 -9944.44,23 25,stand,24.8621 -71.5152 0.0,,
|
||||
28290.4 34884.7 -9945.78,24,climb,24.0765 -83.0454 0.0,,
|
||||
27551.5 35192.4 -9935.88,22 27 28 29,stand,25.6421 -5.10287 0.0,,
|
||||
27547.7 34897.1 -9937.01,20 22 26 29,stand,31.4703 -78.5684 0.0,,
|
||||
27562.8 35287.8 -9928.29,19 26,stand,74.696 -15.073 0.0,,
|
||||
27956.5 35172.0 -9938.57,26 27 34,stand,26.2024 157.616 0.0,,
|
||||
28204.8 35350.8 -9936.58,15 31 34 43,stand,22.1759 -13.804 0.0,,
|
||||
28426.6 35216.4 -9932.8,30 35 43 87,stand,15.9027 147.904 0.0,,
|
||||
27848.3 35436.2 -9916.28,19 33 34,stand,19.3744 79.9643 0.0,,
|
||||
27854.8 35622.2 -9903.76,16 32,stand,28.894 -63.2645 0.0,,
|
||||
27931.6 35411.8 -9912.29,29 30 32 86,stand,30.0146 -79.5792 0.0,,
|
||||
28552.0 34993.6 -9934.29,0 31 36 39 42 55 56,stand,16.5729 120.421 0.0,,
|
||||
28597.6 34843.7 -9934.24,35 37 38,stand,15.6775 -21.8735 0.0,,
|
||||
28587.9 34681.0 -9925.39,36,stand,17.1332 -67.3404 0.0,,
|
||||
28947.7 34826.6 -9916.8,0 1 36 39 56,stand,16.2378 -2.72433 0.0,,
|
||||
28759.5 35872.0 -9909.75,35 38 44 55,stand,17.4683 -62.1549 0.0,,
|
||||
29716.5 34836.2 -9901.23,0 6 8,stand,18.0286 -49.982 0.0,,
|
||||
28492.1 35490.3 -9889.18,42,stand,35.387 -88.0936 0.0,,
|
||||
28497.7 35291.7 -9905.86,35 41,stand,39.9792 -88.3188 0.0,,
|
||||
28397.9 35378.0 -9927.07,30 31 44,stand,22.2858 -127.815 0.0,,
|
||||
28378.1 35768.5 -9930.77,14 39 43,stand,17.4683 -48.8669 0.0,,
|
||||
29645.0 35949.0 -9686.31,46 48,stand,37.6282 47.2195 0.0,,
|
||||
29693.3 35978.4 -9676.56,45 47,stand,26.7627 78.3493 0.0,,
|
||||
29711.7 36132.1 -9684.95,46,stand,37.8534 -137.862 0.0,,
|
||||
29480.3 35949.2 -9904.69,0 11 45,stand,47.5928 -165.295 0.0,,
|
||||
29416.0 36249.5 -9925.0,11 50,stand,23.291 3.76861 0.0,,
|
||||
29712.3 36251.3 -9918.07,49 51 53,stand,20.6049 -83.5782 0.0,,
|
||||
29932.7 36249.5 -9903.11,50 52 54,stand,18.5889 -24.5652 0.0,,
|
||||
30072.9 36258.9 -9878.2,51,stand,24.9719 2.31292 0.0,,
|
||||
29721.7 36085.8 -9919.14,10 50 54,stand,20.7202 122.168 0.0,,
|
||||
29950.2 36086.1 -9908.54,9 51 53,stand,35.2771 -107.809 0.0,,
|
||||
28868.1 35468.1 -9900.16,0 35 39,stand,22.3956 176.523 0.0,,
|
||||
28952.9 35001.6 -9914.7,35 38,stand,24.1919 166.223 0.0,,
|
||||
27425.1 34374.5 -9935.69,58 68 69 70 71,stand,21.7255 54.1574 0.0,,
|
||||
28035.9 34383.3 -9928.26,57 59 68,stand,25.0873 1.41204 0.0,,
|
||||
28155.6 34068.1 -9949.27,58 60,stand,25.307 -65.8902 0.0,,
|
||||
28266.5 34074.4 -9940.27,59 61 63,stand,36.2823 111.72 0.0,,
|
||||
28218.3 34230.5 -9945.91,60 62,stand,41.5448 52.4765 0.0,,
|
||||
28347.3 34243.2 -9945.91,61,stand,37.9633 12.4972 0.0,,
|
||||
28428.3 34011.8 -9932.92,60 64,stand,28.7787 -141.333 0.0,,
|
||||
28237.4 33707.9 -9951.12,63 65 68 71,stand,25.4224 -95.0809 0.0,,
|
||||
28540.0 33522.6 -9947.42,64 66 71 73,stand,23.0713 -16.6934 0.0,,
|
||||
28602.1 33628.7 -9928.27,65 67,stand,28.894 103.019 0.0,,
|
||||
28576.1 33801.4 -9914.13,66,stand,28.1085 101.118 0.0,,
|
||||
27800.8 33647.6 -9962.38,57 58 64 71 73,stand,17.0233 80.8487 0.0,,
|
||||
27383.6 34613.2 -9921.07,57 70,stand,23.4064 -59.1007 0.0,,
|
||||
26916.3 34281.9 -9908.91,57 69 71,stand,19.2645 11.4481 0.0,,
|
||||
27545.2 32499.1 -9959.3,57 64 65 68 70 72 75 76 77,stand,13.5516 -81.5018 0.0,,
|
||||
28606.2 32687.1 -9932.68,71 73 74,stand,15.9027 78.1076 0.0,,
|
||||
28495.5 32881.0 -9895.31,65 68 72,stand,29.2291 156.275 0.0,,
|
||||
28788.0 32403.3 -9905.73,72,stand,22.6208 173.035 0.0,,
|
||||
28230.4 31823.5 -9870.54,71 76 79,stand,13.6615 -84.2649 0.0,,
|
||||
27496.1 31085.7 -9950.19,71 75 78 79,stand,18.3636 -93.2187 0.0,,
|
||||
26606.5 31448.3 -9850.3,71 78,stand,20.7202 6.14715 0.0,,
|
||||
26730.7 30574.2 -9982.9,76 77,stand,24.7467 -71.1197 0.0,,
|
||||
28655.2 30975.3 -9873.69,75 76,stand,20.9399 136.055 0.0,,
|
||||
28623.2 33927.6 -9927.46,81,stand,41.8854 -10.986 0.0,,
|
||||
28770.2 33969.1 -9926.24,80 82 85,stand,41.2097 128.551 0.0,,
|
||||
28877.7 34262.9 -9942.82,81 83 85,stand,20.2698 -177.248 0.0,,
|
||||
28895.7 34370.7 -9930.58,82 84,stand,34.3817 -164.586 0.0,,
|
||||
28704.9 34342.5 -9935.61,83 85,stand,29.6741 -145.442 0.0,,
|
||||
28662.0 34094.3 -9951.17,81 82 84,stand,24.9719 73.4604 0.0,,
|
||||
27960.0 35824.2 -9910.77,15 16 34,stand,26.7242 -92.988 0.0,,
|
||||
28355.3 35066.4 -9943.27,31,stand,22.2418 143.053 0.0,,
|
||||
|
@@ -0,0 +1,276 @@
|
||||
275
|
||||
2604.41 3734.92 64.125,1,stand,21.275 117.349 0.0,,
|
||||
2315.26 3753.97 64.125,0 2,stand,35.4968 68.3005 0.0,,
|
||||
2207.33 4003.55 64.125,1 3 4 38,stand,44.7968 -179.156 0.0,,
|
||||
2032.79 4003.32 64.125,2 5 38 42 44 45,stand,44.1211 -179.265 0.0,,
|
||||
2208.78 4470.08 320.125,2 5 6 37,stand,30.1245 91.0642 0.0,,
|
||||
2031.7 4472.23 320.125,3 4 6 35 37,stand,41.2097 -99.6091 0.0,,
|
||||
2202.18 4564.72 320.125,4 5 7 30 37,stand,23.5162 1.95956 0.0,,
|
||||
3587.77 4510.04 320.125,6 8 227 233,stand,28.7787 -3.94012 0.0,,
|
||||
3711.53 3011.35 320.125,7 9 23 250 270 271,stand,19.4843 -61.1624 0.0,,
|
||||
4246.48 2770.51 320.125,8 10 20 21 267,stand,14.6722 -24.3198 0.0,,
|
||||
4693.82 2172.17 320.125,9 11 13 19 21,stand,25.9827 -42.2385 0.0,,
|
||||
4818.48 2294.14 320.125,10 12 19,stand,29.4543 44.6634 0.0,,
|
||||
5170.96 1943.92 64.125,11 13 14 15 16,stand,49.3835 -45.3696 0.0,,
|
||||
5033.38 1821.33 64.125,10 12 14 15 16,stand,52.2949 -149.185 0.0,,
|
||||
5457.41 1556.33 64.125,12 13 15,stand,13.4363 88.6417 0.0,,
|
||||
5469.02 2024.08 64.125,12 13 14 16 17,stand,40.8746 159.646 0.0,,
|
||||
5278.31 2024.64 64.125,12 13 15 18,stand,51.2897 -175.607 0.0,,
|
||||
5461.34 2497.89 320.125,15 18 19 273,stand,43.3411 96.821 0.0,,
|
||||
5287.22 2485.76 320.125,16 17 19 274,stand,41.4349 -91.9516 0.0,,
|
||||
4797.27 2540.76 320.125,10 11 17 18 20,stand,24.1864 178.576 0.0,,
|
||||
4670.75 2873.89 320.125,9 19 266,stand,30.799 147.111 0.0,,
|
||||
4398.35 2495.78 320.125,9 10 22,stand,40.9888 91.7123 0.0,,
|
||||
3869.89 2539.07 320.125,21 23 255 269,stand,24.5313 179.142 0.0,,
|
||||
3617.22 2840.45 320.125,8 22 24,stand,18.5931 133.114 0.0,,
|
||||
3379.96 2924.87 320.125,23 26 249 250 251,stand,30.1288 150.659 0.0,,
|
||||
3643.28 3604.61 320.125,26 232,stand,29.3433 173.247 0.0,,
|
||||
3331.24 3589.77 320.125,24 25 27 239,stand,25.4266 145.172 0.0,,
|
||||
3203.04 3711.68 320.125,26 28,stand,26.9922 -19.1123 0.0,,
|
||||
3208.74 4332.77 320.125,27 29 227,stand,29.7937 -88.3975 0.0,,
|
||||
2853.46 4620.92 320.125,28 30,stand,31.2494 -154.689 0.0,,
|
||||
2588.42 4461.88 320.125,6 29 33,stand,27.5525 36.4346 0.0,,
|
||||
2236.42 5142.67 320.125,32 34,stand,43.6804 92.9098 0.0,,
|
||||
2646.92 5205.86 320.125,31,stand,39.8737 -178.321 0.0,,
|
||||
2401.67 4787.91 320.125,30 34,stand,35.3912 1.42118 0.0,,
|
||||
2407.55 5097.19 320.125,31 33 36,stand,29.7937 -35.6137 0.0,,
|
||||
1992.45 4952.35 320.125,5 36,stand,18.0328 -11.6471 0.0,,
|
||||
2713.86 4968.76 320.125,34 35,stand,19.4885 172.121 0.0,,
|
||||
2120.75 4443.67 320.125,4 5 6 40,stand,40.2087 -89.7818 0.0,,
|
||||
2119.97 4048.94 64.125,2 3 41,stand,41.214 -97.8403 0.0,,
|
||||
2121.75 4207.65 168.125,40 41,stand,19.4885 94.1788 0.0,,
|
||||
2126.13 4298.52 240.701,37 39,stand,18.9282 96.6397 0.0,,
|
||||
2115.4 4122.56 100.449,38 39,stand,54.5404 -97.1701 0.0,,
|
||||
2141.92 3720.82 64.125,3 43,stand,42.1094 87.9056 0.0,,
|
||||
2057.42 3534.23 64.125,42 44 49 62,stand,33.3752 -8.62581 0.0,,
|
||||
1952.67 3726.08 64.125,3 43 45,stand,31.5845 83.5 0.0,,
|
||||
1938.93 4068.13 64.125,3 44 46,stand,37.6324 96.9418 0.0,,
|
||||
1939.54 4398.19 64.125,45 48,stand,36.402 87.4222 0.0,,
|
||||
1953.13 4720.87 64.125,48 188,stand,37.9675 90.8939 0.0,,
|
||||
1963.61 4479.37 64.125,46 47,stand,56.6663 -90.1553 0.0,,
|
||||
2351.94 3422.68 64.125,43 50 62 63,stand,23.5205 0.778484 0.0,,
|
||||
2969.1 3426.23 64.125,49 51 58 60 63,stand,23.1854 35.6051 0.0,,
|
||||
3026.71 3890.11 64.125,50 52 57,stand,18.9282 123.853 0.0,,
|
||||
2862.04 4072.36 64.125,51 53,stand,22.3999 138.52 0.0,,
|
||||
2857.16 4542.69 64.125,52 54 55,stand,22.5153 95.5191 0.0,,
|
||||
2399.24 4578.88 64.125,53,stand,23.8556 177.719 0.0,,
|
||||
3070.8 4463.82 64.125,53 56,stand,32.0294 -22.8147 0.0,,
|
||||
3586.64 4102.65 64.125,55 57,stand,31.0242 -81.0477 0.0,,
|
||||
3406.55 3816.6 64.125,51 56 58,stand,29.3433 -141.632 0.0,,
|
||||
3412.81 3509.33 64.125,50 57,stand,39.6484 -99.5267 0.0,,
|
||||
3180.71 3300.11 64.125,60 64 65,stand,42.5598 -5.64852 0.0,,
|
||||
3008.73 3313.43 64.125,50 59 64,stand,48.4924 168.117 0.0,,
|
||||
2650.73 3291.88 64.125,62 63,stand,32.0294 99.617 0.0,,
|
||||
2265.16 3305.42 64.125,43 49 61,stand,42.6697 169.386 0.0,,
|
||||
2671.82 3422.2 64.125,49 50 61,stand,82.3138 107.269 0.0,,
|
||||
2747.79 3255.99 64.125,59 60,stand,36.6217 0.624676 0.0,,
|
||||
3164.96 3063.8 64.125,59 66,stand,31.3593 156.284 0.0,,
|
||||
2870.11 3078.8 64.125,65 67,stand,29.118 -173.481 0.0,,
|
||||
2756.64 3096.86 24.125,66 68,stand,52.5244 177.785 0.0,,
|
||||
2701.96 3099.05 -7.875,67 69,stand,52.5244 178.455 0.0,,
|
||||
2637.35 3099.17 -39.875,68 70,stand,52.7496 179.24 0.0,,
|
||||
2554.79 3099.23 -63.875,69 71 74,stand,53.0847 179.685 0.0,,
|
||||
2500.31 3091.57 -63.875,70 72 74,stand,23.1854 69.0475 0.0,,
|
||||
2501.3 3188.42 -63.875,71 75,stand,20.274 79.9075 0.0,,
|
||||
2710.8 3031.99 -63.875,74,stand,38.1927 176.966 0.0,,
|
||||
2597.24 3034.25 -63.875,70 71 73,stand,44.4604 4.39299 0.0,,
|
||||
2509.7 3278.6 -79.875,72 76,stand,48.6023 68.4488 0.0,,
|
||||
2619.06 3269.84 -79.875,75 77 78,stand,32.1448 27.3489 0.0,,
|
||||
2781.47 3236.96 -79.875,76,stand,44.7955 -2.32515 0.0,,
|
||||
2640.11 3801.08 -95.875,76 156 160,stand,30.5737 91.2949 0.0,,
|
||||
-12112.4 5257.81 -63.875,80,stand,16.7969 -39.8599 0.0,,
|
||||
-12082.5 -5621.94 -63.875,79 81,stand,22.8448 -51.9504 0.0,,
|
||||
-11994.8 -9444.07 61.2376,80 82,stand,27.2119 -128.772 0.0,,
|
||||
-11971.0 -10063.5 -63.875,81 83,stand,25.3113 -124.625 0.0,,
|
||||
-4895.59 -6570.11 -55.875,82 84,stand,12.4298 45.0314 0.0,,
|
||||
12163.0 -6513.33 -63.875,83 85,stand,20.719 -98.1973 0.0,,
|
||||
12198.7 933.449 -63.875,84 86,stand,10.4138 -169.532 0.0,,
|
||||
4480.1 313.562 -63.875,85 87,stand,17.1375 141.87 0.0,,
|
||||
4148.97 1612.54 -63.875,86 88,stand,1.56982 -171.207 0.0,,
|
||||
2981.85 1816.7 -63.875,87 89,stand,11.3147 142.431 0.0,,
|
||||
2556.19 2306.0 -63.875,88 90 94,stand,30.0134 -37.3056 0.0,,
|
||||
2191.58 2495.95 -63.875,89 91 94,stand,29.4586 44.6689 0.0,,
|
||||
2358.84 2753.32 -63.875,90 92 93,stand,29.6783 53.1778 0.0,,
|
||||
2794.51 2805.18 -63.875,91,stand,27.3273 178.158 0.0,,
|
||||
1819.43 2897.17 -63.875,91,stand,20.6091 -62.2391 0.0,,
|
||||
1889.44 2308.46 -63.875,89 90 95,stand,27.2174 89.1305 0.0,,
|
||||
1387.42 2416.34 -63.875,94 96 97,stand,25.5365 128.324 0.0,,
|
||||
1400.73 2721.87 -63.875,95,stand,28.2281 97.98 0.0,,
|
||||
922.984 2650.13 -63.875,95 98,stand,29.7937 139.519 0.0,,
|
||||
945.76 3063.62 -63.875,97 99 100,stand,32.7051 72.1072 0.0,,
|
||||
989.954 3209.65 -55.8736,98 179,stand,8.28489 -105.915 0.0,,
|
||||
335.69 3285.81 -63.875,98 101 102 103,stand,22.9572 172.292 0.0,,
|
||||
129.07 3285.27 80.125,100,stand,42.7765 -20.0681 0.0,,
|
||||
519.818 3671.02 -35.875,100 180,stand,30.9058 -108.129 0.0,,
|
||||
-144.386 3742.47 -63.875,100 104,stand,23.1824 88.0374 0.0,,
|
||||
-367.21 4279.14 -63.875,103 105 133 180,stand,21.6113 -51.3846 0.0,,
|
||||
-1560.65 4295.73 -63.875,104 106,stand,27.3242 178.147 0.0,,
|
||||
-2141.02 4468.93 -59.875,105 107,stand,25.3082 152.615 0.0,,
|
||||
-2681.2 4450.82 -63.875,106 108,stand,21.8365 7.25492 0.0,,
|
||||
-2799.84 4822.22 -63.875,107 109 129,stand,32.0264 113.641 0.0,,
|
||||
-2813.68 5054.55 -82.2431,108 110,stand,42.3315 90.0149 0.0,,
|
||||
-2835.84 5235.65 -103.875,109 111 127 128,stand,56.3281 126.407 0.0,,
|
||||
-2962.27 5242.76 -103.875,110 112 127,stand,67.5287 136.712 0.0,,
|
||||
-2971.46 5295.41 -79.875,111 113,stand,52.5214 84.5273 0.0,,
|
||||
-2970.67 5374.35 -79.875,112 114,stand,62.6013 106.588 0.0,,
|
||||
-3040.13 5378.63 -79.875,113 115,stand,52.5214 179.828 0.0,,
|
||||
-3102.41 5377.58 -95.875,114 116,stand,58.6792 -172.668 0.0,,
|
||||
-3199.95 5298.37 -95.875,115 117,stand,63.6066 -147.586 0.0,,
|
||||
-3268.57 5279.13 -95.875,116 125,stand,61.2555 162.92 0.0,,
|
||||
-3846.93 4758.11 -95.875,119 123,stand,38.7445 -117.83 0.0,,
|
||||
-3887.8 4697.29 -95.875,118 120 121,stand,39.6399 -123.988 0.0,,
|
||||
-3821.8 4588.32 -95.875,119 121,stand,44.9078 -32.944 0.0,,
|
||||
-4134.78 4411.73 -95.875,119 120 122,stand,24.0778 -131.266 0.0,,
|
||||
-4220.72 4328.25 -95.875,121,stand,58.9044 36.0391 0.0,,
|
||||
-3552.04 5029.66 -95.875,118 124 126,stand,36.6187 -125.103 0.0,,
|
||||
-3464.18 5107.84 -95.875,123 125,stand,35.8331 22.2677 0.0,,
|
||||
-3389.12 5211.67 -95.875,117 124,stand,36.5088 19.8068 0.0,,
|
||||
-3661.26 5196.07 -95.875,123,stand,40.2002 137.245 0.0,,
|
||||
-2952.08 4992.11 -103.875,110 111,stand,45.9131 -130.102 0.0,,
|
||||
-2864.34 5381.37 -103.875,110,stand,50.0549 63.0325 0.0,,
|
||||
-2009.31 4719.97 -59.875,108 130,stand,51.1755 -23.2706 0.0,,
|
||||
-1629.87 4638.11 -63.875,129 131,stand,29.5654 5.62346 0.0,,
|
||||
-1338.36 4655.88 -63.875,130 132,stand,41.3208 18.2797 0.0,,
|
||||
-1304.36 4370.8 -59.875,131 133,stand,32.2516 12.1164 0.0,,
|
||||
-497.766 4417.46 -59.875,104 132 134,stand,38.6346 24.9978 0.0,,
|
||||
166.918 4759.17 -59.875,133 135,stand,37.2888 15.3683 0.0,,
|
||||
1327.01 4664.26 -63.875,134 136 171 226,stand,30.6805 -5.24202 0.0,,
|
||||
1454.18 4659.37 -63.875,135 137,stand,48.4894 -75.0052 0.0,,
|
||||
1521.12 4566.08 -63.875,136,stand,66.7462 -1.88021 0.0,,
|
||||
1648.1 4655.9 -61.875,139,stand,52.9749 87.5979 0.0,,
|
||||
1832.24 4614.7 -63.875,138 140,stand,46.9269 4.38749 0.0,,
|
||||
1899.9 4623.35 -63.875,139 141,stand,64.0601 3.38224 0.0,,
|
||||
1905.87 4521.74 -71.875,140 142,stand,62.3792 -89.2325 0.0,,
|
||||
1919.78 4468.12 -95.875,141 143,stand,61.5936 -93.3798 0.0,,
|
||||
2004.72 4499.88 -95.875,142 144,stand,42.8949 53.5513 0.0,,
|
||||
2232.17 4584.93 -95.875,143 145,stand,37.8577 1.92656 0.0,,
|
||||
2415.68 4534.65 -95.875,144 146 147,stand,32.7051 -38.5031 0.0,,
|
||||
2488.86 4754.6 -95.875,145,stand,27.6624 172.368 0.0,,
|
||||
2396.04 4272.23 -95.875,145 148 152 153,stand,41.4392 -137.127 0.0,,
|
||||
2429.09 4104.17 -95.875,147 149 154,stand,36.7371 -81.586 0.0,,
|
||||
2195.24 4079.91 -82.9377,148 150,stand,28.0029 166.205 0.0,,
|
||||
1972.89 4092.87 -63.875,149 151 161,stand,27.6624 -177.222 0.0,,
|
||||
1953.93 4237.97 -63.875,150 152 153,stand,36.6217 -18.129 0.0,,
|
||||
2144.24 4219.69 -75.9022,147 151,stand,42.5598 2.47587 0.0,,
|
||||
2164.69 4346.79 -78.7235,147 151,stand,32.5897 -168.383 0.0,,
|
||||
2510.91 4038.92 -95.875,148 155,stand,44.0155 4.07438 0.0,,
|
||||
2601.33 4050.59 -95.875,154 156 159,stand,41.4392 14.9344 0.0,,
|
||||
2636.18 3919.58 -95.875,78 155 157,stand,34.386 -72.5278 0.0,,
|
||||
2752.21 3918.4 -95.875,156 158 159,stand,37.6324 24.899 0.0,,
|
||||
2771.32 3404.07 -95.875,157,stand,42.2247 -84.0634 0.0,,
|
||||
2765.61 4053.54 -95.875,155 157,stand,40.6537 94.5523 0.0,,
|
||||
2468.94 3826.24 -95.875,78,stand,49.1681 117.283 0.0,,
|
||||
1706.71 4091.87 -63.875,150 162 169,stand,32.7051 91.2289 0.0,,
|
||||
1694.71 4281.67 -111.376,161 163,stand,58.2373 88.4329 0.0,,
|
||||
1685.11 4480.91 -159.875,162 164 165,stand,34.8309 88.0923 0.0,,
|
||||
1676.32 4879.28 -159.875,163,stand,38.0774 89.1031 0.0,,
|
||||
1583.41 4554.07 -159.875,163 166,stand,37.4072 -88.8425 0.0,,
|
||||
1581.47 4450.73 -139.453,165 167,stand,29.5685 -89.1776 0.0,,
|
||||
1573.72 4320.76 -99.875,166 168,stand,57.7869 -98.6972 0.0,,
|
||||
1580.21 4211.01 -79.5864,167 169,stand,49.0527 -85.596 0.0,,
|
||||
1583.6 4057.75 -63.875,161 168 170,stand,51.1786 -106.201 0.0,,
|
||||
1432.04 4071.11 -63.875,169 171 179 180,stand,38.8629 107.884 0.0,,
|
||||
1358.45 4380.67 -63.875,135 170,stand,77.6117 -41.7221 0.0,,
|
||||
1928.23 3582.59 -63.875,173,stand,41.4392 -58.3829 0.0,,
|
||||
2112.82 3377.07 -63.875,172 174 175,stand,36.9568 124.007 0.0,,
|
||||
2405.9 3094.63 -63.875,173 175,stand,35.2759 -40.9091 0.0,,
|
||||
1895.74 3067.74 -63.875,173 174 176,stand,24.306 -169.889 0.0,,
|
||||
1813.11 3025.27 -63.875,175 177,stand,31.6943 119.337 0.0,,
|
||||
1665.05 2976.82 -63.875,176 178,stand,32.1448 -171.679 0.0,,
|
||||
1352.49 2942.83 -63.875,177 179,stand,30.4639 -132.931 0.0,,
|
||||
1345.66 3194.18 -63.875,99 170 178,stand,32.9248 143.974 0.0,,
|
||||
510.09 3810.35 -63.875,102 104 170,stand,20.9442 -0.984821 0.0,,
|
||||
2847.13 4903.93 88.125,182,stand,5.15137 45.5258 0.0,,
|
||||
2123.38 4865.18 88.125,181 183 186,stand,34.4958 93.4482 0.0,,
|
||||
2126.94 5279.69 88.125,182 184 185,stand,36.3965 86.4004 0.0,,
|
||||
1930.62 5129.05 88.125,183 185,stand,39.3079 -145.719 0.0,,
|
||||
1894.49 5331.41 88.125,183 184,stand,58.122 78.0343 0.0,,
|
||||
1683.42 4862.83 88.125,182 187 191,stand,35.166 -79.9765 0.0,,
|
||||
1690.47 4701.82 64.125,186 188,stand,41.9995 -90.5014 0.0,,
|
||||
1798.51 4519.58 64.125,47 187 189,stand,37.8522 -46.8253 0.0,,
|
||||
1477.56 4508.91 64.125,188 190,stand,37.8522 178.235 0.0,,
|
||||
1455.99 4705.87 64.125,189 191,stand,24.6411 91.7783 0.0,,
|
||||
1452.65 4830.12 88.125,186 190 192,stand,30.3485 -65.3043 0.0,,
|
||||
1079.81 4884.32 88.125,191 193 195,stand,27.2174 -178.518 0.0,,
|
||||
1035.45 5183.75 88.125,192 194,stand,31.6943 87.1969 0.0,,
|
||||
858.209 5223.24 88.125,193 195,stand,27.7722 -157.798 0.0,,
|
||||
837.512 4889.45 88.125,192 194 196 197,stand,25.9814 -96.5439 0.0,,
|
||||
790.26 4707.29 88.125,195,stand,34.0454 -77.0596 0.0,,
|
||||
567.489 4878.97 88.125,195 198 217 218,stand,27.5525 88.8724 0.0,,
|
||||
571.905 5336.41 88.125,197 199 218,stand,29.118 83.7253 0.0,,
|
||||
-78.6762 5356.84 88.125,198 200 219,stand,27.9974 -162.726 0.0,,
|
||||
-613.888 5360.65 88.125,199 201 211 212,stand,14.8962 -179.298 0.0,,
|
||||
-1116.41 5355.75 88.125,200 202 203 213 221,stand,13.5504 177.796 0.0,,
|
||||
-1515.06 5361.18 88.125,201 204,stand,14.0009 -176.162 0.0,,
|
||||
-1261.27 4889.95 88.125,201 205 206 213,stand,26.8768 -82.6517 0.0,,
|
||||
-1507.98 5133.03 88.125,202 205,stand,28.783 -1.38582 0.0,,
|
||||
-1517.41 4869.44 88.125,203 204,stand,22.1747 6.2332 0.0,,
|
||||
-1245.69 4417.56 112.125,203 207 214,stand,32.1393 -90.7211 0.0,,
|
||||
-1232.33 4185.12 112.125,206 208,stand,40.8789 -17.9257 0.0,,
|
||||
-903.735 4179.8 112.125,207 209 214,stand,35.611 -16.0251 0.0,,
|
||||
-549.872 4179.83 112.125,208 210,stand,38.7476 -6.05501 0.0,,
|
||||
-535.205 4445.23 112.125,209 211 214,stand,28.1073 165.507 0.0,,
|
||||
-549.219 4847.68 88.125,200 210 212 215,stand,45.1306 93.0472 0.0,,
|
||||
-689.249 4875.55 88.125,200 211 213 214 220,stand,15.7916 -140.852 0.0,,
|
||||
-1025.4 4821.76 88.125,201 203 212 214 221,stand,31.2439 -167.724 0.0,,
|
||||
-918.317 4431.42 112.125,206 208 210 212 213,stand,32.1393 -80.9708 0.0,,
|
||||
-247.868 4880.62 88.125,211 216,stand,28.8928 1.9157 0.0,,
|
||||
-15.4373 4826.08 88.125,215 217 219,stand,34.3805 -9.95503 0.0,,
|
||||
216.743 4880.75 88.125,197 216 218 222,stand,35.611 8.18889 0.0,,
|
||||
298.47 5103.93 88.125,197 198 217 219,stand,27.7722 171.913 0.0,,
|
||||
-47.4869 5110.23 88.125,199 216 218 220,stand,28.783 -179.831 0.0,,
|
||||
-600.59 5115.5 88.125,212 219 221,stand,29.4531 -179.716 0.0,,
|
||||
-1136.84 5116.89 88.125,201 213 220,stand,28.3325 -179.046 0.0,,
|
||||
241.382 4671.13 88.125,217,stand,40.7635 -148.734 0.0,,
|
||||
1144.92 4392.81 116.125,224 225,stand,23.4052 -96.6701 0.0,,
|
||||
1146.98 4177.22 116.125,223,stand,18.0273 89.669 0.0,,
|
||||
1059.45 4399.07 116.125,223,stand,46.1359 -8.09834 0.0,,
|
||||
988.813 4403.58 -63.875,135,stand,65.0653 174.516 0.0,,
|
||||
3547.65 4234.55 320.125,7 28 228,stand,33.8202 -63.1234 0.0,,
|
||||
3565.86 4067.5 320.125,227 229 232 236,stand,37.2919 -109.711 0.0,,
|
||||
3900.57 3928.43 320.125,228 230 236,stand,37.4017 -93.3633 0.0,,
|
||||
3935.49 3689.11 320.125,229 231,stand,49.1626 -87.8756 0.0,,
|
||||
3723.63 3693.4 320.125,230 232,stand,52.9694 159.58 0.0,,
|
||||
3601.94 3683.9 320.125,25 228 231,stand,40.7635 -165.142 0.0,,
|
||||
3753.86 4601.38 320.125,7 234,stand,41.5491 -98.6202 0.0,,
|
||||
3849.42 4517.15 320.125,233 235 237,stand,39.3079 -86.8593 0.0,,
|
||||
3820.13 4352.26 320.125,234 236,stand,35.166 -80.5916 0.0,,
|
||||
3870.19 4171.85 320.125,228 229 235,stand,76.2659 -150.217 0.0,,
|
||||
3925.77 4684.28 320.125,234 238,stand,56.7816 -149.064 0.0,,
|
||||
3766.13 4707.54 320.125,237,stand,44.2407 -156.908 0.0,,
|
||||
3030.72 3503.0 320.125,26 240,stand,30.799 -152.464 0.0,,
|
||||
3056.74 3366.26 320.125,239 241 242,stand,45.3558 -89.7487 0.0,,
|
||||
2813.09 3333.29 320.125,240,stand,37.4072 -168.142 0.0,,
|
||||
3184.78 3276.41 320.125,240 243 256,stand,47.8223 -77.5429 0.0,,
|
||||
3132.06 3139.68 320.125,242 244 249,stand,46.2512 -160.858 0.0,,
|
||||
3025.66 3110.54 320.125,243 245 246,stand,46.0315 68.8993 0.0,,
|
||||
3015.3 3242.57 320.125,244 247,stand,45.3558 90.6248 0.0,,
|
||||
3035.54 2885.77 320.125,244 248,stand,33.6005 -4.56074 0.0,,
|
||||
2959.13 3242.68 320.125,245,stand,57.2266 -4.30806 0.0,,
|
||||
3168.2 2903.1 320.125,246 249,stand,52.8595 22.6799 0.0,,
|
||||
3169.55 3043.45 320.125,24 243 248 250,stand,52.9749 91.2126 0.0,,
|
||||
3508.13 3128.82 320.125,8 24 249 271,stand,42.3346 14.5005 0.0,,
|
||||
3305.62 2781.87 320.125,24 252,stand,37.182 -4.28608 0.0,,
|
||||
3427.57 2677.43 321.125,251 253,stand,39.4232 110.505 0.0,,
|
||||
3478.93 2586.46 321.125,252 254,stand,47.0367 -37.4263 0.0,,
|
||||
3599.02 2530.92 321.125,253 255,stand,45.6964 -37.9866 0.0,,
|
||||
3659.61 2436.84 320.125,22 254,stand,38.3026 -33.3999 0.0,,
|
||||
3422.87 3232.24 320.125,242,stand,38.4125 18.4227 0.0,,
|
||||
3553.13 3230.1 320.125,258,stand,20.3839 175.978 0.0,,
|
||||
3791.66 3463.26 320.125,257 259,stand,26.4319 64.1038 0.0,,
|
||||
3947.69 3515.25 320.125,258 260 271,stand,34.3805 7.21111 0.0,,
|
||||
4069.78 3553.97 320.125,259 261,stand,33.0402 -28.3956 0.0,,
|
||||
4171.99 3539.19 320.125,260 262,stand,27.5525 1.273 0.0,,
|
||||
4289.77 3530.84 320.125,261 263,stand,29.6783 -8.46638 0.0,,
|
||||
4455.02 3481.28 320.125,262 264,stand,36.1768 -51.8074 0.0,,
|
||||
4512.93 3323.46 320.125,263 265,stand,31.8097 -86.1837 0.0,,
|
||||
4506.32 3232.49 320.125,264 266,stand,38.5278 -46.4296 0.0,,
|
||||
4532.65 3147.79 320.125,20 265 267 272,stand,38.6377 -81.8166 0.0,,
|
||||
4391.59 3098.49 320.125,9 266 268,stand,45.1306 169.924 0.0,,
|
||||
4182.78 3145.0 320.125,267 269 270,stand,41.8842 81.5666 0.0,,
|
||||
3998.49 2777.42 320.125,22 268,stand,29.4531 -122.993 0.0,,
|
||||
3983.46 3078.91 320.125,8 268 271,stand,27.2174 -164.505 0.0,,
|
||||
3888.79 3236.44 320.125,8 250 259 270,stand,32.3645 122.705 0.0,,
|
||||
5003.2 3095.09 320.125,266 273,stand,33.6005 -11.1965 0.0,,
|
||||
5320.98 2781.13 320.125,17 272 274,stand,26.6571 -45.0179 0.0,,
|
||||
5014.5 2729.88 320.125,18 273,stand,30.3485 -149.058 0.0,,
|
||||
|
@@ -0,0 +1,258 @@
|
||||
257
|
||||
750.161 -4288.38 2443.03,1 3 5,stand,31.2494 97.5433 0.0,,
|
||||
335.252 -4342.31 2441.13,0 2 104,stand,39.5331 97.9938 0.0,,
|
||||
81.2606 -4103.64 2444.13,1 5 104,stand,21.8396 -48.4869 0.0,,
|
||||
374.168 -3890.88 2441.13,0 4 6 7 44,stand,29.9036 91.012 0.0,,
|
||||
303.96 -3888.66 2448.13,3,stand,28.8983 85.1892 0.0,,
|
||||
357.927 -4150.38 2439.03,0 2,stand,26.9922 94.0277 0.0,,
|
||||
796.87 -3443.64 2436.13,3 16 20 44,stand,22.6251 90.144 0.0,,
|
||||
380.25 -3795.04 2441.04,3 8,stand,29.9036 67.2211 0.0,,
|
||||
280.626 -3802.51 2441.01,7 9,stand,32.4799 77.8614 0.0,,
|
||||
0.0506115 -3919.59 2444.13,8 10 20 21,stand,29.9036 -89.1913 0.0,,
|
||||
-11.4286 -4009.04 2452.13,9 12,stand,36.6217 -89.043 0.0,,
|
||||
-146.762 -4073.16 2452.13,12,stand,41.8842 -132.269 0.0,,
|
||||
11.2458 -4134.47 2452.13,10 11 13 14 15,stand,21.5045 17.0081 0.0,,
|
||||
-143.103 -4353.56 2452.13,12 14 15,stand,52.4146 78.3722 0.0,,
|
||||
-32.0777 -4279.08 2452.13,12 13,stand,34.9408 48.1708 0.0,,
|
||||
-100.151 -4189.66 2452.13,12 13,stand,29.2334 57.5806 0.0,,
|
||||
32.3598 -3304.58 2443.62,6 17 20 76,stand,28.8983 52.2412 0.0,,
|
||||
276.667 -3231.89 2435.48,16 19 20,stand,28.6731 76.0926 0.0,,
|
||||
283.865 -3159.88 2435.44,19 22,stand,39.7583 -12.8198 0.0,,
|
||||
46.7809 -3245.64 2443.73,17 18 73 74 79,stand,29.9036 8.68044 0.0,,
|
||||
346.478 -3487.35 2435.14,6 9 16 17 22 24 76,stand,20.9442 96.2195 0.0,,
|
||||
-172.36 -3832.03 2444.13,9,stand,40.7635 -30.2881 0.0,,
|
||||
494.006 -2905.46 2435.24,18 20 23 24,stand,17.923 92.6709 0.0,,
|
||||
810.532 -2694.35 2436.13,22 70,stand,35.5011 85.0519 0.0,,
|
||||
819.266 -2918.85 2444.13,20 22 36,stand,17.6978 87.403 0.0,,
|
||||
1004.66 -2590.74 2446.13,26 27 29,stand,32.0294 73.4723 0.0,,
|
||||
1132.62 -2597.99 2446.13,25 27 29,stand,42.1094 28.6756 0.0,,
|
||||
1082.67 -2721.7 2446.13,25 26 28 29,stand,41.8842 -109.961 0.0,,
|
||||
1079.06 -2776.75 2442.13,27 35 72,stand,49.278 -85.8844 0.0,,
|
||||
1268.58 -2718.12 2446.13,25 26 27 30 33 34,stand,16.9122 -137.509 0.0,,
|
||||
1266.73 -2881.47 2446.13,29 33,stand,46.1414 -114.888 0.0,,
|
||||
1316.42 -2986.87 2446.13,32 33,stand,19.1534 -136.949 0.0,,
|
||||
1399.26 -2999.87 2446.13,31 33,stand,29.2334 -132.807 0.0,,
|
||||
1367.22 -2805.07 2446.13,29 30 31 32,stand,21.8396 148.58 0.0,,
|
||||
1367.37 -2706.63 2446.13,29,stand,40.9888 -154.532 0.0,,
|
||||
967.3 -2955.63 2442.13,28 36 72,stand,26.2067 -151.396 0.0,,
|
||||
900.698 -3104.85 2443.38,24 35 37 69 72,stand,30.1288 55.4053 0.0,,
|
||||
910.675 -3367.42 2441.03,36 38,stand,31.5845 -88.0487 0.0,,
|
||||
822.387 -3400.94 2436.13,37,stand,56.5564 46.5558 0.0,,
|
||||
913.779 -3935.41 2443.93,40 43,stand,36.2866 92.0227 0.0,,
|
||||
823.486 -3942.11 2443.79,39 44,stand,41.8842 81.723 0.0,,
|
||||
909.191 -3863.39 2436.13,42,stand,46.5863 86.8756 0.0,,
|
||||
1006.33 -3871.83 2436.13,41 43,stand,36.2866 175.755 0.0,,
|
||||
1009.83 -3968.69 2442.75,39 42 45 55,stand,32.9248 135.441 0.0,,
|
||||
765.461 -3906.55 2436.01,3 6 40,stand,52.9694 -27.9919 0.0,,
|
||||
998.445 -4039.06 2452.13,43 46 47 50,stand,39.8682 91.1987 0.0,,
|
||||
1124.57 -4026.81 2452.13,45,stand,18.3679 96.0162 0.0,,
|
||||
882.515 -4050.95 2452.13,45 48 53 54,stand,56.5564 -88.0542 0.0,,
|
||||
885.118 -4243.68 2452.13,47 49 51 52 54,stand,37.8522 -73.7225 0.0,,
|
||||
1131.72 -4302.62 2452.56,48 51 52,stand,49.3878 -69.1302 0.0,,
|
||||
1020.95 -4110.88 2452.13,45 54,stand,38.1873 57.3004 0.0,,
|
||||
1017.88 -4229.13 2452.13,48 49 52,stand,40.2032 -93.3221 0.0,,
|
||||
859.125 -4320.88 2452.13,48 49 51,stand,63.2745 18.3319 0.0,,
|
||||
859.141 -4019.13 2452.13,47,stand,35.0562 91.4954 0.0,,
|
||||
913.086 -4110.88 2452.13,47 48 50,stand,30.4639 69.3195 0.0,,
|
||||
1105.28 -3964.72 2442.85,43 56,stand,37.182 72.6758 0.0,,
|
||||
1261.35 -3871.61 2436.13,55 58,stand,10.639 102.69 0.0,,
|
||||
1372.05 -3878.8 2436.13,58 59 64,stand,20.6091 150.173 0.0,,
|
||||
1445.81 -3972.68 2442.48,56 57 59 64,stand,19.3732 103.921 0.0,,
|
||||
1450.23 -3686.0 2443.44,57 58 60 64,stand,27.2174 177.947 0.0,,
|
||||
1340.6 -3686.03 2436.13,59,stand,18.8184 113.55 0.0,,
|
||||
1459.1 -3331.98 2443.37,63 64 65 66,stand,24.3005 117.802 0.0,,
|
||||
1305.96 -3318.13 2436.13,63,stand,23.4052 105.706 0.0,,
|
||||
1368.08 -3318.13 2436.13,61 62,stand,23.4052 91.2646 0.0,,
|
||||
1468.03 -3645.18 2443.58,57 58 59 61,stand,24.8608 179.842 0.0,,
|
||||
1435.43 -3269.04 2443.21,61 66,stand,13.1055 176.595 0.0,,
|
||||
1447.51 -3089.2 2442.52,61 65 67 72,stand,23.1854 103.547 0.0,,
|
||||
1452.67 -2530.56 2436.93,66 68,stand,33.8202 155.172 0.0,,
|
||||
982.773 -2527.85 2441.36,67 71,stand,46.1414 -174.143 0.0,,
|
||||
886.008 -2589.97 2442.75,36 71,stand,28.8928 -89.4824 0.0,,
|
||||
889.874 -2690.75 2442.68,23,stand,44.9109 104.926 0.0,,
|
||||
886.168 -2528.21 2442.48,68 69 217,stand,40.9888 -47.1191 0.0,,
|
||||
1095.07 -3099.95 2442.81,28 35 36 66,stand,27.5525 92.5995 0.0,,
|
||||
3.73159 -3050.31 2444.13,19 74,stand,35.611 66.7102 0.0,,
|
||||
-292.671 -2965.06 2442.08,19 73 75 79,stand,31.4691 83.2501 0.0,,
|
||||
-351.528 -2944.2 2441.94,74 78 79 81,stand,21.8396 -42.4774 0.0,,
|
||||
376.744 -3672.06 2435.13,16 20,stand,34.9408 159.759 0.0,,
|
||||
-1024.88 -2828.02 2444.81,78 81,stand,25.6464 14.0912 0.0,,
|
||||
-516.142 -2810.36 2442.78,75 77 79 81,stand,35.3912 -8.8977 0.0,,
|
||||
-282.877 -2884.77 2442.1,19 74 75 78 81,stand,43.0048 -34.0948 0.0,,
|
||||
-868.878 -1982.71 2439.07,81 82,stand,34.1553 -53.9966 0.0,,
|
||||
-830.323 -2769.91 2445.41,75 77 78 79 80,stand,28.8928 -172.028 0.0,,
|
||||
-541.917 -1958.39 2421.65,80 83 99,stand,37.2919 0.286889 0.0,,
|
||||
-435.878 -1960.34 2416.57,82 84 85 86 87 88,stand,29.0082 129.069 0.0,,
|
||||
-435.501 -1713.5 2404.17,83 86 89 92,stand,31.134 92.0007 0.0,,
|
||||
-275.956 -1702.63 2391.71,83 86 95,stand,20.274 177.002 0.0,,
|
||||
-355.202 -1733.61 2399.94,83 84 85,stand,24.3005 56.3941 0.0,,
|
||||
-266.23 -1850.11 2399.37,83 88,stand,34.2706 112.276 0.0,,
|
||||
-236.318 -1955.38 2401.36,83 87,stand,34.3805 -59.3964 0.0,,
|
||||
-476.573 -1553.99 2397.09,84 90 91 92,stand,39.0826 90.545 0.0,,
|
||||
-307.167 -1448.26 2376.28,89 91 92,stand,22.6251 89.9847 0.0,,
|
||||
-291.258 -1663.2 2390.6,89 90 92,stand,55.661 25.7093 0.0,,
|
||||
-441.135 -1645.01 2399.52,84 89 90 91 111 226,stand,47.9321 2.41824 0.0,,
|
||||
-240.875 -1339.63 2356.89,94 95,stand,46.4764 15.6568 0.0,,
|
||||
-160.386 -1339.62 2344.93,93 95 228,stand,44.2352 -60.2698 0.0,,
|
||||
-228.296 -1714.29 2385.84,85 93 94 227,stand,48.7177 164.565 0.0,,
|
||||
331.484 -2512.79 2433.07,103,stand,26.8768 140.071 0.0,,
|
||||
251.111 -2421.37 2432.71,99 103 223,stand,28.783 -47.1686 0.0,,
|
||||
22.43 -2501.12 2431.21,99,stand,27.6624 99.7516 0.0,,
|
||||
76.9709 -2434.91 2431.92,82 97 98 100 102,stand,26.4319 146.004 0.0,,
|
||||
-302.211 -2043.45 2411.4,99,stand,50.1733 84.6015 0.0,,
|
||||
65.3749 -2161.6 2413.71,102,stand,54.4251 -48.2892 0.0,,
|
||||
65.3746 -2328.88 2428.01,99 101,stand,34.8309 10.9546 0.0,,
|
||||
712.374 -2337.48 2431.56,96 97,stand,29.5685 70.2259 0.0,,
|
||||
165.532 -4316.88 2436.13,1 2 105,stand,43.9001 72.9505 0.0,,
|
||||
169.77 -3487.28 2436.13,104 106,stand,36.3965 91.2317 0.0,,
|
||||
188.928 -2195.69 2414.16,105 107 224,stand,39.0826 92.572 0.0,,
|
||||
176.334 -748.161 2290.09,106 108 109 111 113 227,stand,29.4531 99.411 0.0,,
|
||||
347.445 -685.461 2289.51,107 109 112 113 120,stand,36.8469 89.4464 0.0,,
|
||||
165.87 -365.251 2280.0,107 108 110 113 125,stand,29.0082 92.0227 0.0,,
|
||||
-408.059 -422.202 2310.35,109 111 112,stand,33.8202 -158.004 0.0,,
|
||||
-386.641 -713.286 2308.28,92 107 110 112,stand,32.1393 53.197 0.0,,
|
||||
-21.2095 -616.284 2282.99,108 110 111 113,stand,37.8522 107.057 0.0,,
|
||||
293.999 -553.128 2282.27,107 108 109 112 124,stand,20.8289 167.526 0.0,,
|
||||
317.64 -455.298 2280.13,123 124,stand,19.7137 -55.5896 0.0,,
|
||||
432.877 -512.799 2280.13,116 122 123,stand,22.6251 -104.863 0.0,,
|
||||
512.779 -642.542 2287.16,115 117 122,stand,21.8396 -141.371 0.0,,
|
||||
564.817 -744.653 2292.75,116 122,stand,17.2473 -103.968 0.0,,
|
||||
541.077 -850.457 2298.69,121 122,stand,12.4298 125.009 0.0,,
|
||||
448.461 -829.164 2297.9,120 121,stand,23.0701 51.7688 0.0,,
|
||||
390.919 -751.397 2293.12,108 119,stand,21.2793 107.541 0.0,,
|
||||
464.948 -902.629 2301.72,118 119,stand,28.5577 71.709 0.0,,
|
||||
619.448 -818.249 2296.82,115 116 117 118 205 206 207,stand,24.6411 163.538 0.0,,
|
||||
369.609 -404.554 2280.13,114 115,stand,22.735 -100.15 0.0,,
|
||||
236.465 -482.064 2280.13,113 114,stand,22.5098 -10.0018 0.0,,
|
||||
171.173 732.417 2268.13,109 126 150 175 189 207 248 249,stand,31.9196 85.9308 0.0,,
|
||||
647.705 746.206 2268.13,125 127 189 207 236,stand,30.6836 67.3419 0.0,,
|
||||
651.544 1534.56 2268.13,126 128 131 132 135 176 177 185 238,stand,31.0242 91.2976 0.0,,
|
||||
644.441 2335.17 2268.13,127 135,stand,19.0381 -96.239 0.0,,
|
||||
-233.312 2359.48 2272.93,130,stand,23.6304 -27.1515 0.0,,
|
||||
160.007 2290.33 2268.06,129 131 132 133 134 136,stand,29.7882 -5.65124 0.0,,
|
||||
323.3 1615.73 2268.04,127 130 132 135 175,stand,26.4319 108.535 0.0,,
|
||||
-44.454 1877.29 2269.38,127 130 131 134 136 137,stand,23.6304 5.87344 0.0,,
|
||||
450.795 1992.94 2268.13,130 134 135,stand,27.8876 100.647 0.0,,
|
||||
412.967 2334.53 2274.13,130 132 133 136,stand,46.5863 61.8982 0.0,,
|
||||
599.289 2010.79 2268.13,127 128 131 133 244,stand,23.9655 117.44 0.0,,
|
||||
356.434 1981.56 2274.13,130 132 134,stand,43.5651 65.2216 0.0,,
|
||||
-191.338 1828.75 2289.97,132 138,stand,27.4371 -150.704 0.0,,
|
||||
-271.607 1677.77 2285.18,137 139,stand,34.6057 -91.4655 0.0,,
|
||||
-272.171 1548.32 2275.9,138 140 141 142 167,stand,32.2546 -84.967 0.0,,
|
||||
-191.125 1292.1 2275.84,139 141 142 143 165,stand,32.9248 -63.7964 0.0,,
|
||||
-148.995 1620.7 2277.31,139 140 167,stand,31.3593 -28.3325 0.0,,
|
||||
-354.339 1591.12 2282.13,139 140 165,stand,22.0648 -25.7233 0.0,,
|
||||
-727.606 1344.88 2287.19,140 144 165 167,stand,41.214 -81.5228 0.0,,
|
||||
-682.875 1042.87 2297.99,143 145,stand,32.5897 35.8386 0.0,,
|
||||
-588.232 1051.22 2286.79,144 146 165 167,stand,34.2706 -84.5166 0.0,,
|
||||
-583.533 975.389 2285.13,145 147 151,stand,37.7423 -90.7843 0.0,,
|
||||
-807.807 946.461 2285.13,146 148,stand,37.2919 -176.34 0.0,,
|
||||
-694.553 572.552 2285.13,147 149,stand,31.8042 -83.2806 0.0,,
|
||||
-524.153 511.387 2285.13,148 150,stand,30.2386 5.19228 0.0,,
|
||||
-241.272 602.553 2283.07,125 149 168 169 171 172 174 248,stand,42.1094 -1.19079 0.0,,
|
||||
-585.503 720.067 2429.13,146 152 153 160 161,stand,40.3186 -101.633 0.0,,
|
||||
-725.167 541.147 2429.13,151 153 160 161 162 164,stand,48.042 -111.829 0.0,,
|
||||
-558.658 670.894 2429.13,151 152 154 160 161 162,stand,43.0048 31.6199 0.0,,
|
||||
-486.865 668.527 2429.13,153 155 156 157 159 160 163,stand,39.0826 8.77932 0.0,,
|
||||
-311.128 540.365 2429.13,154 156 158 159 163,stand,34.0454 2.05569 0.0,,
|
||||
-309.125 588.186 2429.13,154 155 157 158 159 163,stand,30.9088 1.1603 0.0,,
|
||||
-383.74 725.044 2429.13,154 156 158 163,stand,43.1146 -102.402 0.0,,
|
||||
-382.874 511.625 2429.13,155 156 157 163,stand,79.9573 -5.41504 0.0,,
|
||||
-510.776 544.125 2429.13,154 155 156 163,stand,51.4038 10.1526 0.0,,
|
||||
-740.528 723.964 2429.13,151 152 153 154 161 162,stand,24.0753 -87.8345 0.0,,
|
||||
-598.049 547.217 2429.13,151 152 153 160 162 164,stand,39.0826 -69.9158 0.0,,
|
||||
-790.874 629.724 2429.13,152 153 160 161 164,stand,27.3273 5.1813 0.0,,
|
||||
-510.875 733.875 2429.13,154 155 156 157 158 159,stand,35.2759 9.42751 0.0,,
|
||||
-790.875 468.125 2429.13,152 161 162,stand,32.2546 54.2298 0.0,,
|
||||
-311.431 1244.16 2277.14,140 142 143 145 166 168,stand,55.5457 -64.5435 0.0,,
|
||||
-439.379 807.492 2285.13,165 167 168,stand,28.2227 -4.06921 0.0,,
|
||||
-461.819 1065.64 2281.72,139 141 143 145 166 168 170,stand,27.3273 -138.679 0.0,,
|
||||
-255.387 788.198 2283.44,150 165 166 167 169,stand,38.0774 -22.2955 0.0,,
|
||||
-130.372 827.737 2274.2,150 168 170,stand,46.3611 -95.6403 0.0,,
|
||||
-127.125 1063.43 2276.09,167 169,stand,42.7795 -47.0477 0.0,,
|
||||
-447.852 718.463 2299.13,150,stand,28.4479 165.137 0.0,,
|
||||
-130.125 336.462 2289.99,150 173 174,stand,33.4851 -68.9984 0.0,,
|
||||
-368.875 331.125 2301.72,172 174,stand,37.4017 89.5453 0.0,,
|
||||
-251.973 427.107 2283.51,150 172 173,stand,32.6996 72.7527 0.0,,
|
||||
107.031 1200.52 2268.02,125 131 176 256,stand,19.9335 88.1555 0.0,,
|
||||
320.46 1166.82 2276.13,127 175 256,stand,25.4211 27.923 0.0,,
|
||||
977.875 1650.98 2268.13,127 184,stand,34.0454 -15.1654 0.0,,
|
||||
1022.13 1647.26 2268.13,181 182 183 184,stand,22.2845 -179.631 0.0,,
|
||||
1435.9 1469.04 2268.13,180 183,stand,18.5931 -174.066 0.0,,
|
||||
1427.82 1528.96 2268.13,179 183,stand,33.9301 179.446 0.0,,
|
||||
1375.37 1478.87 2268.13,178 182 184,stand,36.3965 -31.0516 0.0,,
|
||||
1366.13 1534.61 2268.13,178 181 183 184,stand,32.9248 -15.5994 0.0,,
|
||||
1395.3 1666.31 2268.13,178 179 180 182 184,stand,58.9075 -84.4672 0.0,,
|
||||
1007.71 1461.96 2268.13,177 178 181 182 183 234,stand,36.1713 103.745 0.0,,
|
||||
1733.0 1569.1 2268.13,127 186 188 189 195 242,stand,30.799 3.7366 0.0,,
|
||||
2223.73 1568.26 2268.13,185 187 194 195,stand,36.3965 -4.66797 0.0,,
|
||||
2202.61 2452.23 2268.13,186 188,stand,31.8042 -174.291 0.0,,
|
||||
1806.88 2405.83 2268.13,185 187 241 242,stand,35.5011 -169.705 0.0,,
|
||||
1772.53 924.193 2268.13,125 126 185 190 194 229 236,stand,31.6943 -89.8615 0.0,,
|
||||
1855.79 462.044 2268.13,189 191 193,stand,22.3999 -52.453 0.0,,
|
||||
1895.09 -427.226 2268.13,190 192 202,stand,26.8768 -89.1803 0.0,,
|
||||
2263.85 -243.161 2268.13,191 199,stand,32.1393 2.77529 0.0,,
|
||||
2280.6 493.084 2268.13,190 194,stand,35.3857 1.84695 0.0,,
|
||||
2151.91 788.967 2268.13,186 189 193,stand,30.6836 134.254 0.0,,
|
||||
2639.31 1459.58 2274.13,185 186 196,stand,32.5897 0.990014 0.0,,
|
||||
2802.77 1461.61 2292.13,195 197,stand,33.595 -168.831 0.0,,
|
||||
3326.58 1456.56 2292.13,196 198,stand,35.8362 4.94509 0.0,,
|
||||
3336.25 1795.46 2292.13,197,stand,43.9001 70.2313 0.0,,
|
||||
2528.14 -239.658 2292.13,192 200,stand,26.767 -3.90442 0.0,,
|
||||
3051.74 -239.24 2292.13,199 201,stand,40.4285 38.9862 0.0,,
|
||||
3050.89 95.5521 2292.13,200,stand,44.4604 -0.322874 0.0,,
|
||||
1586.78 -513.642 2268.13,191 203 252,stand,37.2919 179.836 0.0,,
|
||||
1428.23 -489.833 2323.23,202 204 252,stand,21.2793 -179.378 0.0,,
|
||||
1319.47 -497.497 2333.75,203 205 206 255,stand,22.0593 -175.566 0.0,,
|
||||
857.262 -128.107 2286.13,122 204 207 255,stand,32.5897 153.118 0.0,,
|
||||
865.866 -1179.76 2322.87,122 204 209 210 219 228,stand,22.9547 53.6859 0.0,,
|
||||
603.367 126.484 2283.93,122 125 126 205 248 255,stand,16.9122 -93.075 0.0,,
|
||||
1209.31 -1641.52 2439.34,218,stand,32.8094 -91.7346 0.0,,
|
||||
1214.93 -1825.44 2446.07,206 210 214,stand,34.0454 -96.4423 0.0,,
|
||||
1228.26 -1683.26 2443.17,206 209 214,stand,31.9141 100.208 0.0,,
|
||||
1213.44 -1901.82 2447.63,212 214 215,stand,31.4691 102.74 0.0,,
|
||||
1133.39 -1874.67 2438.93,211 215 216 217 218,stand,23.6304 43.0512 0.0,,
|
||||
1269.85 -1849.39 2446.72,214,stand,27.6624 139.698 0.0,,
|
||||
1386.32 -1784.82 2438.76,209 210 211 213 217,stand,26.0913 -162.964 0.0,,
|
||||
1140.09 -2471.88 2444.51,211 212 216,stand,32.9248 -112.339 0.0,,
|
||||
1037.39 -2468.79 2445.47,212 215,stand,27.9974 -101.479 0.0,,
|
||||
909.401 -2457.14 2442.81,71 212 214 222,stand,29.6783 -63.2965 0.0,,
|
||||
931.625 -1587.63 2362.53,208 212,stand,31.2439 132.815 0.0,,
|
||||
930.012 -1527.38 2357.42,206 225,stand,12.8802 -74.3268 0.0,,
|
||||
386.878 -1858.33 2378.35,221 224,stand,14.3359 -81.1493 0.0,,
|
||||
449.254 -1846.11 2370.7,220 225,stand,17.3572 -92.1246 0.0,,
|
||||
453.975 -1925.2 2378.55,217 223 225,stand,34.9408 78.6194 0.0,,
|
||||
394.044 -1938.01 2379.94,97 222 224,stand,18.2526 92.7313 0.0,,
|
||||
355.574 -1901.86 2375.98,106 220 223,stand,16.7969 5.28018 0.0,,
|
||||
498.479 -1895.01 2375.24,219 221 222,stand,18.5876 -176.78 0.0,,
|
||||
-290.559 -924.377 2317.25,92 227,stand,17.0221 -63.8843 0.0,,
|
||||
-43.7848 -1133.55 2321.38,95 107 226,stand,28.5577 81.0254 0.0,,
|
||||
3.73614 -1300.56 2323.15,94 206,stand,30.2332 112.122 0.0,,
|
||||
1620.12 1115.42 2279.28,189 230 231,stand,64.1699 169.669 0.0,,
|
||||
1540.1 1129.18 2288.13,229 231,stand,34.9408 174.486 0.0,,
|
||||
1234.04 1157.54 2288.13,229 230 232 233,stand,32.6996 83.8983 0.0,,
|
||||
1239.6 1318.41 2288.13,231 233 237,stand,40.7635 107.75 0.0,,
|
||||
1137.46 1330.43 2288.13,231 232 234 237,stand,48.3771 -179.455 0.0,,
|
||||
1032.24 1340.14 2276.13,184 233 235 238,stand,47.9266 -57.5397 0.0,,
|
||||
1057.67 1092.93 2285.13,234 236,stand,39.7528 -90.0922 0.0,,
|
||||
1066.0 894.823 2268.13,126 189 235 238,stand,28.1073 -14.0558 0.0,,
|
||||
1508.61 1356.81 2288.13,232 233,stand,27.4371 -174.187 0.0,,
|
||||
477.225 1025.23 2268.13,127 234 236,stand,22.8448 20.5622 0.0,,
|
||||
1024.58 2784.52 2322.6,240 244,stand,39.978 -93.6023 0.0,,
|
||||
1384.02 2726.52 2322.43,239 241,stand,39.6429 -14.649 0.0,,
|
||||
1441.09 2432.66 2291.2,188 240 246,stand,32.3645 -7.36511 0.0,,
|
||||
2004.48 2046.3 2274.13,185 188 243,stand,30.3485 -8.8208 0.0,,
|
||||
1620.0 2113.6 2268.13,242 246,stand,23.1799 -167.809 0.0,,
|
||||
1006.27 2150.98 2313.82,135 239 245 246,stand,39.3079 -134.208 0.0,,
|
||||
959.571 1766.53 2296.41,244 247,stand,32.9248 -54.3591 0.0,,
|
||||
1446.94 2089.7 2288.58,241 243 244 247,stand,32.3645 20.0073 0.0,,
|
||||
1427.68 1749.86 2287.88,245 246,stand,49.6075 73.3185 0.0,,
|
||||
342.026 133.199 2288.13,125 150 207 249,stand,23.2898 -12.4078 0.0,,
|
||||
-6.84332 144.721 2283.62,125 248,stand,18.8129 -40.8624 0.0,,
|
||||
1456.77 703.563 2290.93,251 253 254,stand,29.3378 42.6172 0.0,,
|
||||
1510.01 165.734 2290.97,250 252,stand,45.3503 -55.0403 0.0,,
|
||||
1510.36 -289.941 2292.19,202 203 251,stand,38.9673 -73.6292 0.0,,
|
||||
985.032 681.093 2298.19,250 254 255,stand,34.0399 -121.524 0.0,,
|
||||
1341.54 373.504 2345.44,250 253 255,stand,37.4017 -17.2693 0.0,,
|
||||
963.876 216.177 2310.81,204 205 207 253 254,stand,28.3325 -82.5336 0.0,,
|
||||
221.072 1025.23 2268.13,175 176,stand,14.1107 -36.3086 0.0,,
|
||||
|
@@ -0,0 +1,277 @@
|
||||
276
|
||||
7997.49 -2468 -31.8889,1 34,stand,13.7769 -172.745 0,,
|
||||
7775.19 -2408.52 17.2254,0 2,stand,13.2166 -177.337 0,,
|
||||
7686.43 -2387.47 -12.4809,1 3 208,stand,19.259 155.004 0,,
|
||||
7398.23 -2191.52 -3.24538,2,stand,22.1759 161.948 0,,
|
||||
7707.85 -1580.2 -18.9507,5 202 6 33 196,stand,19.8193 76.8367 0,,
|
||||
7988.41 -1373.46 -36.9507,4 6 201,stand,22.3956 47.8328 0,,
|
||||
7983.07 -1606.21 -30.0532,5 34 4,stand,23.291 -18.3488 0,,
|
||||
7531.26 -1887.59 -15.875,205 34 33,stand,13.2166 168.471 0,,
|
||||
-3464.07 -2128.57 -6.97593,9 84 10,stand,14.1119 -137.603 0,,
|
||||
-4096.21 -2407.93 3.67072,8 79 80 81,stand,12.876 -29.2004 0,,
|
||||
-2578.7 -1969.24 0.638404,11 8 95 87 73 99,stand,12.5409 3.16531 0,,
|
||||
-2017.58 -1997.25 -9.97426,10 100 95 103,stand,11.7609 3.61025 0,,
|
||||
-1640.68 -2017.75 2.13835,35 36 42 103,stand,15.7874 -4.67346 0,,
|
||||
-1185.86 -1753.64 5.16193,40 41 42 45,stand,13.7769 19.9634 0,,
|
||||
43.4188 -1573.02 -41.548,15 59 108 124 127 128,stand,7.16858 39.1071 0,,
|
||||
303.766 -1255.12 -19.6793,14 108 111 120,stand,15.3424 17.0465 0,,
|
||||
913.864 -1403.24 -4.24813,17 117 120 121,stand,11.7609 1.70413 0,,
|
||||
1231.53 -1593.8 -26.4372,16 116 117 122,stand,14.3317 -64.4775 0,,
|
||||
1272.35 -1989.78 -43.9182,19 122 139 141,stand,18.0286 -27.525 0,,
|
||||
1518.56 -1987.69 13.3692,18 20,stand,5.71289 5.96133 0,,
|
||||
1784.98 -1989 69.9066,19 21,stand,18.2538 -4.89868 0,,
|
||||
2046.02 -2008.81 -68.2138,20 22 142 270,stand,18.0286 -4.34387 0,,
|
||||
2441.53 -2269.1 -167.67,21 267 268 266 142,stand,13.3264 -37.3798 0,,
|
||||
3268.45 -2152.38 -250.195,258 259 260 262 267 275,stand,10.1898 18.2825 0,,
|
||||
3760.26 -1975.08 -247.323,25 257 168 259,stand,15.1172 11.1139 0,,
|
||||
4277.84 -2172.49 -262.057,24 247 248 246 257,stand,11.4203 -26.5143 0,,
|
||||
4929.2 -2223.83 -203.539,27 240 247,stand,6.71814 0.924096 0,,
|
||||
5444.79 -2081.16 -15.7844,26 238 248,stand,15.4523 10.9986 0,,
|
||||
6028.39 -1840.35 -19.6366,29 191 192 221 238,stand,12.6563 25.1105 0,,
|
||||
6546.72 -1815.85 -18.9255,28 30 195 234,stand,17.4683 -2.99804 0,,
|
||||
6788.01 -2097.97 -5.45999,29 31 223 234,stand,13.3264 -65.1477 0,,
|
||||
6887.08 -2236.87 2.71602,30 32 218 223,stand,17.2485 -11.062 0,,
|
||||
7241.97 -2162.29 -4.08328,31 33 206 209 211 234,stand,13.8867 25.5609 0,,
|
||||
7731.41 -2027.54 -16.1597,32 34 7 4,stand,15.7874 10.1032 0,,
|
||||
8146.58 -2065.58 -53.9798,33 7 207 0 6,stand,18.0286 -17.4451 0,,
|
||||
-1385.69 -2449.82 1.67556,12 36 38 66,stand,15.5676 -123.941 0,,
|
||||
-1695.88 -2730.02 -3.5548,12 37 35 67,stand,40.6494 175.843 0,,
|
||||
-1794.36 -2876.51 -2.89316,36 67 70,stand,23.0713 52.7356 0,,
|
||||
-1152.91 -2500.95 8.80752,35 39 65,stand,25.1971 68.5614 0,,
|
||||
-1074.54 -2373.94 8.31558,38 40,stand,29.2291 -118.305 0,,
|
||||
-1075.06 -1718.14 2.41486,39 13 45 60,stand,27.323 173.267 0,,
|
||||
-1194.38 -2451.93 11.9032,13,stand,16.2378 68.7811 0,,
|
||||
-1391.53 -1851.51 -6.12895,13 12 43,stand,28.6688 -54.068 0,,
|
||||
-1510.16 -1596.76 -3.12714,42 44,stand,22.7307 -61.1212 0,,
|
||||
-1447.89 -1440.05 -10.1046,43 45 47 57,stand,22.9559 -108.379 0,,
|
||||
-1267.29 -1479.2 -17.0432,44 46 13 40,stand,23.291 56.6907 0,,
|
||||
-1000.94 -1161.88 -7.60997,45 55 56 60,stand,24.527 -18.5657 0,,
|
||||
-1666.18 -1469.47 14.1194,44 48,stand,18.924 -1.43249 0,,
|
||||
-1635.66 -1391.7 3.74534,47 49,stand,25.5322 -109.461 0,,
|
||||
-1845.03 -1367.97 6.64604,48 50 51 101,stand,23.7415 175.283 0,,
|
||||
-2128.45 -1445.7 -20.1528,49 94 95 96,stand,23.1812 153.667 0,,
|
||||
-1831.6 -1020.07 -16.7679,49 52 94,stand,19.4843 87.9358 0,,
|
||||
-1839.24 -748.375 7.62083,51 53 93,stand,15.0073 8.64748 0,,
|
||||
-1410.09 -711.88 -11.1903,52 54 56 57,stand,11.0852 -96.0577 0,,
|
||||
-1156.05 -728.803 6.23554,53 55,stand,22.2858 -53.7274 0,,
|
||||
-932.933 -944.533 6.048,54 46 56 58,stand,19.3744 -94.8273 0,,
|
||||
-1212.62 -964.179 7.12547,55 46 53 57,stand,12.5409 -36.0339 0,,
|
||||
-1420.41 -1141.59 2.39045,56 44 53,stand,15.0073 -89.5264 0,,
|
||||
-442.733 -941.853 1.57309,55 59 105 106,stand,13.5516 84.9805 0,,
|
||||
-454.906 -1575.85 -10.8484,58 14 60 107 132 128,stand,22.3956 93.006 0,,
|
||||
-802.897 -1648.94 -7.71045,59 40 61 46,stand,31.6901 7.37307 0,,
|
||||
-777.682 -1941.14 -1.97233,60 62 64,stand,17.3584 75.6091 0,,
|
||||
-585.786 -2093.38 -7.29199,61 63 130 131 132,stand,19.8193 -136.608 0,,
|
||||
-769.925 -2252.06 -6.09393,62 64 65,stand,24.8621 26.9672 0,,
|
||||
-901.223 -2043.08 1.52229,63 61,stand,23.5162 -25.7782 0,,
|
||||
-724.992 -2489.23 5.7488,63 38,stand,20.495 110.474 0,,
|
||||
-1267.33 -2645.41 0.70031,35 68,stand,21.275 -79.4189 0,,
|
||||
-1590.83 -2809.06 4.41965,36 68 37,stand,13.5516 -11.3312 0,,
|
||||
-1251.26 -2738.03 4.64531,67 66 69,stand,16.0126 88.562 0,,
|
||||
-1007.69 -2846.04 -6.17189,68,stand,10.9753 83.1842 0,,
|
||||
-1975.21 -2766.44 -8.9861,37 71 100,stand,18.3636 113.089 0,,
|
||||
-2241.15 -2811.65 1.2461,70 72 75 99,stand,15.0073 156.65 0,,
|
||||
-2591.26 -2611.29 6.04201,71 73 75 99,stand,20.495 61.9147 0,,
|
||||
-2867.52 -2416.8 -1.10452,72 74 10,stand,9.62952 22.0783 0,,
|
||||
-2996.14 -2672.83 1.23182,73 75 76,stand,13.4363 -8.16162 0,,
|
||||
-2556.54 -2709 9.87659,74 72 71,stand,20.3796 109.985 0,,
|
||||
-3251.3 -2858.04 -10.2314,74 77,stand,17.3584 47.2754 0,,
|
||||
-3511.98 -2660.66 -1.54474,76 78,stand,18.479 59.3713 0,,
|
||||
-3725.35 -2689.33 -7.54037,77 79 80,stand,23.0713 147.388 0,,
|
||||
-3871.92 -2543.17 -0.706622,78 9 80,stand,21.1652 136.754 0,,
|
||||
-3909.28 -2800.49 -6.99602,79 78 9,stand,14.6722 -84.3848 0,,
|
||||
-3826.36 -1721.97 -2.42833,9 82 84,stand,9.85474 95.9119 0,,
|
||||
-3397.13 -984.029 10.6828,81 83 90 97,stand,15.7874 51.7908 0,,
|
||||
-3332.04 -1189.24 -11.9979,82 84 89 97,stand,22.9559 -105.885 0,,
|
||||
-3534.17 -1778.85 -10.6736,83 81 8 85,stand,23.1812 -111.823 0,,
|
||||
-3213.04 -1726.86 -10.5998,84 86 89,stand,18.924 -16.7419 0,,
|
||||
-2965.92 -1585.39 -7.91932,85 87 89,stand,20.495 -2.96509 0,,
|
||||
-2768.26 -1602.89 5.58634,86 88 10 95,stand,22.9559 3.9783 0,,
|
||||
-2749.49 -1329.41 -0.81483,87 89 96 97,stand,22.3956 87.2986 0,,
|
||||
-3034.9 -1315.4 -6.58712,88 85 86 83 97,stand,16.6882 -71.2396 0,,
|
||||
-3363.68 -619.239 7.33558,82 91,stand,16.908 -73.8159 0,,
|
||||
-3028.03 -652.419 7.1311,90 98,stand,18.479 3.00601 0,,
|
||||
-2735.52 -595.924 6.09497,93 98,stand,19.259 -14.5776 0,,
|
||||
-2321.55 -762.804 -16.5214,92 52 94,stand,14.447 -32.4908 0,,
|
||||
-2223.02 -1121 12.6833,93 51 50,stand,13.8867 -65.3784 0,,
|
||||
-2136.22 -1682.55 -5.43646,50 10 87 11,stand,22.8461 150.942 0,,
|
||||
-2465.27 -1400.94 4.33798,50 88 97,stand,18.924 31.4496 0,,
|
||||
-2751.73 -855.103 -1.33282,96 98 82 83 89 88,stand,14.2218 -178.906 0,,
|
||||
-2870.69 -633.205 7.90679,97 91 92,stand,22.7307 70.7916 0,,
|
||||
-2211.18 -2419.85 5.86969,10 72 71 100,stand,19.4843 142.796 0,,
|
||||
-1981.96 -2277.14 -5.2989,99 70 11,stand,20.8301 -152.137 0,,
|
||||
-1799.6 -1452.6 13.1232,49 102,stand,35.9473 130.178 0,,
|
||||
-1795.14 -1925.61 13.6707,101 103,stand,51.5149 -126.006 0,,
|
||||
-1846.59 -1996.99 2.25074,102 12 11,stand,30.0146 85.1672 0,,
|
||||
-70.019 -642.529 -44.7891,105 106 108 111,stand,17.0233 -166.7 0,,
|
||||
-199.023 -1051.2 -21.9097,104 58 107,stand,18.3636 174.601 0,,
|
||||
-379.65 -632.655 -4.33782,58 104 107,stand,46.6974 -52.0245 0,,
|
||||
-383.439 -1337.22 -9.36269,106 105 59 108,stand,17.9187 3.18179 0,,
|
||||
16.2152 -1362.41 -41.6122,107 14 104 111 15 125,stand,25.1971 -105.303 0,,
|
||||
671.153 -776.94 -22.6902,110 111 112,stand,21.5002 -103.655 0,,
|
||||
807.851 -552.55 0.185258,109 111 119,stand,23.5162 -101.002 0,,
|
||||
375.886 -616.818 -21.9615,109 110 104 108 15,stand,38.6334 -89.2462 0,,
|
||||
755.586 -922.069 -21.2095,109 113 120,stand,11.8707 38.1897 0,,
|
||||
1239.92 -732.638 -5.79507,112 114 115 119,stand,25.9827 -175.104 0,,
|
||||
1523.88 -811.429 5.4975,113 115,stand,15.6775 -177.675 0,,
|
||||
1393.91 -1133.09 -8.58224,114 113 116 117 118,stand,18.5889 -121.458 0,,
|
||||
1446.69 -1563.57 -13.946,115 17,stand,33.9313 138.61 0,,
|
||||
1189.48 -1359.19 -9.81594,115 16 17 118 121,stand,17.6935 56.9763 0,,
|
||||
936.106 -1182.24 0.521158,117 115 119,stand,24.4116 108.266 0,,
|
||||
1081.21 -635.639 -6.10242,118 113 110,stand,63.3856 -93.866 0,,
|
||||
634.574 -1271.9 -7.47162,112 15 16,stand,18.7042 -99.0186 0,,
|
||||
1090.58 -1768.21 -28.4224,16 122 117 123,stand,18.924 118.346 0,,
|
||||
1270.47 -1843.78 -42.5414,121 18 17,stand,19.7095 141.379 0,,
|
||||
848.608 -1938.03 -22.1705,121 126 140 141,stand,16.463 -145.716 0,,
|
||||
424.661 -1556.39 -22.2125,14 125 126,stand,24.9719 175.535 0,,
|
||||
381.972 -1407.89 -19.1823,124 108,stand,34.2664 160.308 0,,
|
||||
526.522 -1775.6 -23.5358,124 127 128 123,stand,10.9753 169.828 0,,
|
||||
253.24 -1700.19 -40.2433,126 14 128,stand,23.9667 -9.01306 0,,
|
||||
151.543 -1997.8 -43.9418,127 126 129 131 132 14 59,stand,16.6882 -51.4587 0,,
|
||||
57.8346 -2358.99 -40.9229,128 130 134 135,stand,6.71814 89.419 0,,
|
||||
-276.805 -2437.11 -13.6299,129 62 131 133,stand,15.9027 118.873 0,,
|
||||
-244.387 -2200.44 -30.9198,130 62 128,stand,57.2278 -161.954 0,,
|
||||
-305.362 -1981.8 -24.7818,62 128 59,stand,19.2645 5.16482 0,,
|
||||
197.609 -2867.04 -37.3884,130 134,stand,12.876 122.411 0,,
|
||||
450.549 -2570.34 -21.666,133 135 129,stand,18.479 -64.939 0,,
|
||||
829.58 -2396.2 -10.3884,134 129 136 140,stand,13.8867 79.0753 0,,
|
||||
1108.92 -2391.04 -29.4165,135 137 139,stand,24.6368 -21.2299 0,,
|
||||
1419.41 -2575.14 -1.29686,136 138,stand,10.5249 126.932 0,,
|
||||
1683.67 -2315.17 6.55327,137 139,stand,12.9913 141.599 0,,
|
||||
1280.65 -2134.11 -44.2348,138 18 136 140,stand,23.1812 95.2362 0,,
|
||||
837.864 -2136.44 -21.8865,139 123 135 141,stand,24.6368 90.6439 0,,
|
||||
925.962 -2007.88 -22.0058,18 140 123,stand,15.5676 -142.552 0,,
|
||||
1923.46 -1668.98 2.30512,21 143 150 151 270 22,stand,20.7202 -79.9957 0,,
|
||||
1605.13 -1652.7 4.11119,142 144,stand,26.543 44.4959 0,,
|
||||
1748.81 -1069.14 0.75761,143 145,stand,23.5162 56.5918 0,,
|
||||
1804.06 -971.726 4.09743,144 146 150,stand,22.0605 55.6964 0,,
|
||||
1800.75 -622.895 -0.988559,145 147,stand,22.1759 74.1754 0,,
|
||||
1967.37 -636.772 -1.42683,146 148 149,stand,21.7255 -10.2655 0,,
|
||||
2380.67 -769.468 -165.484,147 149 152 153,stand,31.0199 -51.5851 0,,
|
||||
2135.18 -1028.56 -63.5124,147 150 151 148 152 273,stand,13.8867 -63.681 0,,
|
||||
1913.18 -1123.43 -9.66621,149 145 142,stand,12.5409 -176.23 0,,
|
||||
2172.69 -1371.26 -53.6524,142 149 152 270,stand,15.4523 -114.41 0,,
|
||||
2513.65 -1017.86 -221.188,148 153 149 151 156 157 273,stand,9.29443 100.268 0,,
|
||||
2525.42 -792.487 -209.206,152 148 154,stand,28.2184 49.6539 0,,
|
||||
2611.19 -656.676 -220.698,153 155,stand,22.1759 -103.32 0,,
|
||||
2941.92 -693.113 -233.15,154 156 161 166,stand,18.5889 -69.0533 0,,
|
||||
2888.86 -937.356 -235.732,152 155 157 166 167,stand,16.3477 -160.289 0,,
|
||||
2748.89 -1179.27 -236.471,156 152 158 270 268 273,stand,13.5516 41.6229 0,,
|
||||
3438.81 -1477.33 -198.007,157 159 160,stand,13.7769 -25.4541 0,,
|
||||
3410.7 -1610.19 -238.506,158 258 275 272,stand,36.958 -94.5526 0,,
|
||||
3546.94 -1325.54 -247.057,158 165 167 166 168,stand,22.3956 59.3164 0,,
|
||||
3322.72 -744.17 -235.494,155 162,stand,14.1119 -171.144 0,,
|
||||
3603.89 -867.108 -243.511,161 163 165 166,stand,18.2538 -20.5212 0,,
|
||||
3858.71 -770.998 -229.221,162 164,stand,15.7928 -65.6531 0,,
|
||||
4047.69 -1092.3 -244.057,163 165 170 171,stand,15.5676 -59.6051 0,,
|
||||
3794.23 -1263.41 -249.345,164 160 162 166 169 170,stand,15.1172 154.139 0,,
|
||||
3503.32 -1079.23 -224.811,165 156 155 160 162,stand,16.6882 84.4092 0,,
|
||||
3085.82 -1158.97 -247.416,160 156,stand,26.0925 59.7394 0,,
|
||||
3810.64 -1635.02 -242.649,160 169 24 258,stand,13.4363 -48.1793 0,,
|
||||
3935.71 -1594.78 -245.924,165 168 248,stand,19.2645 -153.895 0,,
|
||||
4243.83 -1410.17 -248.952,165 164 248 249,stand,16.0126 123.905 0,,
|
||||
4531.27 -930.845 -260.167,164 172 249 248,stand,13.8867 37.113 0,,
|
||||
4503.41 -342.721 -260.594,171 173 175 177,stand,12.0959 -107.423 0,,
|
||||
4141.29 -469.772 -236.633,172 174,stand,17.6935 -170.133 0,,
|
||||
2635.77 -4.61026 -234.34,173,stand,17.1332 -57.9242 0,,
|
||||
4509.54 1658.26 -260.177,172 176,stand,11.7609 -5.29419 0,,
|
||||
5245.67 1575.27 -20.2761,175 177,stand,28.559 -175.286 0,,
|
||||
5244.38 -722.23 -33.0381,176 172 178 179,stand,16.463 -93.1958 0,,
|
||||
5614.53 -1015.44 -11.1971,177 179 182,stand,23.0713 167.394 0,,
|
||||
5456.87 -1234.96 -25.375,178 177 180 181,stand,24.1919 -175.917 0,,
|
||||
5150.4 -1433.42 -93.7344,179 181 249,stand,27.6636 -142.25 0,,
|
||||
5583.93 -1605.62 -23.7149,180 179 182 191 237,stand,10.415 91.358 0,,
|
||||
5731.82 -1194.66 -14.7936,178 181 183,stand,20.6049 50.8185 0,,
|
||||
5870.07 -1016.9 -7.34456,182 184 187 186,stand,19.9347 127.426 0,,
|
||||
5668.32 -758.54 -9.25238,183 185,stand,18.0286 -2.13562 0,,
|
||||
5957.69 -719.966 -14.3555,184 186 188,stand,24.9719 -68.548 0,,
|
||||
5926.08 -943.472 -13.6459,185 187 183,stand,28.3337 -130.363 0,,
|
||||
6086.9 -1086.91 -10.298,186 183 188 190 193,stand,24.7467 127.761 0,,
|
||||
6235.32 -823.933 -23.1266,185 189 187,stand,19.9347 -82.0996 0,,
|
||||
6577.75 -807.276 -23.3627,188 193 194 197,stand,20.6049 -138.317 0,,
|
||||
5916.2 -1410.91 -25.9181,187 191 192,stand,11.5356 84.986 0,,
|
||||
5741.89 -1600.29 -25.0368,190 181 28 237,stand,23.5162 87.1887 0,,
|
||||
6019.66 -1468.26 -25.1851,190 28 193 231,stand,18.8141 -30.9528 0,,
|
||||
6242.49 -1290.33 -20.2327,192 187 189 194 231,stand,11.6455 -159.031 0,,
|
||||
6598.04 -1175.4 -18.5688,193 189 195 197,stand,20.1599 -70.2618 0,,
|
||||
6701.78 -1494.5 -20.1417,194 196 29 203,stand,15.5676 -67.4603 0,,
|
||||
7063.19 -1454.83 -14.8787,195 197 202 4 208,stand,16.1279 17.5025 0,,
|
||||
7013.4 -1116.57 -12.2173,196 194 189 198 202,stand,10.08 165.549 0,,
|
||||
7277.83 -889.688 -11.7228,197 199 202,stand,17.2485 -144.095 0,,
|
||||
7490.75 -796.536 -7.88935,198 200,stand,21.2805 -132.45 0,,
|
||||
7933.65 -831.963 -18.6555,199 201,stand,23.6316 -149.133 0,,
|
||||
8031.66 -970.612 -25.9501,200 5 202,stand,25.9827 179.507 0,,
|
||||
7513.94 -1220.7 -8.70139,201 4 198 196 197,stand,14.2218 24.4458 0,,
|
||||
6899.47 -1664.76 -8.57874,195 204,stand,30.0146 114.852 0,,
|
||||
7029.4 -1782.49 11.025,203 205,stand,29.339 -42.8235 0,,
|
||||
7210.7 -1930.12 -5.49519,204 7 206 208,stand,49.1638 160.435 0,,
|
||||
7302.05 -2047.92 -12.5417,205 32 208,stand,18.479 115.561 0,,
|
||||
8794.32 -2004.41 -86.2432,34,stand,12.0959 146.779 0,,
|
||||
7307.57 -1805.3 -17.4083,196 206 205 2,stand,17.0233 -50.047 0,,
|
||||
7346.23 -2377.82 3.66071,32 210,stand,10.8655 131.189 0,,
|
||||
7478.74 -2376.27 4.08789,209,stand,5.82275 133.655 0,,
|
||||
7188.67 -2465.04 -2.13417,32 212 216 213 218,stand,15.6775 -28.2391 0,,
|
||||
7516.38 -2586.81 -7.45113,211 213,stand,24.527 -47.7234 0,,
|
||||
7306.68 -2860.49 -7.99384,212 214 211 217,stand,18.2538 59.2999 0,,
|
||||
7673.49 -2885.11 -9.94269,213 215 216,stand,21.6156 179.798 0,,
|
||||
7853.46 -2828.89 -4.1813,214,stand,29.4543 127.948 0,,
|
||||
7662.61 -2559.68 25.0887,214 211,stand,26.8781 -149.182 0,,
|
||||
7107.93 -2886.19 -8.10475,213 218 219,stand,24.527 117.791 0,,
|
||||
6973.23 -2611.41 -13.9053,217 211 219 220 31,stand,19.9347 33.4985 0,,
|
||||
6611.09 -2904.44 -8.78203,218 217 220 221 222 226 224,stand,17.8088 30.8234 0,,
|
||||
6191.93 -2653.8 -12.8515,219 218 225 235,stand,29.0039 44.7101 0,,
|
||||
6382.9 -2223.06 -0.551086,219 224 28 230 223,stand,29.0039 -85.8624 0,,
|
||||
6597.64 -2413.92 2.71443,223 219 224,stand,31.6956 36.2012 0,,
|
||||
6687.22 -2236.44 3.5297,30 222 221 31,stand,28.2239 -174.302 0,,
|
||||
6303.93 -2400.3 -2.66492,221 222 225 227 219 230,stand,26.2079 76.1749 0,,
|
||||
6113.12 -2581.6 -3.09214,224 220 226 229,stand,24.527 21.8585 0,,
|
||||
5947.56 -2694.11 -8.63013,225 219 235 239,stand,23.9667 51.2799 0,,
|
||||
5924.73 -2271.45 -9.21282,224 228,crouch,10.8655 -29.3542 0,,
|
||||
5867.95 -2347.01 -12.7878,227 229,crouch,14.5569 47.1381 0,,
|
||||
6020.68 -2510.01 -3.02315,225 228,crouch,19.1492 -49.1681 0,,
|
||||
6285.84 -1850.95 -18.0108,221 231 233 224,stand,12.6563 -52.9694 0,,
|
||||
6452.83 -1492.14 -22.3243,193 230 192,stand,17.3584 -155.851 0,,
|
||||
6469.37 -1984.34 -11.074,233,stand,23.8513 127.135 0,,
|
||||
6371.04 -1731.2 -23.7761,232 230,stand,28.4436 -123.568 0,,
|
||||
6874.29 -1930.37 -15.3907,32 29 30,stand,22.1759 -25.2399 0,,
|
||||
6134.39 -2885.2 -6.83141,220 236 226,stand,14.5569 93.8465 0,,
|
||||
6344.5 -2893.07 -7.63525,235,stand,8.73413 179.177 0,,
|
||||
5593.12 -1785.59 -21.8794,181 191 238,stand,25.5322 78.6029 0,,
|
||||
5608.49 -2070.69 -13.6529,237 27 28 239,stand,13.7769 -94.4153 0,,
|
||||
5566.02 -2571.19 -15.4871,238 240 226,stand,10.7501 -12.8088 0,,
|
||||
5245.6 -2630.44 -47.449,239 26 241 244,stand,14.1119 35.5695 0,,
|
||||
4520.71 -3058.86 -260.034,240 242 245 246 247,stand,16.0126 -132.115 0,,
|
||||
4481.42 -5414.84 -262.478,241 243,stand,14.7821 -84.1925 0,,
|
||||
5156.75 -5362.71 -77.4289,242 244,stand,2.68616 29.5874 0,,
|
||||
5225.99 -3312.29 -46.8982,243 240 245,stand,28.7842 -172.808 0,,
|
||||
4382.97 -3516.41 -264.689,244 241,stand,17.0233 -152.983 0,,
|
||||
4223.03 -2750.76 -238.256,241 247 25 254 250 257,stand,9.62952 -91.1249 0,,
|
||||
4640.95 -2175.63 -265.547,246 25 26 248 241,stand,16.1279 -88.2135 0,,
|
||||
4528.05 -1605.9 -260.437,247 170 249 171 25 169 27,stand,14.8975 -132.758 0,,
|
||||
4957.19 -1330.58 -208.205,248 180 171 170 250,stand,4.70215 6.66445 0,,
|
||||
3750.99 -2782.43 -233.398,249 253 254 246,stand,18.3691 173.717 0,,
|
||||
3208.98 -2794.63 -235.778,252 253,stand,19.5996 -165.228 0,,
|
||||
3070.5 -2847.96 -240.502,251 264,stand,20.0446 104.289 0,,
|
||||
3455.88 -2716.53 -225.473,251 250,stand,22.8461 -157.955 0,,
|
||||
3730.72 -2645.47 -234.65,250 255 257 246,stand,23.2965 161.489 0,,
|
||||
3470.3 -2596.01 -233.772,254 256 260,stand,31.1353 35.954 0,,
|
||||
3590.18 -2347.48 -231.133,255 257 259 260,stand,19.7095 103.811 0,,
|
||||
4053.37 -2395.27 -242.023,256 254 246 25 24,stand,14.3372 -1.427 0,,
|
||||
3465.76 -1698.47 -237.526,168 159 23 259,stand,18.7042 -88.7024 0,,
|
||||
3598.75 -2009.61 -242.164,258 23 24 256,stand,24.6368 -17.5989 0,,
|
||||
3337.75 -2390.07 -239.494,23 256 255 261 262,stand,22.0605 -6.70044 0,,
|
||||
3166.47 -2608.37 -242.569,260 262 264,stand,18.0286 116.929 0,,
|
||||
3078.81 -2455.96 -237.244,261 263 260 23,stand,15.6775 -152.473 0,,
|
||||
2900.24 -2529.78 -239.969,262 264 266 267,stand,15.6775 -157.4 0,,
|
||||
2929.91 -2730.02 -234.538,263 252 261 265,stand,26.3177 -71.9482 0,,
|
||||
2687.43 -2754.94 -208.487,264 266,stand,15.6775 83.1183 0,,
|
||||
2648.62 -2591.79 -204.258,265 263 22,stand,10.6403 141.022 0,,
|
||||
2869.97 -2254.93 -242.966,263 23 22,stand,28.6688 -70.2563 0,,
|
||||
2669.76 -1955.63 -233,22 269 157 271 275,stand,-0.335083 169.839 0,,
|
||||
2448.61 -1837.87 -186.166,268 270 274,stand,27.4384 -45.3998 0,,
|
||||
2191.99 -1681.18 -99.3181,269 21 151 142 157 274,stand,30.575 -78.1775 0,,
|
||||
2817.99 -1665.38 -238.026,268 272 275,stand,49.389 -166.409 0,,
|
||||
2962.43 -1479.07 -247.575,271 273 275 159,stand,18.9294 172.311 0,,
|
||||
2570.92 -1303.61 -221.743,272 157 274 152 149,stand,15.9027 -21.8396 0,,
|
||||
2340.5 -1644.59 -149.045,273 270 269,stand,18.2538 62.486 0,,
|
||||
3034.6 -1681.43 -242.313,272 271 268 159 23,stand,20.8301 -13.9789 0,,
|
||||
|
@@ -0,0 +1,263 @@
|
||||
262
|
||||
-9771.67 -27005 896.125,1 95,stand,10.86 104.09 0,,
|
||||
-9818.05 -26835.8 896.649,2 0 5,stand,34.942 76.9096 0,,
|
||||
-9789.38 -26712.1 916.039,1 3 4,stand,23.1812 -93.1973 0,,
|
||||
-9493.96 -26568.4 900.125,2 6 13 85 93 86,stand,21.275 -6.74035 0,,
|
||||
-10157.5 -26594.4 929.743,2 5 13,stand,24.9719 -30.2236 0,,
|
||||
-10193.9 -26776.4 896.125,4 1 15,stand,19.5996 -27.4221 0,,
|
||||
-9752.88 -25807.5 952.984,3 7,stand,29.5642 50.7786 0,,
|
||||
-10126.3 -25815 976.036,6 8 13,stand,24.8621 -2.90063 0,,
|
||||
-10601.8 -26136 929.168,7 9 10 13,stand,12.2058 31.7063 0,,
|
||||
-10888.4 -25748 944.125,8,stand,19.5996 144.025 0,,
|
||||
-10897.9 -26211.6 973.751,8 11 22,stand,21.9507 -153.15 0,,
|
||||
-10962.8 -26429.2 959.059,10 12 17 22 21,stand,24.1864 42.0444 0,,
|
||||
-10655 -26592.6 909.65,11 13 14 17,stand,19.9347 -15.068 0,,
|
||||
-10211.5 -26308.3 939.154,12 4 7 3 8,stand,27.2131 -86.7428 0,,
|
||||
-10680.7 -26820.6 896.125,12 15 16,stand,11.9806 82.9191 0,,
|
||||
-10449.1 -26875 896.125,14 5,stand,16.2378 41.1436 0,,
|
||||
-10926.1 -27089.8 896.125,14 17 19,stand,26.543 118.526 0,,
|
||||
-11086.2 -26982.1 904.564,16 12 11 18 21,stand,16.908 41.2589 0,,
|
||||
-11190.4 -27418.5 920.404,17 19 20 24,stand,13.8867 54.5029 0,,
|
||||
-10990.5 -27347.3 896.125,18 16 95 53,stand,16.3477 161.339 0,,
|
||||
-11782 -27658.7 975.589,18 21 23 57,stand,14.7821 -26.318 0,,
|
||||
-11630.8 -26900.9 1016.74,20 22 11 17,stand,13.3264 57.3374 0,,
|
||||
-11210.9 -26347.8 999.226,21 10 11,stand,23.4064 32.8104 0,,
|
||||
-11448.4 -27887 896.125,20 24,stand,10.9753 19.484 0,,
|
||||
-11480.2 -27642.8 933.677,23 18 25,stand,22.1759 -8.73437 0,,
|
||||
-11153 -29064.4 896.125,24 30 54,stand,22.2858 79.398 0,,
|
||||
-11387.3 -29956.7 896.125,27 28 29 30,stand,12.7661 31.5031 0,,
|
||||
-10626.2 -30679.9 896.125,26 28 31 32,stand,13.4363 -50.8065 0,,
|
||||
-11960.4 -30678.4 896.125,27 26 29,stand,11.5356 -172.387 0,,
|
||||
-11819.2 -30026.3 926.589,28 26 30,stand,14.6722 -76.3058 0,,
|
||||
-11221.9 -29640.8 896.125,29 25 26 31,stand,15.0073 112.28 0,,
|
||||
-10684.6 -29977.4 965.027,30 27,stand,19.7095 -177.353 0,,
|
||||
-9377.72 -30692.9 896.125,27 33 55,stand,3.6969 5.18531 0,,
|
||||
-8118.02 -30680 896.125,32 34 55 56,stand,4.92737 -0.412224 0,,
|
||||
-6990.71 -30692.9 896.125,33 35 56,stand,4.36707 -0.296867 0,,
|
||||
-5700.75 -30645.9 896.125,34 36 40,stand,1.01074 -3.3236 0,,
|
||||
-5067.14 -30451.1 896.125,35 37 39,stand,7.27844 157.154 0,,
|
||||
-4404.95 -30706.6 896.125,36 38,stand,2.57629 -1.75256 0,,
|
||||
-2167.13 -30677.3 896.125,37,stand,14.1119 -4.32885 0,,
|
||||
-5030.72 -28905.2 896.125,36,stand,24.3018 -127.963 0,,
|
||||
-5736.23 -29993.1 940.165,35 41,stand,13.5516 89.9284 0,,
|
||||
-5814.28 -29079.8 933.595,40 42 43,stand,21.7255 96.7564 0,,
|
||||
-5851.78 -28823.1 901.112,41 235,stand,15.0073 -152.6 0,,
|
||||
-6662.59 -29222.5 974.387,41 44,stand,11.2006 172.013 0,,
|
||||
-7769.6 -29185.2 1044.83,43 45 56,stand,24.527 -178.468 0,,
|
||||
-8632.07 -29173.9 1011.88,44 46 56,stand,20.7202 179.851 0,,
|
||||
-9254.77 -29125.4 955.961,45 47 48 55,stand,18.1439 173.803 0,,
|
||||
-9563.89 -28559.8 965.975,46 48,stand,20.495 139.762 0,,
|
||||
-9968.2 -28873 979.115,47 49 52 46 51,stand,19.4843 100.678 0,,
|
||||
-9938.07 -28440.3 939.187,48 50,stand,27.9987 -166.146 0,,
|
||||
-10003.6 -28253.1 897.947,49 51 95,stand,29.6741 110.198 0,,
|
||||
-10459.9 -28550.8 909.794,50 52 48 54,stand,15.9027 -125.272 0,,
|
||||
-10375.6 -28816.9 976.367,51 48 53 54,stand,9.85474 -67.5991 0,,
|
||||
-11073.8 -28517.8 896.125,52 54 19,stand,6.38306 -91.3076 0,,
|
||||
-10951.3 -28870.2 923.78,53 51 25 52,stand,11.9806 115.082 0,,
|
||||
-9040.29 -29953.2 909.517,46 32 33 56,stand,10.5249 93.5868 0,,
|
||||
-8067.57 -29733.2 1046.15,55 33 34 44 45,stand,22.7307 -144.948 0,,
|
||||
-11944.1 -27870.8 992.938,20 58 78 79,stand,27.1033 -80.8541 0,,
|
||||
-12158.1 -28172.7 988.125,57 59 78,stand,27.4384 -163.724 0,,
|
||||
-12441.2 -28186.7 988.431,58 60,stand,28.1085 -135.055 0,,
|
||||
-12420.5 -28286.5 992.764,59 61 71,stand,28.559 39.0836 0,,
|
||||
-12245.4 -28285.5 1061.13,60 62,stand,38.1885 -59.3539 0,,
|
||||
-12240.3 -28342 1061.13,61 63,stand,29.7894 -176.605 0,,
|
||||
-12404.7 -28341.8 1123.13,62 64,stand,35.722 178.357 0,,
|
||||
-12413 -28287.7 1123.13,63 65,stand,22.0605 3.20777 0,,
|
||||
-12241.3 -28288.6 1189.13,64 66,stand,47.9279 -44.6102 0,,
|
||||
-12240.9 -28348.7 1189.13,65 67,stand,33.8214 -173.952 0,,
|
||||
-12423.7 -28348.4 1251.13,66 68,stand,35.722 -175.298 0,,
|
||||
-12425.9 -28564.8 1251.13,67 69,stand,29.0039 -53.6794 0,,
|
||||
-12295.7 -28579.7 1251.13,68 70,stand,33.4863 -38.5623 0,,
|
||||
-12287.8 -28927.8 1251.13,69,stand,23.8513 -86.4901 0,,
|
||||
-12949.1 -28307.9 1031.25,60 72,stand,9.85474 -129.463 0,,
|
||||
-12960.3 -29220.9 1103.41,71 73 75,stand,23.4064 -29.6798 0,,
|
||||
-12942.7 -29786.2 1087.3,72 74,stand,30.0146 -64.0615 0,,
|
||||
-12426 -29758.6 1060.49,73 75,stand,19.7095 15.7871 0,,
|
||||
-12423.4 -29352 1044.91,74 72 76 77,stand,18.8141 109.067 0,,
|
||||
-11933.5 -29053 995.905,75 77,stand,22.6208 87.0115 0,,
|
||||
-12204.6 -28982 1017.97,76 75 78,stand,24.527 -34.0414 0,,
|
||||
-11957.1 -28348.9 985.437,77 58 57 79,stand,14.3372 14.2216 0,,
|
||||
-12105 -26976 1120.65,78 57 80,stand,33.4863 -2.23595 0,,
|
||||
-11658.5 -26538.6 1127.76,79 81,stand,22.3956 -98.4268 0,,
|
||||
-11193.5 -26019.9 1108.9,80 82,stand,25.1971 34.1618 0,,
|
||||
-11279.1 -25723.9 1250.67,81 83,stand,22.1759 28.5642 0,,
|
||||
-10920.3 -25689.2 1208.13,82 84,stand,28.3337 -69.4228 0,,
|
||||
-10716.4 -25368.5 1174.9,83,stand,27.2131 -19.2538 0,,
|
||||
-9389.62 -26893.1 896.125,3 86,stand,23.0713 -63.2266 0,,
|
||||
-8957.76 -26903.2 896.125,85 87 93 3 94,stand,21.275 15.496 0,,
|
||||
-8569.09 -26841.8 896.125,86 88 92,stand,26.3177 93.7736 0,,
|
||||
-8316.29 -26807.2 896.125,87 89 91,stand,27.4384 45.4008 0,,
|
||||
-8216.43 -27027 896.125,88 90 94 228,stand,25.1971 102.843 0,,
|
||||
-8098.09 -26861.6 896.125,89 91 228,stand,28.2184 118.52 0,,
|
||||
-8240.25 -26683.2 896.125,90 88 92,stand,28.559 -123.003 0,,
|
||||
-8595.3 -26663.2 896.125,87 91 93,stand,22.2858 -2.09313 0,,
|
||||
-8858.92 -26524.5 896.125,92 86 3 209,stand,22.6208 59.271 0,,
|
||||
-8816.5 -27396.4 896.125,86 95 96 89,stand,18.2538 137.203 0,,
|
||||
-9669.2 -27484.7 896.125,94 0 50 19,stand,11.4203 38.9902 0,,
|
||||
-8707.34 -28357.9 896.125,94 97,stand,16.6882 -83.9468 0,,
|
||||
-7880.69 -28468.2 896.125,96 98 229,stand,13.4363 -2.01623 0,,
|
||||
-6996.3 -28627.7 896.125,97 99,stand,14.6722 -5.15282 0,,
|
||||
-6212.25 -28594.7 896.125,98 100 234,stand,21.0553 -28.4493 0,,
|
||||
-6276.68 -27711.4 896.125,99 101,stand,17.3584 21.1594 0,,
|
||||
-5157.91 -27639.2 896.125,100 102 103 111,stand,12.9913 93.9493 0,,
|
||||
-5030.86 -28676 896.125,101 236,stand,26.4276 -89.9233 0,,
|
||||
-5052.18 -27128.6 896.125,101 104 115 116 133,stand,13.4363 1.00501 0,,
|
||||
-4614.61 -27127.8 941.797,103 105 113,stand,18.2538 87.9014 0,,
|
||||
-4582.53 -26751.1 955.066,104 106 117 118,stand,23.6316 -169.887 0,,
|
||||
-4512.53 -27074.4 968.125,105 107 112 114,stand,22.6208 -0.00572968 0,,
|
||||
-4100.25 -26962 1004.44,106 108,stand,19.4843 -166.751 0,,
|
||||
-3955.21 -27009.7 1030.28,107 109,stand,33.2611 -178.391 0,,
|
||||
-3957.13 -27327.7 1048.26,108 110 114,stand,17.5836 -146.816 0,,
|
||||
-3886.99 -28164.5 1064.26,109 111,stand,21.8353 -179.292 0,,
|
||||
-4464.62 -28177.7 1004.45,110 101 112 115,stand,33.9313 163.235 0,,
|
||||
-4544.03 -27665.3 978.618,111 113 106 114,stand,22.6208 108.281 0,,
|
||||
-4715.81 -27573.6 919.508,104 112,stand,26.4276 -78.7063 0,,
|
||||
-4397.6 -27334.6 1022.14,109 106 112 115,stand,33.371 -124.547 0,,
|
||||
-4735.95 -27965.4 896.125,114 111 103,stand,14.5569 -7.04797 0,,
|
||||
-5084.66 -26750 958.257,103 117,stand,38.7488 57.6725 0,,
|
||||
-4942.66 -26523.7 968.823,116 105 120,stand,19.8248 -105.678 0,,
|
||||
-4380.38 -26559 956.125,105 119,stand,28.1085 -142.564 0,,
|
||||
-4352.76 -26432.2 954.718,118,stand,25.8673 -135.736 0,,
|
||||
-4953.13 -26296.8 962.512,117 121 130 131,stand,21.1652 -71.4608 0,,
|
||||
-4783.51 -26121.9 959.354,120 122 128,stand,44.7968 74.7947 0,,
|
||||
-4716.09 -26267.2 958.254,121 123,stand,35.5023 9.05799 0,,
|
||||
-4560.78 -26218.8 958.396,122 124 125,stand,26.9879 78.931 0,,
|
||||
-4585.84 -26031.6 962.212,123 125 128,stand,38.2983 -169.42 0,,
|
||||
-4394.69 -26093.4 949.125,124 126 123,stand,24.527 -172.634 0,,
|
||||
-4437.04 -25712.5 954.948,125 127 137,stand,19.9347 159.928 0,,
|
||||
-5167.61 -25628.3 965.791,126 131 253,stand,16.3531 175.495 0,,
|
||||
-4778.93 -26026.6 963.125,124 121,stand,31.5802 -28.0758 0,,
|
||||
-4973.6 -25947.5 963.125,130,stand,32.2504 -169.728 0,,
|
||||
-5040.49 -25992.7 950.727,129 120,stand,32.3657 11.6782 0,,
|
||||
-5342.7 -26105.3 975.592,120 127 132 245,stand,22.9559 -104.563 0,,
|
||||
-5623.61 -26468.8 962.073,131 133 136,stand,21.3904 -108.666 0,,
|
||||
-5724.56 -26994.7 896.125,132 134 233 103,stand,27.1033 -104.189 0,,
|
||||
-6223.9 -26717.8 964.914,133 135 136 233,stand,26.9879 4.64698 0,,
|
||||
-6677.26 -26457.3 896.125,134 136 237 231 224,stand,22.8461 150.458 0,,
|
||||
-6063.06 -26411.6 957.203,135 134 132 238,stand,19.7095 -128.469 0,,
|
||||
-4383.2 -25214.7 1018.62,126 138,stand,32.926 105.496 0,,
|
||||
-4362.57 -24902.1 956.717,137 139,stand,32.1405 121.959 0,,
|
||||
-4461.8 -24863.8 960.072,138 140 148,stand,20.3796 -89.4344 0,,
|
||||
-4468.45 -25003.3 1009.13,139 141 147,stand,36.6174 -86.8581 0,,
|
||||
-4635.96 -25095.5 1007.13,140 142 147,stand,31.2451 -163.757 0,,
|
||||
-4747.88 -25111.3 1007.13,141 143,stand,34.8267 162.762 0,,
|
||||
-4880.36 -25036.9 1007.13,142 144,stand,40.6494 33.0851 0,,
|
||||
-4915.36 -24977.6 1011.15,143 145 146,stand,40.8746 172.732 0,,
|
||||
-5132.48 -24972.4 979.623,144 253 172 260,stand,21.8353 12.1506 0,,
|
||||
-4802.49 -24880.3 1007.13,144 147,stand,42.6654 -14.3923 0,,
|
||||
-4603.34 -24889.4 1007.13,146 140 141,stand,34.6069 -69.4888 0,,
|
||||
-4136.88 -24519.8 943.64,139 149 153 154,stand,11.9806 79.5628 0,,
|
||||
-3693.34 -24666.9 959.367,148 150 153,stand,13.8867 -45.8627 0,,
|
||||
-3280.55 -24769.8 959.195,149 151,stand,11.9806 40.9238 0,,
|
||||
-3163.72 -24476.8 963.089,150 152,stand,16.908 103.628 0,,
|
||||
-3399.42 -24287.6 957.249,151 153,stand,16.463 174.512 0,,
|
||||
-3725.82 -24370.8 958.72,152 149 148,stand,15.5676 -126.14 0,,
|
||||
-4381.13 -24421.9 977.718,148 155 258,stand,26.9879 174.627 0,,
|
||||
-4378.46 -24203.7 984.7,154 156,stand,22.0605 168.579 0,,
|
||||
-4589.03 -24186.7 1026.03,155 157 172,stand,24.7522 127.815 0,,
|
||||
-4669.28 -23829.2 1042.2,156 158 162,stand,15.3424 163.317 0,,
|
||||
-4988.1 -23624.2 1032.11,157 159,stand,19.1492 -174.732 0,,
|
||||
-5445.23 -23683.1 1054.56,158 160 163 164,stand,24.0765 -11.014 0,,
|
||||
-5311.55 -23876 1027.01,159 161 163,stand,33.8214 65.9232 0,,
|
||||
-5227.22 -23825.1 1033.13,160 162,stand,38.2983 -88.0557 0,,
|
||||
-4893.96 -23828.5 1029.83,161 157 172,stand,28.2184 179.895 0,,
|
||||
-5844.61 -23858.1 1035.16,160 159 166 164 167,stand,35.5023 -95.5483 0,,
|
||||
-5753.66 -23636.7 1070.26,159 165 163,stand,21.3904 -117.466 0,,
|
||||
-6199.99 -23650.6 1076.63,164 166,stand,14.3372 -90.7034 0,,
|
||||
-6155.87 -23947.8 1093.85,165 163 167 178 179,stand,14.6722 -163.158 0,,
|
||||
-5903.69 -23996.8 1025.73,166 163 168 178,stand,31.6901 54.0964 0,,
|
||||
-5765.82 -24004.3 1013.13,167 169,stand,25.4224 0.889656 0,,
|
||||
-5484.94 -23967.4 1013.13,168 170 174,stand,45.2417 -133.72 0,,
|
||||
-5318 -24021.9 1013.13,169 171,stand,40.4297 -173.705 0,,
|
||||
-5287.8 -24115.8 1013.13,170 172 173,stand,32.5909 -7.06445 0,,
|
||||
-5110.58 -24138.4 1013.46,171 145 254 162 156 261,stand,23.1812 162.823 0,,
|
||||
-5398.42 -24169.2 1013.13,171 174,stand,30.575 99.2118 0,,
|
||||
-5471.98 -24137.8 1013.13,173 169 175,stand,29.8993 16.9077 0,,
|
||||
-5556.25 -24168 1013.13,174 176,stand,27.4384 5.52589 0,,
|
||||
-5655.89 -24182.9 1013.13,175 177,stand,25.9827 -28.8558 0,,
|
||||
-5643.55 -24532.7 989.462,176 178 261 252,stand,18.5889 93.0979 0,,
|
||||
-5908.5 -24592.5 986.754,177 167 166 252,stand,11.8707 72.2623 0,,
|
||||
-6331.17 -23995.8 1131.14,166 180 241 242,stand,21.2805 -93.1039 0,,
|
||||
-6836.17 -23717.5 1036.61,179 181 221,stand,24.0765 150.43 0,,
|
||||
-7113.17 -23636.3 1036.89,180 182 187,stand,21.0553 173.051 0,,
|
||||
-7402.69 -23821.2 1028.02,181 183 187 221,stand,16.7981 -118.416 0,,
|
||||
-7580.28 -24159.9 988.148,182 184 220,stand,18.479 -115.055 0,,
|
||||
-8006.45 -24265.2 980.381,183 185 188 218,stand,19.1492 162.301 0,,
|
||||
-7983.19 -23881.2 997.422,184 186,stand,19.3744 32.1732 0,,
|
||||
-7687.48 -23642.5 1017.73,185 187,stand,21.6156 -9.81652 0,,
|
||||
-7408.93 -23634.8 1025.24,186 182 181,stand,31.0199 -138.043 0,,
|
||||
-8306.74 -24383.6 945.321,184 189 218,stand,21.7255 -92.4667 0,,
|
||||
-8633.92 -24652.1 912.125,188 190,stand,11.2006 -131.776 0,,
|
||||
-9013.53 -25068.3 903.079,189 191 214,stand,22.9559 -139.944 0,,
|
||||
-9395.64 -25431.8 898.125,190 192,stand,11.2006 -139.285 0,,
|
||||
-9592.74 -25652.2 898.125,191 193,stand,34.942 -48.4719 0,,
|
||||
-9478.75 -25780.2 898.125,192 194,stand,26.3177 81.6556 0,,
|
||||
-9128.33 -25413.4 898.125,193 195,stand,24.1919 -46.791 0,,
|
||||
-9013.56 -25556.7 898.125,194 196 210 211,stand,28.7787 -97.1853 0,,
|
||||
-9310.06 -25725.1 898.125,195 197 206,stand,28.894 -131.232 0,,
|
||||
-9499.14 -25906.6 1032.13,196 198,stand,33.2611 77.1348 0,,
|
||||
-9555.12 -25812.8 1032.13,197 199,stand,26.2079 36.2656 0,,
|
||||
-9124.09 -25413.2 1036.13,198 200 204,stand,23.0713 65.6101 0,,
|
||||
-9292.2 -25249 1036.13,199 205,stand,27.7734 142.987 0,,
|
||||
-9656.75 -25610.9 1036.13,202 205,stand,26.543 39.5505 0,,
|
||||
-9670.49 -25701.1 1036.13,201 203,stand,40.3143 -92.1426 0,,
|
||||
-9590.31 -25710.6 1036.13,202 204,stand,27.8833 48.7351 0,,
|
||||
-9307.26 -25400.3 1036.13,203 205 199,stand,24.6368 177.627 0,,
|
||||
-9432.65 -25402.3 1036.13,204 200 201,stand,26.3177 55.7169 0,,
|
||||
-9245.65 -25794.3 898.125,196 207 211,stand,24.0765 -139.433 0,,
|
||||
-9345.33 -25947.3 898.125,206 208 211,stand,20.2698 -60.5953 0,,
|
||||
-8838.55 -26071.2 898.125,207 209,stand,34.2664 -31.2618 0,,
|
||||
-8646.51 -26255.8 896.125,208 210 211 93 212,stand,14.447 -42.347 0,,
|
||||
-8674.2 -25912.4 898.125,195 209 211,stand,21.3904 127.057 0,,
|
||||
-9018.12 -26281.8 898.125,210 209 207 206 195,stand,21.1652 -40.6277 0,,
|
||||
-8193.54 -25919.7 896.125,209 213 215 226,stand,13.0902 128.298 0,,
|
||||
-8782.85 -25389.1 946.869,212 214,stand,22.4945 -86.4517 0,,
|
||||
-8973.65 -25210 954.04,190 213,stand,40.9735 131.182 0,,
|
||||
-7675.57 -25500.3 896.125,212 216 223 226,stand,12.42 59.661 0,,
|
||||
-7690.92 -25225.1 896.125,215 217,stand,30.5585 108.825 0,,
|
||||
-7711.4 -24794.3 997.428,216 218 219,stand,22.9449 105.348 0,,
|
||||
-7973.46 -24537.8 995.934,217 184 188 219,stand,14.0955 -27.2079 0,,
|
||||
-7410.82 -24584.4 988.375,218 217 220 222 243,stand,28.9929 -124.349 0,,
|
||||
-7356.02 -24403.7 998.284,219 183 221,stand,23.6151 75.4374 0,,
|
||||
-6939.85 -24090.5 1045.74,220 180 182 243,stand,20.1434 -172.348 0,,
|
||||
-7306.37 -25221.1 946.39,219 223 243,stand,17.9077 135.165 0,,
|
||||
-7434.45 -25537.4 896.125,222 215 224,stand,22.7197 172.793 0,,
|
||||
-7220.84 -25802 896.125,223 225 135 239,stand,21.9342 103.03 0,,
|
||||
-7429.59 -25931.6 896.125,224 226,stand,17.5671 179.775 0,,
|
||||
-7807.58 -25969.1 896.125,225 215 212 227,stand,10.7391 0.851204 0,,
|
||||
-7718.74 -26491.3 896.125,226 228,stand,16.0016 32.8104 0,,
|
||||
-7672.32 -26989.3 896.125,227 229 90 230 89,stand,20.1434 -83.9852 0,,
|
||||
-7685.05 -27713.3 896.125,228 97,stand,11.1841 -103.574 0,,
|
||||
-7227.01 -26843.3 896.125,228 231 237,stand,26.6418 22.1482 0,,
|
||||
-6799.68 -26832 896.125,230 232 135,stand,25.4059 10.0523 0,,
|
||||
-6421.35 -27030.2 896.125,231 233,stand,17.6825 113.977 0,,
|
||||
-6024.33 -26872.3 899.935,232 133 134,stand,22.9449 78.1455 0,,
|
||||
-6228.02 -28736.5 897.963,99 235,stand,30.3333 81.3041 0,,
|
||||
-5835.17 -28754.3 896.125,234 236 42,stand,24.2908 -4.58703 0,,
|
||||
-5482.09 -28762.6 896.125,235 102,stand,21.0388 4.59754 0,,
|
||||
-7206.49 -26573.5 896.125,230 135,stand,14.0955 -158.522 0,,
|
||||
-6311.93 -25980.4 1019.39,136 239 244,stand,21.0388 112.077 0,,
|
||||
-6265.06 -25652.7 1120.31,238 240 243 224 244,stand,23.3954 92.3673 0,,
|
||||
-6254.88 -25117.3 1126.34,239 241,stand,31.1188 84.1935 0,,
|
||||
-6351.48 -24473.6 1127.16,240 179 243,stand,23.1702 103.013 0,,
|
||||
-6453.63 -23599.6 1147.87,179,stand,18.2428 140.85 0,,
|
||||
-6873.59 -24756.7 985.602,241 219 222 239 221,stand,20.3687 -174.452 0,,
|
||||
-5994.55 -25861.2 1007.14,238 239 245,stand,18.2428 71.2791 0,,
|
||||
-5573.39 -25928.1 997.723,244 131 246,stand,29.328 -0.500114 0,,
|
||||
-6016.57 -25449.4 1000.94,245 247 252,stand,7.04224 48.3341 0,,
|
||||
-5789.13 -25432.2 1105.03,246 248,stand,14.7711 -6.42724 0,,
|
||||
-5725.33 -25424.9 1130.12,247 249 251 250,stand,32.7997 59.4193 0,,
|
||||
-5503.61 -25299.4 1130.12,248 250 251,stand,20.484 42.1708 0,,
|
||||
-5475.13 -25570.9 1130.12,249 251 248,stand,12.7551 3.52088 0,,
|
||||
-5702.86 -25583.5 1130.12,250 248 249,stand,22.9449 -149.085 0,,
|
||||
-5956.27 -25077 986.995,246 253 177 178,stand,16.3367 -2.3568 0,,
|
||||
-5295.95 -25126.7 984.243,252 145 127 254,stand,19.248 -47.8237 0,,
|
||||
-5032.34 -24420.4 969.81,253 172 255 260 261,stand,13.4253 14.5566 0,,
|
||||
-4851.05 -24413.4 981.125,254 256 258,stand,25.5212 -1.87341 0,,
|
||||
-4813.91 -24321 981.125,255 257,stand,28.2074 -40.3036 0,,
|
||||
-4603.23 -24315.8 981.125,256 258,stand,23.3954 -0.203484 0,,
|
||||
-4499.96 -24418.4 981.125,257 154 255,stand,25.5212 3.71314 0,,
|
||||
-5378.88 -24866.2 988.125,260,stand,30.7837 1.94984 0,,
|
||||
-5238.44 -24863.2 981.636,259 145 254 261,stand,31.2341 -169.717 0,,
|
||||
-5310.89 -24537 988.443,260 254 172 177,stand,26.7517 11.1289 0,,
|
||||
|
@@ -0,0 +1,178 @@
|
||||
177
|
||||
2043 3223 48.125,1,stand,,,
|
||||
1831.54 3198.69 48.125,0 2 141,stand,,,
|
||||
1771.53 3109.12 48.125,1 3 4,stand,,,
|
||||
1614.05 3055.79 48.125,2 4 5 48 15,stand,,,
|
||||
1802.37 2907.46 48.125,3 15 52 2 48,stand,,,
|
||||
1294.6 2914.98 48.125,3 6 133 47,stand,,,
|
||||
1010.56 2856.75 48.125,5 47 131 132,stand,,,
|
||||
1152.23 2441.07 48.1784,8 8 131,stand,,,
|
||||
1113.75 2379.53 48.4586,7 7 9,stand,,,
|
||||
1283.64 2192.96 49.2232,8 10 11,stand,,,
|
||||
1155.48 1964.01 48.4915,9 11 16 43 170,stand,,,
|
||||
1396.81 2078.67 48.125,9 12 10,stand,,,
|
||||
1568.91 2137.36 48.125,11 13,stand,,,
|
||||
1811.1 2217.06 48.125,12 14 148,stand,,,
|
||||
1782.95 2464.88 48.125,13 15 142,stand,,,
|
||||
1746.15 2627.32 48.1104,14 4 48 49 52 3,stand,,,
|
||||
988.8 1759.26 39.3681,10 17 43 168,stand,,,
|
||||
898.079 1482.12 48.0862,16 18 38,stand,,,
|
||||
875.185 1205.34 48.0212,17 19 82,stand,,,
|
||||
874.6 969.342 48.125,18 20 28 36 82,stand,,,
|
||||
1099.8 876.364 48.125,19 21 26 27,stand,,,
|
||||
1418.52 982.567 48.125,20 22 26 23 164,stand,,,
|
||||
1591.97 1018.84 48.125,21 23 80 26,stand,,,
|
||||
1591.72 729.26 48.125,22 24 26 21,stand,,,
|
||||
1565.03 553.248 48.125,23 25 79,stand,,,
|
||||
1339.89 548.266 49.4065,24 26 78 93,stand,,,
|
||||
1350.5 803.367 48.125,21 25 23 20 22 92,stand,,,
|
||||
1013.83 729.909 48.125,20 28 36 92,stand,,,
|
||||
890.876 723.648 48.8701,27 33 34 19,stand,,,
|
||||
591.601 364.798 60.875,30 125,stand,,,
|
||||
602.413 491.391 60.4593,29 31 32,stand,,,
|
||||
723.719 494.235 59.7507,30 32,stand,,,
|
||||
705.415 640.985 51.0084,31 33 30,stand,,,
|
||||
820.615 690.08 48.804,32 28 36,stand,,,
|
||||
906.734 636.255 49.8304,28,stand,,,
|
||||
570.52 879.728 49.125,36 126 127,stand,,,
|
||||
730.906 864.001 49.125,35 19 33 27,stand,,,
|
||||
586.109 1521.44 53.6003,38 39 128,stand,,,
|
||||
797.224 1536.13 48.67,37 17,stand,,,
|
||||
390.375 1611.66 58.9374,37 40,stand,,,
|
||||
321.187 1847.62 50.6148,39 41,stand,,,
|
||||
394.033 2072.21 56.2713,40 42 44,stand,,,
|
||||
632.933 2021.41 50.9029,41 43,stand,,,
|
||||
854.963 2005.5 53.47,42 10 16 129,stand,,,
|
||||
471.238 2366.12 59.7767,41 45,stand,,,
|
||||
532.644 2551.39 63.9027,44 46 130,stand,,,
|
||||
834.357 2567.29 54.4027,45 47 129,stand,,,
|
||||
989.059 2683.33 48.125,46 6 131 5,stand,,,
|
||||
1623.82 2835.06 48.125,3 15 4,stand,,,
|
||||
2056.03 2972.15 48.125,15 50,stand,,,
|
||||
2112.76 2853.73 48.125,49 51 52 153,stand,,,
|
||||
2284.9 2602.65 48.0569,50 53 59 151 153,stand,,,
|
||||
1954.6 2722.9 48.125,15 50 4,stand,,,
|
||||
2149.56 2278.61 48.0859,51 54 145 150 151,stand,,,
|
||||
2355.04 1878.48 47.5598,53 55 56,stand,,,
|
||||
2557.16 1988.49 50.9365,54 57 56 58,stand,,,
|
||||
2460.31 1613.44 52.476,54 57 55 163,stand,,,
|
||||
2744.78 1723.83 50.9572,55 56 162,stand,,,
|
||||
2435.8 2271.85 48.125,55 151 159,stand,,,
|
||||
2470.18 2623.46 47.3385,51 60 66,stand,,,
|
||||
2486.87 2753.57 48.0464,59 71 71 152,stand,,,
|
||||
2928.79 2260.74 48.125,64 65 159,stand,,,
|
||||
3014.42 2090.28 54.4085,63 157 158,stand,,,
|
||||
2997.03 2145.99 52.2499,62 64,stand,,,
|
||||
2972.71 2205.98 49.4658,63 61,stand,,,
|
||||
2832.97 2503.88 48.0374,61 67,stand,,,
|
||||
2747.8 2689.17 48.125,67 59 73,stand,,,
|
||||
2779.92 2589.36 48.125,65 66,stand,,,
|
||||
2381.92 3499.16 52.125,69,stand,,,
|
||||
2442.63 3356.5 52.125,68 70,stand,,,
|
||||
2474.98 3242.92 52.125,69 71,stand,,,
|
||||
2553.66 3031.6 48.125,70 60 72 74 60 152,stand,,,
|
||||
2721.51 2974.06 48.1127,71 73,stand,,,
|
||||
2913.97 2904.22 48.125,72 74 76 77 66 156,stand,,,
|
||||
2939.03 3162.09 48.125,73 71 77 154,stand,,,
|
||||
3325.14 2975.96 50.1482,76 155,stand,,,
|
||||
3140.22 2928.42 48.125,75 73 77,stand,,,
|
||||
3032.11 2982.09 48.125,76 74 73,stand,,,
|
||||
1301.13 432.602 54.6113,25,crouch,5.18005 58.0861 0,,
|
||||
1642.13 599.138 48.125,24,crouch,6.55884 151.327 0,,
|
||||
1616.88 1068.86 48.125,22,crouch,5.87219 -141.162 0,,
|
||||
1183.1 1095.78 48.125,82 164,stand,25.7245 169.982 0,,
|
||||
1055.42 1105.61 48.125,81 18 19 83,stand,26.7627 168.427 0,,
|
||||
1041.71 1237.6 57.125,82 84,stand,44.8956 80.2016 0,,
|
||||
1097.49 1352.93 58.125,83 85 91,stand,17.6111 -10.2763 0,,
|
||||
1291.36 1393.73 56.125,84 86 90 166 172,stand,24.3457 -14.0721 0,,
|
||||
1495.63 1254.78 56.125,85 87 88 89 166,stand,11.7389 140.637 0,,
|
||||
1626.25 1396.31 81.225,86,crouch,10.014 -147.364 0,,
|
||||
1578.98 1128.61 76.125,86,crouch,7.42676 134.941 0,,
|
||||
1482.93 1140.57 56.125,86,crouch,3.62549 -92.8001 0,,
|
||||
1244.9 1452.9 56.125,85,crouch,3.10913 96.4339 0,,
|
||||
1033.2 1475.59 56.125,84,crouch,6.73455 -50.8436 0,,
|
||||
1269.34 769.496 48.125,26 27 93,stand,35.7439 -82.9621 0,,
|
||||
1306.57 645.726 48.1786,92 25 94,stand,32.8051 84.1729 0,,
|
||||
1232.2 613.306 56.125,93 95,stand,21.0662 176.722 0,,
|
||||
1075.71 621.073 112.125,94 96,stand,36.7767 -88.1367 0,,
|
||||
1083.83 424.106 112.125,95 97 100,stand,27.4548 172.058 0,,
|
||||
982.741 420.085 112.125,96 98 106,stand,33.327 128.722 0,,
|
||||
987.97 515.063 112.125,97 99 111,stand,15.8862 92.116 0,,
|
||||
871.125 424.125 119.125,98,crouch,8.28911 32.3779 0,,
|
||||
1188.95 420.009 112.125,96 101 112,stand,22.9668 -71.2232 0,,
|
||||
1195.73 303.274 112.125,100 102 110,stand,44.0276 -105.237 0,,
|
||||
1181.58 229.643 113.125,101 103,stand,52.4926 -97.2938 0,,
|
||||
1174.41 95.9936 112.125,102 104 109,stand,29.8718 162.731 0,,
|
||||
994.787 104.563 112.125,103 105 108,stand,26.7626 110.93 0,,
|
||||
976.899 229.154 113.125,104 106,stand,23.9996 91.4184 0,,
|
||||
975.67 340.479 112.125,105 97 107,stand,25.9002 87.7929 0,,
|
||||
809.563 329.102 112.125,106 113,stand,42.8191 91.7645 0,,
|
||||
945.125 39.1313 112.125,104,crouch,8.97576 59.992 0,,
|
||||
1209.5 63.6995 112.125,103,crouch,6.21819 121.12 0,,
|
||||
1262.52 247.487 112.125,101,crouch,5.0042 133.029 0,,
|
||||
876.071 531.984 112.125,98,crouch,9.6679 -43.6091 0,,
|
||||
1259.22 484.584 112.125,100,crouch,4.66363 -163.772 0,,
|
||||
816.378 534.319 -7.875,107 114,stand,37.6391 72.2528 0,,
|
||||
951.472 530.797 -7.875,113 115 124,stand,14.848 -75.0355 0,,
|
||||
1171.17 387.431 -7.875,114 116 123,stand,12.431 -88.8453 0,,
|
||||
1162.67 244.137 -7.875,115 117 119,stand,27.279 101.768 0,,
|
||||
1163.59 66.1069 -7.875,116 118 121,stand,18.3032 -168.271 0,,
|
||||
1009.17 84.2364 -7.875,117 119 120,stand,20.5444 89.8529 0,,
|
||||
1035.14 238.347 -7.875,118 116 122,stand,31.2505 53.2519 0,,
|
||||
949.916 43.6078 -7.875,118,crouch,6.04241 43.4081 0,,
|
||||
1262.33 39.7411 -7.875,117,crouch,5.69634 131.293 0,,
|
||||
945.125 272.875 -7.875,119,crouch,6.21819 -4.07477 0,,
|
||||
1262.88 487.593 -7.875,115,crouch,5.0042 -169.133 0,,
|
||||
938.828 321.298 -7.875,114,crouch,-7.94316 120.071 0,,
|
||||
579.125 335.547 61.96,29,crouch,7.94304 68.4515 0,,
|
||||
444.996 813.111 49.125,35,crouch,3.97149 12.1685 0,,
|
||||
528.305 957.345 49.125,35,crouch,6.04241 -33.9356 0,,
|
||||
529.413 1430.79 57.3276,37,crouch,7.08062 58.9593 0,,
|
||||
958.662 2266.31 59.9619,43 46,stand,18.8195 94.8736 0,,
|
||||
407.491 2603.23 64.125,45,crouch,4.66363 -35.4792 0,,
|
||||
1080.75 2637.27 48.0458,47 7 6,stand,40.0561 -49.1242 0,,
|
||||
853.172 2925.02 48.0251,6,crouch,5.69634 -28.2337 0,,
|
||||
1394.91 2711.82 47.4564,5 134,stand,34.876 178.095 0,,
|
||||
1233.42 2661.8 118.125,133 135,stand,63.7151 -166.892 0,,
|
||||
1219.2 2726.65 118.125,134 136,stand,51.2786 101.421 0,,
|
||||
1396.52 2784.92 200.125,135 137 138,stand,52.3168 3.00592 0,,
|
||||
1489.57 2841.92 200.125,136,crouch,17.4407 10.603 0,,
|
||||
1476.54 2773.26 200.125,136 139,stand,28.8335 -43.6146 0,,
|
||||
1619.69 2381.51 200.125,138 140,stand,40.5779 -59.8469 0,,
|
||||
1624.04 2476.04 200.125,139,crouch,16.7486 30.631 0,,
|
||||
1826.85 3288.65 46.3117,1,crouch,6.04241 -117.849 0,,
|
||||
1890.18 2519.43 48.0139,14 143,stand,54.5635 24.0887 0,,
|
||||
1986.16 2548.99 48.0001,142 144 147,stand,22.7911 -70.3608 0,,
|
||||
2035.59 2411.14 48.0203,143 145 146,stand,24.6917 -68.6359 0,,
|
||||
2063.87 2342.6 48.0271,144 53 150,stand,34.7057 -62.934 0,,
|
||||
1985.63 2342.12 48.125,144,crouch,8.63518 67.5891 0,,
|
||||
2042.3 2624.27 48.125,143,crouch,8.80547 -113.01 0,,
|
||||
1930.14 2262.65 48.125,13 149,stand,22.445 -147.369 0,,
|
||||
1972.94 2279.27 48.125,148,climb,10.36 17.5244 0,,
|
||||
2021.86 2294.01 66.125,145 53,climb,17.7813 -163.256 0,,
|
||||
2366.95 2415.52 48.0149,53 51 58,stand,22.9614 23.9184 0,,
|
||||
2396.03 2925.77 48.125,71 153 60,stand,66.3025 -155.362 0,,
|
||||
2289.69 2842.54 48.125,152 50 51,stand,24.516 -138.783 0,,
|
||||
2982.53 3314.45 44.9166,74,crouch,6.90491 -114.597 0,,
|
||||
3331.15 3052.92 49.8067,75,crouch,6.38855 -139.975 0,,
|
||||
2950.37 2725.18 48.125,73,crouch,5.52612 115.737 0,,
|
||||
2901.37 2036.54 48.9315,62,crouch,7.08069 73.0882 0,,
|
||||
3036.15 2081.71 55.1824,62,crouch,10.014 127.652 0,,
|
||||
2732.94 2254.07 48.0258,58 61 160,stand,25.3839 -150.16 0,,
|
||||
2772.69 2091.46 48.125,159 161,stand,12.9474 -76.2654 0,,
|
||||
2738.01 2003.28 48.125,160,crouch,6.73462 89.8368 0,,
|
||||
2848.45 1677.01 57.6701,57,crouch,8.63525 151.47 0,,
|
||||
2404.81 1525.48 54.3341,56,crouch,8.28918 79.8118 0,,
|
||||
1301.11 1044.74 48.125,21 81 165,stand,35.5682 99.318 0,,
|
||||
1299.36 1104.24 56.125,164 167,climb,11.9147 83.6076 0,,
|
||||
1328.04 1268.42 56.125,167 85 86,stand,21.7584 -91.1299 0,,
|
||||
1305.25 1146.11 56.125,165 166,climb,10.8765 -94.5851 0,,
|
||||
1249.85 1557.53 58.3684,16 169 171 173,stand,18.1274 151.431 0,,
|
||||
1323.65 1721.47 52.1055,168 170,stand,43.5114 115.863 0,,
|
||||
1273.5 1849.7 52.3302,169 10,stand,33.1512 125.185 0,,
|
||||
1243.54 1506.63 56.125,168 172,climb,11.7389 -95.9973 0,,
|
||||
1240.92 1464.17 56.125,171 85,climb,9.15161 84.9475 0,,
|
||||
1418.15 1545.38 60.1048,168 174,stand,24.516 -1.5652 0,,
|
||||
1540.88 1558.42 62.043,173 175 176,stand,25.0378 13.4586 0,,
|
||||
1630.62 1467.86 53.1559,174,crouch,7.08069 146.064 0,,
|
||||
1591.16 1683.22 50.0567,174,crouch,4.14185 -135.203 0,,
|
||||
|
@@ -0,0 +1,167 @@
|
||||
166
|
||||
-14108.7 1405.66 640.125,1 7 9 85 163,stand,15.2325 177.946 0.0,,
|
||||
-13824.1 1490.28 640.125,0 2 5 7,stand,17.4683 159.725 0.0,,
|
||||
-13772.5 1812.95 640.125,1 3 5,stand,39.3091 35.4199 0.0,,
|
||||
-13692.5 1850.22 640.125,2 4,stand,35.387 42.4731 0.0,,
|
||||
-13602.9 1845.51 610.016,3 8 98 160,stand,38.5236 5.63049 0.0,,
|
||||
-13825.3 1812.02 640.125,1 2 6,stand,40.6494 87.7203 0.0,,
|
||||
-13827.1 2122.1 720.125,5,stand,41.5448 74.8389 0.0,,
|
||||
-13802.0 1359.18 640.125,0 1 8,stand,31.355 -10.3436 0.0,,
|
||||
-13557.0 1171.02 607.6,4 7 81 97 160 162 163,stand,14.5569 115.977 0.0,,
|
||||
-14788.1 1478.32 640.125,0 10 27 29 87 89,stand,25.1971 44.7528 0.0,,
|
||||
-14740.8 1652.1 640.125,9 11 27,stand,37.738 -33.75 0.0,,
|
||||
-14568.3 1650.31 728.125,10 12,stand,20.9399 2.0874 0.0,,
|
||||
-14456.7 1656.94 728.125,11 13,stand,39.0839 -0.939331 0.0,,
|
||||
-14449.4 1713.88 728.125,12 14,stand,37.2931 -179.187 0.0,,
|
||||
-14688.3 1724.49 832.125,13 15 18 26,stand,35.5023 173.535 0.0,,
|
||||
-14690.1 1968.84 832.125,14 16 19 20 21 26,stand,23.5162 8.24524 0.0,,
|
||||
-14861.6 1985.32 876.125,15 17 18 23,stand,20.3796 179.808 0.0,,
|
||||
-15083.7 1979.92 876.125,16 18 22 23 24 25,stand,31.4703 -104.601 0.0,,
|
||||
-14829.7 1806.38 876.125,14 16 17 24,stand,45.4669 -39.6497 0.0,,
|
||||
-14487.7 2213.82 833.351,15,stand,25.9827 96.6357 0.0,,
|
||||
-14639.8 2242.85 832.125,15 21 23,stand,40.7648 87.6764 0.0,,
|
||||
-14534.0 1775.13 832.125,15 20,stand,36.3977 -126.519 0.0,,
|
||||
-15321.9 2218.35 876.125,17 23 25,stand,31.355 176.402 0.0,,
|
||||
-14835.0 2163.78 876.125,16 17 20 22,stand,36.3977 0.0219727 0.0,,
|
||||
-15078.5 1718.49 882.469,17 18 25,stand,45.2417 -22.3352 0.0,,
|
||||
-15316.4 1784.35 876.125,17 22 24,stand,48.6035 -1.76331 0.0,,
|
||||
-14772.9 1711.13 832.125,14 15,stand,26.0925 68.1097 0.0,,
|
||||
-14959.3 1622.43 640.125,9 10 28,stand,21.275 -88.2202 0.0,,
|
||||
-15410.7 1608.11 687.36,27 29 30 31 89,stand,17.8033 -47.1204 0.0,,
|
||||
-15681.1 1093.58 646.619,9 28 30 35 45 89,stand,14.7821 130.408 0.0,,
|
||||
-15705.4 2140.44 681.507,28 29 31,stand,27.4384 -127.013 0.0,,
|
||||
-16009.3 1841.86 693.82,28 30 32 36,stand,24.527 -142.245 0.0,,
|
||||
-16251.3 1952.94 694.954,31 33,stand,22.511 -134.066 0.0,,
|
||||
-16511.1 1713.92 699.455,32 34,stand,30.1245 -78.5248 0.0,,
|
||||
-16547.8 1448.61 674.341,33 36 147,stand,26.7627 23.1647 0.0,,
|
||||
-16254.9 1177.5 707.38,29 36 37,stand,37.1777 -85.3528 0.0,,
|
||||
-16223.1 1440.51 675.311,31 34 35,stand,21.5002 168.069 0.0,,
|
||||
-16255.2 1163.27 815.927,35 38,stand,-54.6515 -133.396 0.0,,
|
||||
-16262.5 1155.95 940.125,37 39,stand,16.7981 -128.804 0.0,,
|
||||
-16352.4 1066.99 936.125,38 40 42 43 44,stand,33.8214 52.1686 0.0,,
|
||||
-16215.3 799.54 939.987,39 41 42,stand,24.8621 -29.1357 0.0,,
|
||||
-16274.2 718.678 962.353,40 42,stand,30.91 -41.4569 0.0,,
|
||||
-16427.9 817.739 939.171,39 40 41 43,stand,19.259 -74.5697 0.0,,
|
||||
-16583.8 948.464 936.125,39 42 44 51,stand,24.8621 -125.634 0.0,,
|
||||
-16440.3 1176.3 936.125,39 43,stand,23.5162 132.155 0.0,,
|
||||
-15748.8 733.994 659.317,29 46 78 165,stand,20.2698 -57.5134 0.0,,
|
||||
-16051.9 362.6 663.002,45 47 48 52 58 78,stand,18.479 -133.105 0.0,,
|
||||
-16333.3 228.431 665.993,46 48 49 63,stand,16.5729 118.081 0.0,,
|
||||
-16534.4 516.787 676.424,46 47 49 50 53 55,stand,20.2698 18.3032 0.0,,
|
||||
-16337.5 539.08 689.156,47 48 55,stand,24.4116 -107.347 0.0,,
|
||||
-16497.4 760.976 672.114,48 54 151,stand,27.6581 60.0732 0.0,,
|
||||
-16691.3 824.029 845.125,43 54,stand,12.876 43.1653 0.0,,
|
||||
-17038.4 405.993 742.875,46 53 56,stand,22.511 2.17529 0.0,,
|
||||
-16869.5 624.949 755.853,48 52 54,stand,34.4916 -12.9749 0.0,,
|
||||
-16794.9 714.015 744.702,50 51 53,stand,47.9279 19.3964 0.0,,
|
||||
-16530.8 215.484 687.956,48 49 56,stand,20.7202 60.271 0.0,,
|
||||
-17006.5 238.469 722.94,52 55,stand,21.6156 10.1788 0.0,,
|
||||
-15591.5 99.9405 672.125,58 60 64,stand,15.4523 165.388 0.0,,
|
||||
-15592.0 245.978 678.883,46 57 59,stand,21.6156 107.38 0.0,,
|
||||
-15402.8 273.165 688.165,58 78,stand,19.0393 63.5889 0.0,,
|
||||
-15499.8 7.90976 672.125,57 69,stand,24.8621 -88.1158 0.0,,
|
||||
-16141.4 -288.213 672.125,62 65 67 73 77,stand,23.8513 108.605 0.0,,
|
||||
-16189.1 88.08 672.125,61 63 64 77,stand,21.7255 -84.6826 0.0,,
|
||||
-16334.4 95.2347 672.125,47 62 65 71 74,stand,38.1885 7.44873 0.0,,
|
||||
-15872.1 142.064 672.125,57 62,stand,41.2097 -162.96 0.0,,
|
||||
-16274.2 -552.046 676.098,61 63 66 70 74,stand,24.1919 5.43274 0.0,,
|
||||
-15821.5 -542.029 680.676,65 67 68,stand,26.543 99.2725 0.0,,
|
||||
-15832.5 -290.98 672.125,61 66 69,stand,36.5076 54.0308 0.0,,
|
||||
-15530.0 -560.041 686.604,66 69,stand,24.1919 101.404 0.0,,
|
||||
-15537.5 -264.439 672.125,60 67 68,stand,32.0306 80.4639 0.0,,
|
||||
-16495.1 -681.845 682.168,65 73,stand,22.7307 45.0714 0.0,,
|
||||
-16729.7 137.452 689.547,63 72,stand,29.4543 -26.3452 0.0,,
|
||||
-16974.3 -167.733 685.91,71 73,stand,23.4064 57.2003 0.0,,
|
||||
-16887.3 -404.687 681.372,61 70 72 74,stand,20.1599 14.9799 0.0,,
|
||||
-16391.2 -152.788 677.623,63 65 73,stand,19.3744 -29.1412 0.0,,
|
||||
-15917.6 -113.189 734.125,76,stand,35.9473 -169.426 0.0,,
|
||||
-16065.9 -126.213 720.925,75 77,stand,49.4989 -174.688 0.0,,
|
||||
-16162.8 -134.877 672.125,61 62 76,stand,35.6122 100.091 0.0,,
|
||||
-15381.5 505.295 649.311,45 46 59 79 165,stand,12.8815 176.951 0.0,,
|
||||
-14822.9 511.401 633.648,78 80 83 88 164 165,stand,12.0959 60.5182 0.0,,
|
||||
-14207.9 545.008 630.517,79 81 84 164,stand,22.6208 168.585 0.0,,
|
||||
-13630.1 519.951 615.246,8 80 82 90 162,stand,12.3212 89.4122 0.0,,
|
||||
-13707.1 -28.8804 607.68,81,stand,17.8088 -0.258179 0.0,,
|
||||
-14848.1 166.328 682.574,79,stand,23.9667 149.919 0.0,,
|
||||
-14182.6 931.184 682.942,80 85 86,stand,17.3584 168.734 0.0,,
|
||||
-14189.1 1249.0 640.125,0 84,stand,19.5996 91.6864 0.0,,
|
||||
-14612.3 941.627 640.125,84 87 164,stand,15.2325 -40.567 0.0,,
|
||||
-14717.7 951.732 640.125,9 86 88,stand,15.5676 -174.727 0.0,,
|
||||
-14989.1 941.166 640.125,79 87 89,stand,17.3584 -135.868 0.0,,
|
||||
-15260.5 1115.25 640.125,9 28 29 88,stand,23.0713 21.3629 0.0,,
|
||||
-12670.4 673.062 595.649,81 91 97,stand,6.94336 -66.1816 0.0,,
|
||||
-12140.3 254.056 597.042,90 92 93,stand,7.3938 -53.866 0.0,,
|
||||
-12068.1 -279.073 586.941,91,stand,13.5516 -81.189 0.0,,
|
||||
-11917.5 473.186 585.69,91 94,stand,10.3052 58.1232 0.0,,
|
||||
-11943.3 1010.53 577.942,93 95 96,stand,12.9913 90.2637 0.0,,
|
||||
-11832.2 1609.55 576.125,94 102 103 107 109,stand,8.39905 48.9386 0.0,,
|
||||
-12353.9 1015.58 593.375,94 97 103 104,stand,4.48242 90.0385 0.0,,
|
||||
-12694.2 1102.24 590.858,8 90 96 98 105 158,stand,16.5729 8.96484 0.0,,
|
||||
-12955.6 2258.49 608.626,4 97 99 101 105 106,stand,15.1172 -108.622 0.0,,
|
||||
-12661.2 2843.32 605.404,98 100 106,stand,17.0233 0.527344 0.0,,
|
||||
-12111.0 2787.26 608.125,99 101 110 115 136,stand,15.6775 24.3842 0.0,,
|
||||
-12186.1 2296.33 605.785,98 100 102 110,stand,18.2538 52.1521 0.0,,
|
||||
-12207.0 1854.18 623.152,95 101 103 106,stand,16.7981 -76.3715 0.0,,
|
||||
-12276.7 1573.81 611.752,95 96 102 105,stand,11.3104 0.335083 0.0,,
|
||||
-12335.4 741.17 680.367,96,stand,24.8621 -113.972 0.0,,
|
||||
-12743.2 1617.43 585.955,97 98 103 106,stand,10.9753 52.1082 0.0,,
|
||||
-12758.0 1881.76 599.758,98 99 102 105,stand,19.3744 -80.1233 0.0,,
|
||||
-11240.9 1555.6 576.582,95 108,stand,35.0519 -31.5198 0.0,,
|
||||
-11198.6 1384.67 576.125,107,stand,32.2504 -68.4778 0.0,,
|
||||
-11670.7 2060.56 576.125,95 110 111 113,stand,20.2698 75.0531 0.0,,
|
||||
-12004.8 2435.4 603.799,100 101 109 115,stand,11.2006 -101.288 0.0,,
|
||||
-11672.5 2317.29 576.125,109 112,stand,16.7981 34.173 0.0,,
|
||||
-11513.0 2539.82 576.125,111 113 114 115,stand,15.1172 62.8418 0.0,,
|
||||
-11336.1 2523.05 576.125,109 112 116,stand,18.924 -132.204 0.0,,
|
||||
-11512.9 2845.84 608.125,112 117 135 136,stand,11.8707 -175.32 0.0,,
|
||||
-11720.9 2626.04 576.125,100 110 112,stand,21.3904 166.877 0.0,,
|
||||
-10947.5 2615.77 576.125,113 117 118,stand,14.8975 18.6438 0.0,,
|
||||
-10958.8 2857.06 608.125,114 116 133 134,stand,18.7042 6.88843 0.0,,
|
||||
-9437.67 2606.12 576.125,116 119 127 131,stand,19.1492 -20.9949 0.0,,
|
||||
-9434.78 2462.67 607.09,118 120,stand,34.1565 -142.608 0.0,,
|
||||
-9437.48 2229.01 693.743,119 121,stand,24.4116 -87.1765 0.0,,
|
||||
-9433.64 2132.55 734.125,120 122 124 126,stand,22.1759 -86.9513 0.0,,
|
||||
-8976.79 2024.97 726.125,121 123,stand,21.8353 0.175781 0.0,,
|
||||
-6431.41 2081.22 586.357,122,stand,27.323 5.5481 0.0,,
|
||||
-9559.81 2000.02 726.125,121 125,stand,26.7627 -158.148 0.0,,
|
||||
-9792.22 1947.08 719.514,124,stand,21.5002 179.566 0.0,,
|
||||
-9825.84 2210.55 715.354,121,stand,21.5002 179.341 0.0,,
|
||||
-8995.92 2599.1 576.125,118,stand,9.05823 1.60095 0.0,,
|
||||
-8808.1 2996.83 608.125,129 131,stand,15.0293 -178.981 0.0,,
|
||||
-8865.02 3668.35 608.125,128 130,stand,28.6908 -72.6227 0.0,,
|
||||
-9243.6 3260.6 608.125,129 131 132,stand,14.469 -176.295 0.0,,
|
||||
-9460.02 2985.6 608.125,118 128 130 133,stand,29.8114 37.2241 0.0,,
|
||||
-10005.9 3255.6 608.125,130 133,stand,20.7422 -176.674 0.0,,
|
||||
-10088.7 2951.19 608.125,117 131 132,stand,17.0453 -179.509 0.0,,
|
||||
-11168.2 3187.19 608.125,117 135,stand,15.1392 163.474 0.0,,
|
||||
-11546.1 3234.35 608.125,114 134 136,stand,22.7582 91.579 0.0,,
|
||||
-11948.6 3114.28 608.125,100 114 135 137,stand,22.8021 169.901 0.0,,
|
||||
-12181.3 3124.06 718.125,136 138,stand,33.7775 22.9749 0.0,,
|
||||
-12177.9 3190.93 718.125,137 139,stand,37.8094 4.49585 0.0,,
|
||||
-11934.0 3194.1 862.125,138 140,stand,42.8467 9.42322 0.0,,
|
||||
-11921.8 3274.86 868.446,139 141 143 145 146,stand,40.3857 157.81 0.0,,
|
||||
-12056.3 3434.53 871.046,140 142 143 144 146,stand,36.0187 102.488 0.0,,
|
||||
-12223.2 3638.29 863.125,141 143,stand,37.359 125.329 0.0,,
|
||||
-12170.5 3395.22 868.067,140 141 142 144,stand,18.2098 -115.739 0.0,,
|
||||
-11915.6 3619.12 863.125,141 143,stand,23.6975 -135.975 0.0,,
|
||||
-12225.5 3260.2 869.68,140,stand,37.1393 -135.794 0.0,,
|
||||
-11922.9 3382.82 868.535,140 141,stand,31.4264 133.646 0.0,,
|
||||
-16634.6 1331.22 672.125,34 148 152,stand,28.0646 20.5304 0.0,,
|
||||
-16620.4 1214.06 672.125,147 149 150,stand,30.1959 120.836 0.0,,
|
||||
-16781.3 1229.75 672.125,148 150,stand,30.7562 94.4409 0.0,,
|
||||
-16613.5 1087.31 672.125,148 149 151,stand,26.1639 -49.458 0.0,,
|
||||
-16302.3 899.23 672.125,50 150,stand,25.8289 -144.534 0.0,,
|
||||
-16418.3 1143.71 672.125,147,stand,31.4264 -178.839 0.0,,
|
||||
-16973.2 1682.68 721.705,154,stand,16.6443 -19.9762 0.0,,
|
||||
-16141.7 2581.99 707.808,153 155,stand,23.8129 20.4535 0.0,,
|
||||
-15677.8 2331.32 691.025,154 156,stand,29.7455 -64.2126 0.0,,
|
||||
-14758.5 2624.31 645.812,155 157,stand,24.3732 6.34155 0.0,,
|
||||
-13126.6 2830.33 607.608,156,stand,21.7969 -5.7489 0.0,,
|
||||
-13034.0 1123.35 598.435,97 159 161,stand,26.2738 0.529785 0.0,,
|
||||
-13012.7 1574.88 698.55,158 160,stand,52.4817 -142.144 0.0,,
|
||||
-13548.8 1535.59 613.846,4 8 159,stand,26.2738 2.87537 0.0,,
|
||||
-13011.1 783.126 691.201,158 162,stand,28.1799 102.054 0.0,,
|
||||
-13541.2 812.795 625.913,8 81 161,stand,33.5522 -15.8344 0.0,,
|
||||
-13940.4 1035.82 640.125,0 8,stand,25.6036 31.9891 0.0,,
|
||||
-14625.7 496.708 637.054,79 80 86,stand,22.132 82.746 0.0,,
|
||||
-15221.6 796.493 689.182,45 78 79,stand,32.6569 -14.5764 0.0,,
|
||||
|
@@ -0,0 +1,469 @@
|
||||
468
|
||||
-21102.9 2869.76 -346.205,1 6 169,stand,32.5854 73.6586 0,,
|
||||
-20934.6 2935.67 -347.083,0 2,stand,27.7734 -139.751 0,,
|
||||
-20506.7 2936.34 -359.199,1 3,stand,20.1599 -1.89438 0,,
|
||||
-20320.8 2931.86 -326.828,2 4 5 190 191 162,stand,20.0446 136.967 0,,
|
||||
-20404.8 3096.04 -336.394,3 164 168 191 192,stand,21.7255 -109.143 0,,
|
||||
-20460.1 2794.9 -326.52,3 182 190,stand,30.0146 89.9349 0,,
|
||||
-21174.9 3028.27 -329.799,0 7 166 167,stand,20.495 76.7183 0,,
|
||||
-21340.6 3197.48 -325.827,6 8 166 215,stand,24.527 120.955 0,,
|
||||
-21395.1 3389.73 -352.951,7 9 16,stand,18.3636 171.569 0,,
|
||||
-21191 3408.57 -354.725,8 10,stand,15.3424 9.11392 0,,
|
||||
-21061.7 3462.36 -350.203,9 11 64,stand,27.7734 5.86746 0,,
|
||||
-20865.9 3475.03 -359.76,10 12 64,stand,25.8673 3.74161 0,,
|
||||
-20728.4 3532.21 -351.579,11 13,stand,19.8193 31.2898 0,,
|
||||
-20536.2 3573.85 -365.424,12 14,stand,22.9559 6.09268 0,,
|
||||
-20317 3581.45 -380.375,13 15,stand,19.4843 168.806 0,,
|
||||
-20130.7 3569.92 -367.756,14 52 49 163 164 192,stand,18.3636 126.475 0,,
|
||||
-21576.2 3458.69 -343.901,8 17,stand,40.7648 156.633 0,,
|
||||
-21689.7 3467.29 -356.499,16 18 25,stand,25.1971 82.0522 0,,
|
||||
-21939.9 3451.79 -324.59,17 19 23,stand,24.8621 1.30814 0,,
|
||||
-22195.9 3580.47 -354.265,18 20,stand,22.6208 146.218 0,,
|
||||
-22303.1 3711.76 -352.935,19 21,stand,23.8513 75.6691 0,,
|
||||
-22343.9 3928.92 -304.5,20 22 208,stand,16.0126 90.5611 0,,
|
||||
-22325.8 4066.17 -277.847,21 57 202 204 205,stand,16.463 85.7491 0,,
|
||||
-21997.3 3376.58 -341.888,18 24 213 214 215,stand,22.9559 37.6619 0,,
|
||||
-22247.3 3335.79 -269.309,23 212 211 210 209 213 214,stand,18.7042 -55.1726 0,,
|
||||
-21588.6 3679.65 -328.416,17 26 197 199 58,stand,15.7928 -117.514 0,,
|
||||
-21465.6 3814.83 -336.099,25 27 197 58,stand,11.3104 -137.784 0,,
|
||||
-21329.8 3926.73 -304.348,26 58 59 203,stand,13.6615 52.032 0,,
|
||||
-22695.3 4489.24 -284.7,29 54 57 204 207,stand,41.6602 11.9759 0,,
|
||||
-22523 4526.56 -323.876,28 30,stand,30.6848 13.4315 0,,
|
||||
-22303 4562.43 -320.533,29 31 34,stand,18.8141 84.0956 0,,
|
||||
-22293 4785.16 -315.215,30 32 33,stand,25.0873 82.195 0,,
|
||||
-22425.7 4840.76 -316.891,31 55 54,stand,16.908 122.735 0,,
|
||||
-22177.5 4881.76 -327.867,31 56 225 223,stand,27.4384 45.3468 0,,
|
||||
-22179.5 4544.9 -317.651,30 35 204,stand,16.5729 -26.3994 0,,
|
||||
-22037.8 4390.4 -346.829,34 36,stand,16.5729 -47.7898 0,,
|
||||
-21775.2 4258.79 -368.965,35 37,stand,16.1279 -21.9225 0,,
|
||||
-21441.2 4173.04 -348.664,36 38,stand,9.40979 -12.628 0,,
|
||||
-21348.2 4162.92 -348.416,37 39 203,stand,17.6935 -98.2994 0,,
|
||||
-21186.4 4110.79 -358.688,38 40,stand,21.3904 -28.8658 0,,
|
||||
-21028.6 4091.66 -365.212,39 41,stand,19.8193 80.8821 0,,
|
||||
-20872.1 4131.93 -372.737,40 42 48,stand,23.6316 25.8955 0,,
|
||||
-20849.3 4316.94 -401.6,41 43,stand,22.511 50.6422 0,,
|
||||
-20722.4 4475.05 -417.99,42 44,stand,39.6442 40.4524 0,,
|
||||
-20619.7 4603.02 -425.043,43 45,stand,26.4276 56.6902 0,,
|
||||
-20616.4 4811.06 -395.082,44 46 47 229 230,stand,9.62952 86.8147 0,,
|
||||
-20751.5 5103.88 -351.603,45 47 218,stand,3.80676 87.7101 0,,
|
||||
-20341.5 5085.04 -360.371,46 45 230 231,stand,13.1012 162.857 0,,
|
||||
-20561.3 4009.47 -371.437,41 49,stand,13.6615 151.359 0,,
|
||||
-20241.9 4033.14 -375.338,48 50 15,stand,17.3584 -0.603485 0,,
|
||||
-19988.5 4013.44 -387.219,49 51 53,stand,20.0446 18.2436 0,,
|
||||
-19893.1 4039.5 -379.943,50 53,stand,20.2698 -142.421 0,,
|
||||
-19893.1 3722.8 -377.585,15 53 163,stand,19.5996 135.193 0,,
|
||||
-19899.6 3870.14 -379.374,52 51 50,stand,41.8854 -119.734 0,,
|
||||
-22708.9 4786.34 -289.663,28 55 32,stand,17.2485 -63.6101 0,,
|
||||
-22551.6 5083.78 -296.86,54 56 32 237,stand,24.527 17.914 0,,
|
||||
-22104.9 5103.04 -314.657,55 33 216,stand,3.58154 81.9698 0,,
|
||||
-22493.7 4277.69 -255.53,28 22 204 202 205 207,stand,23.0713 -20.8073 0,,
|
||||
-21653.3 3963.75 -272.144,27 199 25 26 201,stand,24.0765 6.73538 0,,
|
||||
-20977.8 3862.21 -304.305,27 60 63 64 203,stand,21.5002 175.914 0,,
|
||||
-20802.3 3930.26 -309.461,59 61,stand,25.9827 -21.3676 0,,
|
||||
-20395.9 3837.62 -324.553,60 62 63,stand,25.5322 -9.49692 0,,
|
||||
-20153.5 3849.24 -371.406,61,stand,10.3052 -174.682 0,,
|
||||
-20811.7 3746.99 -292.666,61 59 64,stand,22.7362 65.4958 0,,
|
||||
-21000 3654.53 -321.273,63 59 10 11 196,stand,23.8513 -128.056 0,,
|
||||
-22546 -1399.07 -682.005,66 70 72,stand,60.6995 48.8017 0,,
|
||||
-22544 -1737.09 -687.332,65 67 68 69,stand,27.8888 30.2128 0,,
|
||||
-22672.2 -1736.85 -667.875,66,stand,36.6229 22.1434 0,,
|
||||
-22551.7 -1890.45 -671.875,66,stand,26.4331 82.0573 0,,
|
||||
-22397.1 -1738.15 -663.875,66,stand,37.403 19.6824 0,,
|
||||
-22708.3 -1200.39 -671.375,65 71,stand,27.6636 -18.951 0,,
|
||||
-22548.6 -1054.39 -678.875,70 72,stand,26.7682 -100.036 0,,
|
||||
-22389.2 -1212.83 -669.875,71 65 73,stand,26.8781 50.0267 0,,
|
||||
-22017.1 -1207.07 -671.875,72 74 78 79,stand,15.0073 11.9536 0,,
|
||||
-21933.4 -1050.35 -679.159,73 75,stand,23.0713 73.6528 0,,
|
||||
-21885.4 -958.07 -671.375,74 76 78,stand,39.4189 -33.5958 0,,
|
||||
-21899.8 -832.258 -671.875,75 77,stand,28.3337 61.1448 0,,
|
||||
-21865 -683.427 -671.875,76,stand,31.1353 30.905 0,,
|
||||
-21764.5 -1031.61 -671.091,75 73 81 87,stand,33.5962 -110.978 0,,
|
||||
-21893.8 -1244.38 -671.875,73 80 81,stand,33.2611 -80.9688 0,,
|
||||
-21860.1 -1523.87 -671.875,79,stand,26.3177 -59.7982 0,,
|
||||
-21709.1 -1182.86 -671.375,82 78 79 83,stand,30.8002 167.201 0,,
|
||||
-21595.1 -1241.4 -671.875,81 83 84 107,stand,33.7115 168.432 0,,
|
||||
-21502.8 -1086.65 -671.375,81 82 87 92 93 107,stand,21.5057 -140.504 0,,
|
||||
-21598.4 -1338.21 -671.875,82 85 86,stand,36.5076 11.9371 0,,
|
||||
-21344.9 -1346.72 -671.875,84,stand,30.0146 -172.611 0,,
|
||||
-21531 -1537.64 -671.875,84,stand,21.8408 -47.1913 0,,
|
||||
-21604.3 -959.151 -671.875,83 78 88,stand,34.0466 135.346 0,,
|
||||
-21579.3 -823.469 -671.875,87 89 90 91,stand,23.1812 177.787 0,,
|
||||
-21776.8 -835.874 -671.875,88,stand,20.05 1.51654 0,,
|
||||
-21561.6 -632.512 -671.875,88,stand,21.5057 -91.8837 0,,
|
||||
-21474.5 -735.124 -671.875,88,stand,26.2079 -122.904 0,,
|
||||
-21193.6 -1171.6 -671.875,83 93 94 96 107,stand,15.2325 154.935 0,,
|
||||
-21301.2 -977.624 -671.875,92 83 97 96,stand,22.2858 -148.628 0,,
|
||||
-21133.6 -1238.58 -671.875,92 95 96,stand,25.1971 -6.73968 0,,
|
||||
-21101.4 -1434.01 -671.875,94,stand,15.9027 52.0536 0,,
|
||||
-20960.3 -1176.67 -671.875,94 97 99 92 93,stand,17.4738 79.8216 0,,
|
||||
-20970 -965.033 -659.875,96 98 93,stand,45.4669 70.9831 0,,
|
||||
-20909.5 -748.783 -671.875,97,stand,32.926 72.3234 0,,
|
||||
-20793.6 -1208.16 -670.348,96 100,stand,17.8088 2.92829 0,,
|
||||
-20541.4 -1150.84 -671.375,99 101 103,stand,21.9507 60.7109 0,,
|
||||
-20374.2 -1179.81 -671.875,100 102,stand,31.6956 -108.836 0,,
|
||||
-20391.8 -1312.9 -663.875,101,stand,32.8162 62.6939 0,,
|
||||
-20536.5 -798.626 -671.875,100 104,stand,8.39905 89.4566 0,,
|
||||
-20537.6 -562.185 -567.875,103 105,stand,18.3691 92.7031 0,,
|
||||
-20543.1 -355.612 -510.057,104 106,stand,9.40979 91.8077 0,,
|
||||
-20544.7 -160.429 -522.455,105 108 109,stand,19.3744 89.2369 0,,
|
||||
-21420.6 -1208.9 -673.033,92 82 83,stand,37.7435 -21.8239 0,,
|
||||
-20397.9 -180.36 -510.03,106,stand,15.0073 128.837 0,,
|
||||
-20559.1 115.703 -515.858,110 106,stand,13.8867 91.8791 0,,
|
||||
-20559.4 354.854 -464.603,111 109,stand,20.7202 89.3028 0,,
|
||||
-20565 698.358 -476.443,110 112,stand,12.2113 119.092 0,,
|
||||
-20671.4 776.29 -436.244,111 113,stand,5.48767 -155.687 0,,
|
||||
-20950.2 762.377 -356.138,112 114,stand,7.9541 -167.327 0,,
|
||||
-21294.6 593.099 -261.26,113 115,stand,34.6069 44.6324 0,,
|
||||
-21537.3 462.732 -269.304,114 116,stand,21.8408 -169.788 0,,
|
||||
-21764 424.053 -283.913,115 117 119,stand,22.511 -97.4428 0,,
|
||||
-21784.5 229.257 -269.081,116 118,stand,39.6442 24.5109 0,,
|
||||
-21692.6 259.626 -254.739,117,stand,31.9208 89.3522 0,,
|
||||
-21878.2 652.074 -278.706,116 120,stand,27.3285 52.9545 0,,
|
||||
-21963.9 755.175 -276.595,119 121 131,stand,36.8481 19.3638 0,,
|
||||
-21867.7 947.092 -280.592,120 122 130,stand,33.8214 -176.577 0,,
|
||||
-21945.5 1175.76 -274.265,121 123 129,stand,22.1759 135.418 0,,
|
||||
-22117.5 1433.28 -289.512,122 124,stand,17.699 -53.058 0,,
|
||||
-22277.8 1520.71 -282.17,123 144,stand,20.3851 123.207 0,,
|
||||
-22471.8 1857.16 -273.324,126 142 144,stand,19.9347 119.175 0,,
|
||||
-22596.8 2087.44 -248.435,125 127 136 137,stand,19.7095 115.253 0,,
|
||||
-22613.4 1813.52 -254.633,126 128 134,stand,24.4171 -95.0203 0,,
|
||||
-22440.5 1520.55 -251.143,127 129 133,stand,13.1067 -60.754 0,,
|
||||
-22165 1196.22 -256.127,128 130 131 122 133,stand,21.6156 113.605 0,,
|
||||
-22234 820.347 -255.875,129 121 131 132,stand,25.9827 97.6964 0,,
|
||||
-22049.2 843.709 -252.851,130 120 129,stand,38.4137 -73.0806 0,,
|
||||
-22364.8 1067.49 -255.875,130 133,stand,20.7202 119.845 0,,
|
||||
-22525.8 1385.39 -255.875,132 134 128 129,stand,11.9861 120.284 0,,
|
||||
-22762.5 1814.05 -255.875,133 127 135 151,stand,22.6263 58.1346 0,,
|
||||
-22773.3 1977.97 -261.327,134 136 151,stand,31.6956 163.081 0,,
|
||||
-22692.1 2118.78 -249.141,135 137 126,stand,26.8781 18.2432 0,,
|
||||
-22667.7 2394.24 -257.875,136 126 138 145,stand,39.1992 7.71832 0,,
|
||||
-22540.5 2607.77 -261.295,137 139 145 173 174 176,stand,21.0553 -86.0005 0,,
|
||||
-22325.3 2485.7 -256.154,138 140 152,stand,21.0553 176.386 0,,
|
||||
-22202.7 2232.05 -256.441,139 141,stand,11.9861 -63.4511 0,,
|
||||
-22136.2 2072.77 -255.872,140 142 143,stand,24.6368 -160.647 0,,
|
||||
-22347.8 1828.67 -254.826,141 143 125 144,stand,36.8481 -147.442 0,,
|
||||
-21965.3 1831.35 -255.875,142 141,stand,26.3177 -13.6226 0,,
|
||||
-22344 1661.62 -274.863,142 125 124,stand,51.6302 -31.5358 0,,
|
||||
-22755.5 2650.75 -251.617,138 137 146 176,stand,22.6263 -45.9389 0,,
|
||||
-22977.7 2666.29 -258.617,145 147 148,stand,20.8301 -101.936 0,,
|
||||
-23186.8 2629.92 -256.203,146 148,stand,16.7981 -34.4088 0,,
|
||||
-23115 2481.13 -255.875,147 146 149 150,stand,16.9135 41.0618 0,,
|
||||
-22950.9 2319.45 -261.875,148 150 151,stand,33.5962 -107.435 0,,
|
||||
-23051.2 2273.97 -255.875,149 151 148,stand,41.2152 -173.172 0,,
|
||||
-22883.9 2033.53 -255.875,150 135 134 149,stand,31.6956 -59.507 0,,
|
||||
-22264.5 2559.02 -277.606,139 153 177 184,stand,16.6882 -107.424 0,,
|
||||
-22095.2 2257.14 -267.3,152 154 184 194,stand,12.7716 -52.4428 0,,
|
||||
-21912.8 1945.03 -261.982,153 155,stand,23.7415 -63.4182 0,,
|
||||
-21772.3 1879.63 -273.128,154 156 194 193 195,stand,17.699 -75.8547 0,,
|
||||
-21655.9 1584.82 -262.471,155 157 193,stand,25.0873 -33.0739 0,,
|
||||
-21301 1731.9 -283.42,156 158 185 186 193,stand,12.5464 8.01496 0,,
|
||||
-20811.5 1926.42 -315.866,157 159 188 186,stand,24.1919 17.9741 0,,
|
||||
-20405.5 2074.22 -352.84,158 160 189 188,stand,20.8301 20.3306 0,,
|
||||
-19941.3 2242.85 -382.056,159 161 189,stand,27.2131 10.0255 0,,
|
||||
-19923.3 2666.33 -381.086,160 162 190 189,stand,17.9187 77.2123 0,,
|
||||
-19910.5 3081.63 -382.101,161 163 190 191 3,stand,15.7928 89.1984 0,,
|
||||
-19916.6 3414.5 -381.983,162 52 15 191,stand,15.2325 90.764 0,,
|
||||
-20585 3275.58 -304.593,4 15 165 167 168 192,stand,16.7981 -27.1523 0,,
|
||||
-20823.4 3262.2 -285.268,164 166 167,stand,31.5802 11.7119 0,,
|
||||
-21221.6 3243.06 -286.86,165 7 6 167,stand,28.7842 -160.416 0,,
|
||||
-20931.6 3175.85 -322.59,166 165 164 168 6,stand,18.1439 170.86 0,,
|
||||
-20578.6 3149.11 -313.909,167 4 164,stand,36.0626 3.26886 0,,
|
||||
-21484.7 2854.45 -329.243,0 170,stand,20.8301 26.7576 0,,
|
||||
-21639.3 2946.44 -343.225,169 171,stand,18.1439 166.85 0,,
|
||||
-21938.7 2930.54 -335.151,170 172,stand,13.1067 176.6 0,,
|
||||
-22161.1 2949.31 -325.693,171 173,stand,10.9753 -175.676 0,,
|
||||
-22411.5 2861.39 -285.964,172 138 174 177,stand,17.5836 -95.718 0,,
|
||||
-22575.3 2833.81 -260.209,173 175 138 176,stand,18.9294 87.3747 0,,
|
||||
-22595.1 3030.86 -258.409,174 176,stand,26.7682 -35.3591 0,,
|
||||
-22659.3 2740.99 -256.19,175 145 138 174,stand,26.098 46.3133 0,,
|
||||
-22251.4 2745.88 -283.875,152 173 178 183,stand,17.3584 178.907 0,,
|
||||
-22107.6 2714.73 -287.2,177 179 184,stand,26.8781 88.0723 0,,
|
||||
-21770.8 2791.15 -289.899,178 180 183 184,stand,12.9913 -161.762 0,,
|
||||
-21444.9 2707.17 -283.454,179 181 185 187,stand,15.3424 -12.2713 0,,
|
||||
-21074.8 2712.16 -285.434,180 182 187 188,stand,19.1547 -6.67377 0,,
|
||||
-20685.2 2737.9 -322.286,181 5 188,stand,18.5944 6.99872 0,,
|
||||
-22082.6 2840.68 -284.448,177 179,stand,39.0839 -29.2397 0,,
|
||||
-21876.9 2486.4 -364.563,179 153 185 152 178 195,stand,11.651 -134.379 0,,
|
||||
-21403.1 2328.31 -257.652,184 180 157 186 187 195,stand,23.9667 77.1245 0,,
|
||||
-21313.4 2128.28 -323.22,185 157 158 187 188 193 195,stand,10.08 132.671 0,,
|
||||
-21144.3 2450.46 -358.369,188 185 186 181 180,stand,24.8621 -3.17462 0,,
|
||||
-20766.6 2392.91 -415.454,190 182 187 158 186 189 159 181,stand,20.6104 17.65 0,,
|
||||
-20346.1 2243.69 -396.374,159 160 190 161 188,stand,43.006 -17.4678 0,,
|
||||
-20267.7 2684.69 -375.839,188 161 3 5 189 162,stand,33.3765 87.4626 0,,
|
||||
-20069.2 3185.27 -393.945,162 163 4 192 3,stand,35.9528 128.096 0,,
|
||||
-20385.5 3273.38 -370.972,4 164 15 191,stand,26.2079 99.5146 0,,
|
||||
-21550 1815 -324.437,155 157 156 186 195,stand,37.6282 73.1254 0,,
|
||||
-21798 2060.73 -313.868,153 155 195,stand,33.9368 125.541 0,,
|
||||
-21588.6 2067.81 -267.931,193 185 194 155 184 186,stand,20.9454 29.1252 0,,
|
||||
-21145.1 3628.48 -349.488,64 197,stand,13.8922 34.3107 0,,
|
||||
-21330.6 3604.12 -300.518,196 25 26,stand,26.6583 54.6904 0,,
|
||||
-22094.4 3766.48 -288.264,200 199,stand,22.6263 3.63141 0,,
|
||||
-21774.7 3672.24 -275.515,25 200 198 58,stand,31.4703 22.3301 0,,
|
||||
-21908.4 3763.16 -284.001,199 198,stand,27.3285 -159.499 0,,
|
||||
-21642 4106.96 -289.726,202 58 203,stand,72.5702 162.664 0,,
|
||||
-21940.3 4183.52 -274.192,201 22 204 57,stand,30.2399 154.15 0,,
|
||||
-21343.5 4050.3 -316.903,201 27 38 59,stand,23.1866 -85.3469 0,,
|
||||
-22258.6 4429.99 -273.044,202 57 28 34 22,stand,20.495 -54.0743 0,,
|
||||
-22566.1 4030.94 -329.712,57 22 206 207,stand,15.7928 44.2918 0,,
|
||||
-22668.7 3889.5 -277.915,205 207,stand,25.6476 65.2043 0,,
|
||||
-22703.5 4171.15 -276.902,206 28 205 57,stand,25.4224 -35.5788 0,,
|
||||
-22460.4 3847.87 -283.362,21 209 213,stand,29.0094 52.6304 0,,
|
||||
-22620.9 3600.19 -268.252,208 210 24 213,stand,12.0959 -48.6745 0,,
|
||||
-22557.6 3347.73 -261.43,211 209 24,stand,20.05 76.0807 0,,
|
||||
-22445.3 3109.3 -262.551,210 212 24,stand,19.1547 106.76 0,,
|
||||
-22295.1 3106.83 -273.633,211 24 214,stand,26.7682 -149.798 0,,
|
||||
-22317.9 3540.31 -281.7,209 24 208 23,stand,21.9507 129.914 0,,
|
||||
-22029.1 3204.77 -279.464,24 212 215 23,stand,18.9294 -160.993 0,,
|
||||
-21697.2 3221.68 -262.877,214 7 23,stand,21.1707 15.2495 0,,
|
||||
-21705.2 5086.54 -325.172,56 217 223 222 221,stand,14.5624 -29.6736 0,,
|
||||
-21412.9 5098.49 -329.853,216 218 219 221 220 234,stand,15.7928 168.322 0,,
|
||||
-20983.9 5092.88 -341.567,217 46 219,stand,12.9913 -2.42206 0,,
|
||||
-21093.3 4707.54 -354.204,218 220 228 217 221 229 227,stand,23.6316 -20.1979 0,,
|
||||
-21391 4496.13 -325.351,219 221 226 227 228 217,stand,19.5996 174.628 0,,
|
||||
-21602.1 4756.39 -305.829,220 222 226 217 216 219,stand,11.651 134.649 0,,
|
||||
-21734.6 4850.81 -318.062,221 223 216 226,stand,29.4543 158.165 0,,
|
||||
-21921.1 4907.5 -317.807,222 224 33 216,stand,27.1033 162.983 0,,
|
||||
-22023.8 4654.58 -302.269,223 225,stand,20.7202 -126.688 0,,
|
||||
-22171.7 4768.8 -293.434,224 33,stand,21.731 -17.7645 0,,
|
||||
-21787.8 4505.05 -303.143,222 220 221,stand,20.2753 63.5563 0,,
|
||||
-21187.4 4345.27 -311.189,220 228 219,stand,28.114 17.3094 0,,
|
||||
-20908.9 4444.68 -329.571,227 229 219 220,stand,24.527 84.9577 0,,
|
||||
-20757.9 4792.42 -355.348,228 45 219,stand,21.0553 71.3017 0,,
|
||||
-20382.3 4755.62 -331.988,47 45,stand,31.8054 153.595 0,,
|
||||
-20377.7 5196.19 -369.56,47 232 269,stand,12.8815 5.40021 0,,
|
||||
-20631.5 5205.42 -362.491,231 233,stand,24.527 18.4739 0,,
|
||||
-20932.2 5187.51 -354.114,232 234 268 271,stand,15.1227 178.05 0,,
|
||||
-21394 5180.87 -341.251,233 263 266 217 271,stand,15.1227 -173.551 0,,
|
||||
-21865.2 5179.52 -328.125,236 240 263,stand,11.2006 -179.824 0,,
|
||||
-22284.9 5183.77 -316.434,235 237,stand,11.3159 179.616 0,,
|
||||
-22517.5 5204.49 -309.955,236 55 238,stand,59.6942 -29.5253 0,,
|
||||
-22450.2 5343.82 -312.798,237 239,stand,20.495 -65.923 0,,
|
||||
-22284.5 5382.78 -308.097,238 240,stand,24.3018 -81.7104 0,,
|
||||
-22010.5 5421.68 -326.539,239 235 241,stand,23.7469 -120.239 0,,
|
||||
-21870.8 5571.73 -330.897,240 242 252 262,stand,22.7362 100.668 0,,
|
||||
-22024 5701.89 -323.175,241 243 251 252,stand,18.2593 157.336 0,,
|
||||
-22198.5 5697.58 -322.912,242 244,stand,23.6316 -7.62408 0,,
|
||||
-22230.3 5843.35 -322.455,243 245 250 251,stand,24.8621 -10.1949 0,,
|
||||
-22114.7 6059.34 -321.557,244 246 249 250 261 251 285 293,stand,24.4171 -9.294 0,,
|
||||
-22219.7 6224.23 -316.059,245 247 285 293,stand,17.1387 164.164 0,,
|
||||
-22350.3 6201.51 -311.922,248 246 249,stand,32.2559 -101.228 0,,
|
||||
-22532.9 6173.36 -306.902,247,stand,35.9528 -167.634 0,,
|
||||
-22338.9 6054.23 -314.354,245 247 250,stand,29.6796 -15.2156 0,,
|
||||
-22230.5 6000.67 -319.724,245 249 244,stand,29.0094 164.048 0,,
|
||||
-22073.8 5833.14 -357.715,244 252 245 242,stand,14.6722 -19.2696 0,,
|
||||
-21889.6 5760.01 -368.191,251 253 242 241,stand,16.8036 -29.9044 0,,
|
||||
-21731.1 5644.31 -361.327,252 254 260 264,stand,13.7769 -10.4201 0,,
|
||||
-21503.4 5632.4 -363.064,253 255 260 259 264,stand,12.8815 5.81769 0,,
|
||||
-21259.1 5714.98 -376.115,254 256,stand,15.2325 20.2647 0,,
|
||||
-21112.6 5698.95 -375.751,255 257 258 289,stand,17.699 -7.39337 0,,
|
||||
-21027.3 5529.46 -352.803,256 267 289 268,stand,26.9934 16.1229 0,,
|
||||
-21227.2 5856.04 -345.098,256 259,stand,18.7042 126.195 0,,
|
||||
-21457.2 5915.88 -342.444,258 260 287 254,stand,58.3484 176.029 0,,
|
||||
-21590.5 5791.43 -335.626,259 261 253 254,stand,33.4863 165.504 0,,
|
||||
-21856.9 5971.33 -335.297,260 245 286,stand,21.731 147.585 0,,
|
||||
-21694 5446.68 -333.579,241 263 264,stand,21.5057 -16.1275 0,,
|
||||
-21626.8 5181.73 -334.765,262 234 235,stand,22.066 89.1435 0,,
|
||||
-21560.5 5542.39 -335.176,262 265 254 253,stand,32.4811 16.024 0,,
|
||||
-21493.8 5353.09 -337.75,264 266,stand,23.7469 108.078 0,,
|
||||
-21326.9 5323.26 -341.228,265 234 267,stand,21.731 30.8116 0,,
|
||||
-21125.6 5405.5 -346.192,266 257 268 271,stand,25.8728 177.611 0,,
|
||||
-20748.9 5493.33 -362.999,267 233 257 273,stand,17.9187 131.287 0,,
|
||||
-20401.7 5296.74 -368.659,231 270 272,stand,18.3691 147.415 0,,
|
||||
-20654 5325.34 -352.45,269 271,stand,19.4897 -35.6502 0,,
|
||||
-21044.2 5329.83 -348.737,270 233 267 234,stand,24.527 98.1413 0,,
|
||||
-20261.8 5447.05 -372.303,269 273,stand,16.463 -164.657 0,,
|
||||
-20369.5 5690.39 -369.499,272 274 292 268,stand,13.7769 124.009 0,,
|
||||
-20158.9 5899.53 -377.043,273 275 291,stand,12.4365 49.5323 0,,
|
||||
-19964.5 6059.47 -381.686,274 276 277,stand,15.2325 29.713 0,,
|
||||
-19799.1 6192.19 -383.875,275 277,stand,19.715 174.919 0,,
|
||||
-20069.6 6276.85 -379.554,276 278 280 275,stand,19.8248 140.988 0,,
|
||||
-20072.5 6615.98 -201.875,277 279,stand,17.3639 92.7195 0,,
|
||||
-20083.6 6851.48 -201.875,278 306 323 324,stand,15.9082 164.504 0,,
|
||||
-20462.8 6266.68 -368.8,277 281 291,stand,20.1599 -175.786 0,,
|
||||
-20624.1 6121.94 -361.865,280 282,stand,21.6156 -135.027 0,,
|
||||
-20779.9 6273.11 -357.184,281 283 290,stand,9.74487 177.375 0,,
|
||||
-21257 6260.92 -342.684,282 284 288,stand,23.2965 -179.483 0,,
|
||||
-21491 6260.89 -337.81,283 285 287,stand,23.0713 179.956 0,,
|
||||
-22040.5 6264.71 -324.458,284 246 245 293,stand,24.3073 178.05 0,,
|
||||
-21715.3 6060.86 -330.059,261 287,stand,24.3073 -92.2737 0,,
|
||||
-21450.8 6023.29 -338.648,286 284 259,stand,9.97009 179.621 0,,
|
||||
-21229.8 6039.71 -343.251,283 289,stand,17.1387 -49.3557 0,,
|
||||
-20974.3 5904.08 -353.115,288 256 290 292 257,stand,20.1599 -109.16 0,,
|
||||
-20794.4 6019.22 -356.543,289 282 291 292,stand,13.2166 73.6802 0,,
|
||||
-20458.2 5985.33 -372.971,290 280 274 292,stand,19.8248 152.227 0,,
|
||||
-20607.8 5813.13 -362.374,291 273 290 289,stand,17.699 -55.0631 0,,
|
||||
-22091.5 6394.66 -325.229,285 294 246 245,stand,21.0553 -106.177 0,,
|
||||
-22094.9 6635.3 -201.875,293 295,stand,19.0393 90.2476 0,,
|
||||
-22101.8 6731.5 -201.875,294 296,stand,29.9048 -76.9478 0,,
|
||||
-21863.5 6879.35 -201.875,295 297 322,stand,28.2239 12.0854 0,,
|
||||
-21716.4 6994.3 -201.875,296 298 320 322,stand,20.9454 0.40143 0,,
|
||||
-21728 7119.24 -201.875,297 299,stand,21.1707 1.51654 0,,
|
||||
-21499.2 7124.28 -201.875,298 300 317 320,stand,20.9454 1.18146 0,,
|
||||
-21267.2 7122.05 -201.875,299 301 317 319,stand,24.3018 -5.41583 0,,
|
||||
-21080.1 7072.43 -201.875,300 302 318 317 319 325,stand,16.1279 121.015 0,,
|
||||
-20896.1 7122.17 -201.875,301 303 318,stand,27.9987 -150.765 0,,
|
||||
-20689.8 7112.26 -201.875,302 304 309 318,stand,21.3904 -6.98688 0,,
|
||||
-20443.7 7122.55 -201.875,303 305,stand,27.2186 -7.88226 0,,
|
||||
-20491 6995.77 -201.875,304 306,stand,26.2079 -176.418 0,,
|
||||
-20400.7 6858.06 -201.875,305 279 307,stand,27.1033 -51.5584 0,,
|
||||
-20486.5 6725.35 -201.875,306 308,stand,25.9827 84.3589 0,,
|
||||
-20636 6689.7 -201.875,307 309 310,stand,26.2079 110.001 0,,
|
||||
-20535.1 6866.89 -201.875,308 303 318,stand,31.6956 34.9699 0,,
|
||||
-20795.5 6571.13 -201.875,308 311,stand,19.9347 -95.2401 0,,
|
||||
-20995 6722.43 -201.875,310 312 318 319,stand,19.0393 -160.719 0,,
|
||||
-21185.9 6571.13 -201.875,311 313 319,stand,22.7362 94.5762 0,,
|
||||
-21268.1 6755.69 -201.875,312 314 317,stand,14.0021 -64.2916 0,,
|
||||
-21489 6710.27 -201.875,313 315 316 317 321,stand,16.6882 -23.4224 0,,
|
||||
-21412.6 6575.34 -201.875,314,stand,24.4171 -68.8893 0,,
|
||||
-21640.9 6854.5 -201.875,314 317 320,stand,15.5676 176.474 0,,
|
||||
-21394.1 6850.53 -201.875,316 301 314 313 319 299 320 300,stand,25.4224 1.03864 0,,
|
||||
-20900.6 6864.26 -201.875,309 311 301 319 303 302,stand,25.3125 0.258608 0,,
|
||||
-21101.8 6862.89 -205.875,317 318 301 312 311 300,stand,18.2593 80.4478 0,,
|
||||
-21551.7 7002.31 -201.875,297 299 316 317,stand,35.6177 -83.1826 0,,
|
||||
-21676.2 6713.98 -201.875,314 322,stand,24.7522 14.5518 0,,
|
||||
-21732.1 6810.05 -201.875,321 296 297,stand,30.2399 -94.7237 0,,
|
||||
-19815.8 6781.14 -201.875,279 324,stand,18.3691 2.65363 0,,
|
||||
-19845.6 6950.39 -201.875,279 323,stand,18.8196 13.184 0,,
|
||||
-21095.5 7273.5 -201.875,301 326,stand,14.6722 96.0539 0,,
|
||||
-21091.4 7476.17 -201.875,325 327 328 334,stand,19.2645 91.9066 0,,
|
||||
-21200.1 7610.38 -201.875,326 328 333,stand,34.1565 143.652 0,,
|
||||
-21091.6 7766.64 -201.875,327 329 326 334,stand,23.6316 71.9774 0,,
|
||||
-21096.4 7888.57 -201.875,328 330 334 335,stand,17.0233 175.556 0,,
|
||||
-21373.8 7935.95 -201.875,329 332,stand,27.8888 -176.605 0,,
|
||||
-21371.7 7821.82 -201.875,332,stand,39.0894 132.556 0,,
|
||||
-21505.5 7893.92 -201.875,331 330,stand,30.6903 -8.67328 0,,
|
||||
-21323.4 7623.32 -201.875,327,stand,24.4171 1.75275 0,,
|
||||
-21018.9 7694.34 -201.875,326 329 328,stand,55.6622 -150.507 0,,
|
||||
-21079.1 8049.77 -201.875,329 336,stand,23.1866 171.409 0,,
|
||||
-21096.3 8207.5 -201.875,335 337 341,stand,20.3851 99.185 0,,
|
||||
-21199.7 8300.56 -201.875,336 338,stand,23.4064 101.536 0,,
|
||||
-21228.4 8462.37 -184.608,337 339,stand,22.066 77.6848 0,,
|
||||
-21130.3 8621.94 -201.458,338 340,stand,29.6796 37.1452 0,,
|
||||
-21039.7 8724.05 -201.875,339 341 342 343,stand,15.4578 98.2896 0,,
|
||||
-20972.8 8443.64 -201.875,340 336,stand,14.8975 -80.9688 0,,
|
||||
-21169.2 8891.46 -201.875,340 343,stand,12.3212 -10.5684 0,,
|
||||
-20981.1 8892.92 -201.875,342 344 340,stand,28.114 -7.54169 0,,
|
||||
-20878.3 8885.42 -201.875,343 345 363,stand,23.0713 -7.88226 0,,
|
||||
-20707.2 8981.28 -201.875,344 346 351 362,stand,6.27319 80.695 0,,
|
||||
-20722.5 9238.82 -201.875,345 349 350,stand,6.38855 93.5655 0,,
|
||||
-20611 9653.81 -201.875,348 349,stand,8.96484 -96.1299 0,,
|
||||
-20466.3 9438.48 -201.875,347 350,stand,22.066 -150.77 0,,
|
||||
-20773.1 9465.61 -201.875,347 346,stand,17.3639 17.3094 0,,
|
||||
-20497.9 9256.05 -201.875,348 351 346 362,stand,22.4011 80.4423 0,,
|
||||
-20394.2 9071.99 -201.875,350 345 352 362,stand,22.8461 139.911 0,,
|
||||
-20243.3 9075.42 -201.875,351 353 358 359,stand,17.3639 -67.3622 0,,
|
||||
-20106.7 9033.2 -201.875,352 354 358,stand,17.9187 -70.8174 0,,
|
||||
-19915.3 9009.07 -201.875,353 355,stand,21.6156 -54.0194 0,,
|
||||
-20003.9 8896.97 -201.875,354 356,stand,23.4064 -156.599 0,,
|
||||
-19880.2 8778.36 -201.875,355 357,stand,19.3799 176.419 0,,
|
||||
-20028.9 8760.76 -201.875,356 358,stand,20.2753 143.487 0,,
|
||||
-20152.5 8809.27 -201.875,357 353 352 359,stand,17.4738 -61.534 0,,
|
||||
-20281.9 8720.47 -201.875,358 352 360 370,stand,14.8975 84.3919 0,,
|
||||
-20405.3 8707.78 -201.875,359 361 368 369,stand,24.082 33.4318 0,,
|
||||
-20477.3 8864.42 -201.875,360 362,stand,16.0181 162.208 0,,
|
||||
-20547.9 9135.93 -201.875,361 351 350 345,stand,22.511 -127.578 0,,
|
||||
-20766.2 8830.29 -201.875,344 364 369,stand,19.3799 -26.548 0,,
|
||||
-20744.5 8648.71 -201.875,363 365 368,stand,23.0713 -87.5826 0,,
|
||||
-20748.7 8344.83 -201.875,364 366,stand,16.0181 -52.3055 0,,
|
||||
-20618.4 8108.5 -201.875,365 367,stand,15.9082 -32.4861 0,,
|
||||
-20464.2 8315.01 -201.875,366 368,stand,10.3052 70.7634 0,,
|
||||
-20486.6 8500.6 -201.875,367 360 369 364,stand,12.4365 -162.136 0,,
|
||||
-20611.1 8771.57 -201.875,368 360 363,stand,24.8621 145.784 0,,
|
||||
-20147 8533.63 -201.875,359 371,stand,11.6455 149.222 0,,
|
||||
-20265 8341.88 -201.875,370 372,stand,12.0959 -81.2105 0,,
|
||||
-20166.2 7990.51 -199.875,371 373,stand,19.0393 122.35 0,,
|
||||
-20650.5 7809.74 -193.875,372 374,stand,11.4203 -176.956 0,,
|
||||
-20938.7 7804.76 -1.875,373 375 378,stand,21.5002 175.54 0,,
|
||||
-21121.3 7901.07 -1.875,374 376 378,stand,26.4276 7.03717 0,,
|
||||
-20825.6 7935.77 -1.875,375 377,stand,18.5889 9.05316 0,,
|
||||
-20414.8 7852.23 -1.875,376,stand,21.5002 -31.0414 0,,
|
||||
-21099.8 7571.96 -1.875,375 379 374,stand,21.7255 71.6533 0,,
|
||||
-21085.4 7121.53 -1.875,378 380 381,stand,19.5996 -84.012 0,,
|
||||
-20449.9 7128.99 -0.875001,379 386,stand,24.1864 -40.8632 0,,
|
||||
-21725.1 7119.41 -1.875,379 382,stand,12.876 -32.7993 0,,
|
||||
-21774 6802.43 -1.875,381 383 384,stand,21.9507 168.069 0,,
|
||||
-22095.3 6891.42 -1.875,382,stand,17.0233 3.15351 0,,
|
||||
-21706.8 6579.05 -1.875,382 385,stand,17.8033 25.4338 0,,
|
||||
-20958.8 6605.97 -1.875,384,stand,33.8214 -88.5659 0,,
|
||||
-20395.3 6846.66 0.125001,380 387 389,stand,27.4384 56.981 0,,
|
||||
-20473.4 6596.39 -1.875,386 388,stand,31.6901 88.4129 0,,
|
||||
-20599.8 6608.48 -1.875,387,stand,24.3018 154.935 0,,
|
||||
-19883.6 6881.47 6.4802,386 390,stand,26.8781 -123.876 0,,
|
||||
-19872.9 7289.41 0.909683,389 391,stand,11.3104 96.2517 0,,
|
||||
-19898.2 7736.88 155.408,390 392,stand,2.68616 88.4129 0,,
|
||||
-19896.4 7820.12 198.125,391 393,stand,5.15259 88.4129 0,,
|
||||
-19898.1 8183.57 346.125,392 394,stand,3.6969 89.7587 0,,
|
||||
-19855.7 8295.92 398.125,393 395,stand,29.1138 -133.505 0,,
|
||||
-19951.7 8430.82 398.125,394 396,stand,22.2858 -166.316 0,,
|
||||
-20278.9 8386.83 398.125,395 401 402,stand,26.9879 -116.823 0,,
|
||||
-20712.9 7963.53 398.125,398 399 405,stand,31.1298 -70.4604 0,,
|
||||
-20892.2 7895.56 398.125,397 406,stand,4.03198 -83.5616 0,,
|
||||
-20709.4 8121.21 398.125,397 400,stand,20.1599 13.7553 0,,
|
||||
-20639.6 8308.09 398.125,399 401,stand,35.722 -118.729 0,,
|
||||
-20519.5 8401.83 398.125,400 396,stand,31.0199 -19.8409 0,,
|
||||
-20296.8 7960.62 398.125,396 403 405,stand,27.8833 100.24 0,,
|
||||
-20300.6 7616.56 398.125,402 404,stand,14.3372 93.8896 0,,
|
||||
-20116 7590.6 398.125,403,stand,29.4543 169.113 0,,
|
||||
-20614.8 7813.55 398.125,402 397,stand,33.5962 29.5756 0,,
|
||||
-20849.3 7759.75 470.125,398 407,stand,25.7574 -80.1668 0,,
|
||||
-20862 7454.3 598.125,406 408,stand,37.403 102.783 0,,
|
||||
-20970.5 7345.37 598.125,407 409,stand,29.7894 81.1674 0,,
|
||||
-21101.7 7504.22 598.125,408 410,stand,26.8781 -94.504 0,,
|
||||
-21084.4 7884.83 598.125,409 411,stand,20.2698 75.6798 0,,
|
||||
-20614 7833.35 598.125,410 412 416,stand,25.2411 -84.9843 0,,
|
||||
-20246.6 7891.49 598.125,411 413,stand,23.1152 -60.9023 0,,
|
||||
-20196.1 7406.57 598.125,412 414 421,stand,26.5869 160.681 0,,
|
||||
-20374.3 7488.59 598.125,413 415,stand,25.9167 -128.21 0,,
|
||||
-20409 7639.34 600.125,414 416,stand,26.0266 146.904 0,,
|
||||
-20652.6 7720.78 598.125,415 411 417,stand,26.8121 -22.3073 0,,
|
||||
-20725.3 7661.19 598.125,416 418,stand,23.2251 -55.898 0,,
|
||||
-20702.2 7075.22 598.125,417 419,stand,21.0992 -1.13666 0,,
|
||||
-20440.7 7039.57 598.125,418 420 425,stand,16.7322 -74.6022 0,,
|
||||
-20228 7129.02 598.125,419 421,stand,21.3245 135.039 0,,
|
||||
-20162 7282.06 598.125,420 413 422,stand,27.3724 -90.6148 0,,
|
||||
-20061.9 7268.12 598.125,421 423,stand,30.0586 -148.848 0,,
|
||||
-19849.5 7029.84 598.302,422 424,stand,22.5549 -105.062 0,,
|
||||
-19883.8 6848.79 598.125,423 425,stand,24.7961 154.04 0,,
|
||||
-20432.1 6777.98 598.125,424 419 426,stand,36.1066 11.3713 0,,
|
||||
-20633.7 6862.26 598.125,425 427,stand,19.8688 -63.7368 0,,
|
||||
-20814.3 6769.96 598.125,426 428,stand,19.1931 -152.204 0,,
|
||||
-20958.3 6826.89 598.125,427 429 431,stand,21.7694 166.729 0,,
|
||||
-21245.1 6851.03 598.125,428 430 432,stand,29.0479 64.8198 0,,
|
||||
-21185.4 7048.15 598.125,429 431 433,stand,26.8121 57.3216 0,,
|
||||
-20957 7011.25 598.125,430 428,stand,30.2838 -116.707 0,,
|
||||
-21512.9 6829.84 598.125,429,stand,29.2731 73.8615 0,,
|
||||
-21444 7114.21 598.125,430 434,stand,14.2657 -64.2971 0,,
|
||||
-21730.1 6989.88 598.125,433 435 441,stand,22.6648 -100.47 0,,
|
||||
-21952.6 7125.31 598.125,434 436,stand,28.1525 114.511 0,,
|
||||
-22025.3 7279.11 598.125,435 437 439,stand,23.5602 -164.97 0,,
|
||||
-21873.4 7601.32 598.125,436 438,stand,31.3989 65.4625 0,,
|
||||
-21642.3 7613.81 598.125,437 444,stand,-0.065918 -133.873 0,,
|
||||
-22175.8 7271.55 600.125,436 440 467,stand,16.7322 0.5058 0,,
|
||||
-22364.4 6718.83 534.125,439 467,stand,33.5303 -125.139 0,,
|
||||
-21659.6 6811.92 598.125,434 442 443,stand,26.4716 132.056 0,,
|
||||
-21984.9 6831.23 603.961,441,stand,20.6488 -175.424 0,,
|
||||
-21551.1 6835.2 598.125,441,stand,12.03 -7.81634 0,,
|
||||
-21652.8 7347.94 734.125,438 445 446,stand,18.2977 -0.949888 0,,
|
||||
-21450.7 7305.1 734.125,444,stand,40.5835 -56.2715 0,,
|
||||
-21762.6 7327.49 734.125,444 447,stand,21.3245 62.1776 0,,
|
||||
-21760.3 7617.58 736.687,446 448,stand,28.2678 62.1776 0,,
|
||||
-21624.7 7624.94 743.218,447 449,stand,20.874 -120.586 0,,
|
||||
-21653 7355.55 870.125,448 450 451,stand,32.2998 -9.3819 0,,
|
||||
-21453.4 7299.67 870.125,449,stand,32.4097 -8.93695 0,,
|
||||
-21791.5 7339.42 870.125,449 452,stand,17.4023 102.717 0,,
|
||||
-21918.7 7402.85 870.125,451 453,stand,20.874 -161.57 0,,
|
||||
-22134.6 7331.19 877.793,452 454,stand,26.2518 106.711 0,,
|
||||
-22301.2 7393.75 867.32,453 455,stand,18.4131 -98.4096 0,,
|
||||
-22291.1 7666.17 862.125,454 456,stand,27.1472 -125.474 0,,
|
||||
-22374.7 7853.04 862.125,455 457,stand,27.4823 104.283 0,,
|
||||
-22231.5 8195.81 870.125,456 458,stand,27.8174 -70.1912 0,,
|
||||
-21887.3 7917.29 878.125,457 459,stand,23.6755 6.63068 0,,
|
||||
-21574.1 7976.4 923.872,458 460,stand,16.7322 -81.8367 0,,
|
||||
-21505.2 7932.46 979.125,459 461,stand,26.2518 -94.2678 0,,
|
||||
-21463.5 7842.21 1032.22,460 462,stand,16.6168 -76.3491 0,,
|
||||
-21380.4 7273.9 1142.13,461 463 466,stand,14.6063 -84.0779 0,,
|
||||
-20710.7 7303.89 1142.13,462 464 466 465,stand,12.5903 10.8879 0,,
|
||||
-20525.4 7825.6 1142.13,463 465 466,stand,4.97131 167.668 0,,
|
||||
-21119.3 7911.66 1142.13,464 466 463,stand,15.1611 -165.234 0,,
|
||||
-21085.1 7401.08 1142.13,465 462 463 464,stand,17.9626 -150.672 0,,
|
||||
-22093.2 6707.08 614.125,439 440,stand,31.3989 104.535 0,,
|
||||
|
@@ -0,0 +1,248 @@
|
||||
247
|
||||
-43305.8 15142.8 -83.875,1 3,stand,31.8054 144.615 0,,
|
||||
-43288.7 15381.6 -83.875,0 2,stand,17.5836 -115.047 0,,
|
||||
-43442.6 15313.1 -83.875,1 3 4,stand,15.1172 -53.6769 0,,
|
||||
-43448.1 15152.1 -83.875,2 0 243 219,stand,22.8461 62.6738 0,,
|
||||
-43548.4 15314.1 -82.875,2 5 219,stand,14.6722 -62.3012 0,,
|
||||
-43676.8 15337.7 -83.875,4 6,stand,26.9879 -158.833 0,,
|
||||
-43806.1 15315.2 -82.875,5 7,stand,22.8461 68.4636 0,,
|
||||
-43896.1 15366.6 -83.875,6 8 36,stand,18.2538 75.8574 0,,
|
||||
-43774 15506.8 -83.875,7 9 37,stand,19.3744 131.064 0,,
|
||||
-43752.7 15639.8 -83.875,8 10,stand,14.892 77.6482 0,,
|
||||
-43642.8 15694.3 -83.875,9 11 12,stand,25.8673 -59.7578 0,,
|
||||
-43593.5 15611.3 -83.875,10,stand,29.5642 -0.629425 0,,
|
||||
-43708.6 15845.1 -83.875,10 13,stand,24.6368 125.351 0,,
|
||||
-43889.7 15940 -83.875,12 14 37,stand,20.3796 170.818 0,,
|
||||
-44065.4 15967.1 -83.875,13 15 37 39,stand,22.0605 162.084 0,,
|
||||
-44198.7 16089.3 -81.9897,14 16 22 38,stand,20.2698 134.761 0,,
|
||||
-44295.4 16214.6 -72.2549,15 17 39 40,stand,30.3497 -179.102 0,,
|
||||
-44427.1 16232.4 -81.875,16 18 39,stand,24.9719 178.437 0,,
|
||||
-44536.1 16255.5 -83.875,17 19,stand,25.6421 -155.026 0,,
|
||||
-44579.2 16183.8 -83.875,18 20 21,stand,26.3177 110.124 0,,
|
||||
-44762.2 16388.9 -83.875,19,stand,17.1332 -34.3025 0,,
|
||||
-44607.9 16140.3 -83.875,19 22 23 25 26,stand,24.6368 168.917 0,,
|
||||
-44502.2 16067.9 -83.875,21 15 23,stand,26.543 26.1662 0,,
|
||||
-44627.7 15980.1 -83.875,22 24 21 26 27 25,stand,19.7095 6.68198 0,,
|
||||
-44522.9 15864.3 -83.875,23,stand,26.4276 -76.4131 0,,
|
||||
-44775.7 16196.6 -83.875,21 26 23,stand,53.1958 -38.1148 0,,
|
||||
-44759.2 15887.1 -83.875,25 27 28 23 21,stand,17.9187 29.193 0,,
|
||||
-44723.3 15654.4 -83.875,26 28 23,stand,19.4843 50.023 0,,
|
||||
-44607.4 15723.9 -83.875,27 26 29,stand,28.1085 -41.136 0,,
|
||||
-44521.1 15656.6 -83.875,28 30 32,stand,25.7574 -118.068 0,,
|
||||
-44559.7 15588.1 -83.875,29 31,stand,23.5162 -72.9414 0,,
|
||||
-44428.9 15403.9 -83.875,30,stand,21.0553 -15.2687 0,,
|
||||
-44374.3 15590.6 -83.875,29 33 38,stand,15.3424 50.3581 0,,
|
||||
-44182 15518.3 -83.875,32 34 36,stand,21.3904 -177.196 0,,
|
||||
-44215 15433.3 -83.875,33 35,stand,21.0553 -114.596 0,,
|
||||
-44048.7 15248 -83.875,34,stand,17.8033 90.6725 0,,
|
||||
-44117.1 15480 -83.875,33 7 37,stand,20.2698 70.5125 0,,
|
||||
-44019.4 15652.6 -83.875,8 36 13 14 38,stand,14.2218 127.74 0,,
|
||||
-44332.4 15779.4 -83.875,37 32 15 39,stand,22.6208 100.972 0,,
|
||||
-44302 16076.6 -80.3398,16 38 17 14,stand,27.2131 -119.046 0,,
|
||||
-44269.5 16287.2 -188.069,16 41 42 43,stand,38.6334 81.7461 0,,
|
||||
-43987 16238.3 -188.458,40 46,stand,21.7255 90.4802 0,,
|
||||
-44188.9 16320 -197.487,40 45,stand,20.7147 69.2052 0,,
|
||||
-44409.6 16405.8 -182.672,40 44,stand,33.5962 80.966 0,,
|
||||
-44392.9 16440.4 -215.875,43 45 47 69,stand,11.4203 -90.5965 0,,
|
||||
-44161.1 16351.4 -215.875,42 46 44 48,stand,36.6174 72.3033 0,,
|
||||
-43972 16278.9 -215.875,41 45 48 49,stand,8.17383 177.014 0,,
|
||||
-44272 16751.3 -221.875,44 48 67 68 71,stand,13.5516 7.01706 0,,
|
||||
-44017.5 16623.8 -221.875,45 46 61 47 68,stand,17.0233 30.5333 0,,
|
||||
-43780.9 16226.1 -215.875,46 50 61,stand,16.6882 81.5977 0,,
|
||||
-43596.8 16139 -215.875,49 51,stand,20.8301 38.5973 0,,
|
||||
-43388.6 16071 -215.875,50 52 60,stand,16.3477 12.1696 0,,
|
||||
-43194.1 16001 -215.875,51 53,stand,16.2378 155.733 0,,
|
||||
-43128.3 16233.3 -215.875,52 54 60,stand,14.3317 71.9682 0,,
|
||||
-43023.2 16538.2 -215.875,53 55 59 60,stand,15.0073 86.19 0,,
|
||||
-42896.2 16851.4 -215.875,54 56 58,stand,15.1172 72.4187 0,,
|
||||
-42764.7 17180.6 -215.875,55 57,stand,18.1439 152.822 0,,
|
||||
-43075.8 17316.1 -221.875,56 58 84 107 109,stand,18.3636 -32.292 0,,
|
||||
-43146.5 17009.8 -221.875,57 55,stand,21.1652 -92.986 0,,
|
||||
-43262.1 16776.7 -217.627,54 60 62,stand,13.1012 -100.374 0,,
|
||||
-43417.2 16482.6 -221.875,59 61 51 53 54 62 65,stand,20.3796 -161.744 0,,
|
||||
-43762.7 16512.4 -221.875,60 49 48 65 67,stand,20.2698 -109.784 0,,
|
||||
-43444.6 16867.7 -221.875,60 59 63,stand,24.1864 -101.797 0,,
|
||||
-43519.8 17002.5 -221.875,62 64 66,stand,18.0286 -103.445 0,,
|
||||
-43558.8 16805 -215.875,63 65,stand,18.7042 -103.665 0,,
|
||||
-43604.8 16702.2 -221.875,64 61 60,stand,22.2858 -114.415 0,,
|
||||
-43579.9 17358.8 -221.875,63 67 81 83,stand,17.5836 -170.297 0,,
|
||||
-43915.8 17205.9 -221.875,66 47 68 77 73 61,stand,16.0126 113.326 0,,
|
||||
-44025.4 16880.4 -221.875,67 48 47 73,stand,19.259 -104.862 0,,
|
||||
-44458.8 16510.9 -215.875,44 70,stand,20.0446 153.454 0,,
|
||||
-44593.6 16528.7 -215.875,69 71,stand,20.1599 6.4183 0,,
|
||||
-44482 16814.2 -215.875,70 72 47,stand,14.2218 57.1477 0,,
|
||||
-44378.3 17076.7 -215.875,71 73,stand,15.0073 65.6566 0,,
|
||||
-44307.4 17175.5 -215.875,72 74 67 68,stand,15.2325 73.8359 0,,
|
||||
-44215.8 17484 -215.875,73 75,stand,17.8033 -48.3431 0,,
|
||||
-44013.3 17435.8 -215.875,74 76 77,stand,13.5516 29.5995 0,,
|
||||
-43918.8 17619.7 -215.875,75,stand,21.9507 27.133 0,,
|
||||
-43879 17385.9 -221.875,75 78 67,stand,13.1012 62.3003 0,,
|
||||
-43784.3 17630.8 -161.875,77 79 80,stand,20.495 71.2596 0,,
|
||||
-44109 17833.1 -161.875,78,stand,22.7307 79.9937 0,,
|
||||
-43679 18080.2 -151.875,78,stand,15.7874 77.1922 0,,
|
||||
-43716.1 17514.8 -215.875,66 82,stand,19.3744 -51.8147 0,,
|
||||
-43607.3 17808.4 -215.875,81,stand,19.0393 65.8818 0,,
|
||||
-43425.8 17529 -221.875,66 84 107 109,stand,16.7981 -32.2151 0,,
|
||||
-43142.9 17636.5 -221.875,83 57 85 107 109,stand,24.0765 69.4633 0,,
|
||||
-43095.7 17981.7 -285.875,84 86,stand,14.892 105.861 0,,
|
||||
-43104.3 18275.8 -285.875,85 87 102,stand,19.259 -60.9608 0,,
|
||||
-42951 18238.2 -285.875,86 88 95,stand,25.1971 2.53464 0,,
|
||||
-42890.1 18254 -285.875,87 89 94,stand,30.0146 -34.5332 0,,
|
||||
-42845.7 18203.3 -285.875,88 90 93 96,stand,27.6581 -57.7144 0,,
|
||||
-42770.5 17861.3 -285.875,89 91 92,stand,22.6208 -81.1208 0,,
|
||||
-42894.4 17403.1 -349.875,90 92,stand,18.924 -99.3745 0,,
|
||||
-42621.5 17841.7 -285.875,91 93 90,stand,16.0126 -160.261 0,,
|
||||
-42555.6 18080.6 -280.448,92 89,stand,15.9027 -139.766 0,,
|
||||
-42848.4 18339.5 -285.875,88 96 95,stand,29.2291 -115.277 0,,
|
||||
-42914.9 18342.3 -285.875,87 94 97,stand,33.2611 -112.624 0,,
|
||||
-42779.2 18293.9 -285.875,89 94 101,stand,24.9719 151.328 0,,
|
||||
-43102.4 18438.3 -337.875,95 98,stand,37.738 36.9933 0,,
|
||||
-43062.1 18516 -337.875,97 99,stand,32.3657 -16.7628 0,,
|
||||
-42801.2 18424.2 -381.875,98 100 110 111 112,stand,32.1405 82.6799 0,,
|
||||
-42567.1 18313 -337.875,99 101,stand,30.91 -90.6734 0,,
|
||||
-42596.9 18228.7 -337.875,100 96,stand,29.7894 162.045 0,,
|
||||
-43438 18103.7 -285.875,86 103 105 106,stand,22.1759 175.63 0,,
|
||||
-43923.3 18336.6 -279.875,102 104,stand,26.6528 70.584 0,,
|
||||
-43828 18558.7 -279.875,103 105,stand,29.339 -74.886 0,,
|
||||
-43736.9 18565.8 -285.875,104 102,stand,26.6528 -69.695 0,,
|
||||
-43485.4 17837.7 -285.875,102,stand,26.0925 -51.8916 0,,
|
||||
-43002.5 17534.1 -221.875,84 108 57 83,stand,24.0765 -99.9348 0,,
|
||||
-42668.8 17426.1 -215.875,107,stand,30.575 -30.2815 0,,
|
||||
-43273.8 17314.7 -221.875,83 57 84,stand,24.4116 -44.4978 0,,
|
||||
-42663.8 18540.6 -383.875,99 112 111 124 122,stand,22.7307 -144.836 0,,
|
||||
-42862.3 18597.1 -383.875,99 112 110 125 121,stand,15.6775 125.126 0,,
|
||||
-42731.2 19088.6 -375.875,111 110 99 113 115 121 122,stand,22.1759 84.8112 0,,
|
||||
-42581 19352.3 -375.875,112 114 117 120 119,stand,24.7467 79.5488 0,,
|
||||
-42724.2 19632.4 -375.875,113 115 130 205 206,stand,22.511 118.968 0,,
|
||||
-42862.7 19369 -375.875,114 112 116,stand,23.9667 -116.392 0,,
|
||||
-43367.4 19355.4 -375.875,115,stand,16.687 131.849 0,,
|
||||
-42362.3 19511.5 -375.875,113 118,stand,19.2633 -51.0237 0,,
|
||||
-42194.8 19369.3 -375.875,117 119,stand,16.687 160.93 0,,
|
||||
-42342.2 19154.2 -373.875,118 120 113,stand,20.3839 160.48 0,,
|
||||
-42352.7 19354 -375.875,119 113,stand,22.9547 10.3404 0,,
|
||||
-42571.2 18980.3 -377.875,112 123 122 111,stand,23.9655 -82.571 0,,
|
||||
-42878.6 18978.8 -377.875,112 129 125 121 110,stand,23.515 33.2249 0,,
|
||||
-42068.1 18996.5 -377.875,121 124 181,stand,18.5876 65.4753 0,,
|
||||
-42334.7 18292.8 -381.875,123 110 173,stand,15.3412 101.609 0,,
|
||||
-43166.5 18651.1 -381.875,111 126 122,stand,23.6304 -117.59 0,,
|
||||
-43409.4 18602.7 -381.875,125 127 129,stand,20.9442 141.847 0,,
|
||||
-43658.6 18835.1 -381.875,126 128,stand,20.9442 -18.7404 0,,
|
||||
-43560.4 19000.3 -374.875,127 129,stand,16.9122 -31.5065 0,,
|
||||
-43147.8 19003.9 -377.875,128 122 126,stand,12.9901 -107.318 0,,
|
||||
-42504.4 20092.1 -383.875,114 197 205 215 214,stand,11.6443 170.779 0,,
|
||||
-42428.8 20306.8 -383.875,132 197 199 215,stand,17.8076 -144.798 0,,
|
||||
-41956.8 20355.9 -383.875,131 133 196 199 216,stand,13.4406 37.2899 0,,
|
||||
-41709.5 20559 -383.875,132 134 195 217,stand,14.2206 152.41 0,,
|
||||
-41276.8 20770.2 -377.875,133 156,stand,15.0061 174.361 0,,
|
||||
-41433.4 21436.7 -381.875,136 149 156,stand,21.0541 96.5282 0,,
|
||||
-41466.2 21833.9 -383.875,135 137,stand,18.3679 10.4118 0,,
|
||||
-41121.8 21861.6 -383.875,136 138,stand,33.15 -121.951 0,,
|
||||
-41123.6 21600.7 -503.875,137 139,stand,37.182 -124.528 0,,
|
||||
-41252 21584 -503.875,138 140,stand,29.7882 95.8251 0,,
|
||||
-41245.2 21849 -623.875,139 141,stand,35.166 -8.88016 0,,
|
||||
-41125.7 21848.9 -623.875,140 142,stand,29.118 -78.539 0,,
|
||||
-41136.6 21594.3 -639.875,141 143,stand,17.8076 2.64999 0,,
|
||||
-40708.8 21656.7 -639.875,142 144,stand,18.5876 178.887 0,,
|
||||
-40708.8 21728.3 -639.875,143 145,stand,51.9641 94.221 0,,
|
||||
-40712.7 21865.9 -771.875,144 146,stand,69.2072 104.526 0,,
|
||||
-40710.8 22580 -771.568,145 147,stand,11.8695 -122.77 0,,
|
||||
-41169.6 22646 -771.875,146 148,stand,30.4584 -123.781 0,,
|
||||
-41456 21544.4 -383.875,147,stand,12.9901 -107.016 0,,
|
||||
-41564.9 21297 -381.875,135 150,stand,15.4565 -90.3273 0,,
|
||||
-41996.9 21306.9 -381.875,149 151,stand,17.132 37.3009 0,,
|
||||
-42129.1 21502.9 -381.875,150 152,stand,11.4246 161.496 0,,
|
||||
-42491.6 21494.9 -381.875,151 153,stand,24.5258 -157.52 0,,
|
||||
-42473.2 20958.1 -381.875,152 154,stand,25.6464 -49.6779 0,,
|
||||
-42336.4 20827.7 -381.875,153 155 157,stand,23.8556 -59.7578 0,,
|
||||
-42317.6 20725.4 -377.875,154 204 217,stand,20.9442 -71.6286 0,,
|
||||
-41278.2 20832.6 -381.875,134 135 157 158,stand,33.9301 -157.294 0,,
|
||||
-41851.1 20838.4 -381.875,156 154,stand,62.5989 167.764 0,,
|
||||
-40792.5 20719.9 -377.875,156 159 193,stand,18.0328 -172.417 0,,
|
||||
-40657.9 20486.9 -383.875,158 160,stand,22.735 121.769 0,,
|
||||
-40518.4 20662 -377.875,159 161,stand,21.3892 26.4738 0,,
|
||||
-40017.2 20699.1 -377.875,160 162,stand,20.8289 -142.628 0,,
|
||||
-40135.5 20346.1 -383.875,161 163,stand,14.7809 -84.1695 0,,
|
||||
-39944.3 20010.9 -383.875,162 164,stand,14.5612 94.1881 0,,
|
||||
-39906 19715.5 -377.875,163 165,stand,15.3412 -131.317 0,,
|
||||
-40286.3 19712.8 -377.875,164 166,stand,10.0787 -171.187 0,,
|
||||
-40462.6 19325.4 -377.875,165 167,stand,-30.1257 -113.734 0,,
|
||||
-40848.8 19149.6 -377.875,166 168 190,stand,11.5344 52.4181 0,,
|
||||
-41122.6 18872 -383.875,167 169 187 190,stand,14.2206 12.2466 0,,
|
||||
-41359.5 18220.5 -383.875,168 170 177,stand,14.3359 -112.393 0,,
|
||||
-41701.7 17398.3 -383.875,169 171,stand,17.0221 -118.216 0,,
|
||||
-42093.2 17480.6 -383.875,170 172,stand,13.7756 160.035 0,,
|
||||
-42487.8 17643.5 -377.875,171 173 174,stand,18.8129 91.9469 0,,
|
||||
-42435.6 17935.2 -379.875,172 124 174,stand,26.767 37.4437 0,,
|
||||
-42234.2 17947.6 -377.875,173 172 175 176,stand,20.3839 -100.072 0,,
|
||||
-42194 18262.4 -377.875,174 176,stand,23.8556 -16.5321 0,,
|
||||
-41852.7 18203.3 -383.875,175 174 177,stand,17.3572 -8.57803 0,,
|
||||
-41661.5 18270 -375.875,176 169 178,stand,16.7969 158.057 0,,
|
||||
-41796.9 18669.9 -383.875,177 179 185 186,stand,14.5612 -35.4561 0,,
|
||||
-42028.1 18699.7 -377.875,178 180,stand,15.3412 74.2918 0,,
|
||||
-41937.2 18986.6 -377.875,179 181 185,stand,21.7242 99.7087 0,,
|
||||
-41963 19137.9 -375.875,180 123 182,stand,21.3892 -121.539 0,,
|
||||
-41992.2 19531.4 -377.875,181 183 184,stand,24.8608 55.1756 0,,
|
||||
-42071.5 19747.7 -377.875,182 195 197 198,stand,23.6304 143.533 0,,
|
||||
-41719.2 19594.3 -377.875,182 185 189 218,stand,16.9122 -8.06168 0,,
|
||||
-41610.4 19066.5 -383.875,184 180 178 188,stand,17.3572 -119.485 0,,
|
||||
-41485.2 18730 -375.875,178 187,stand,16.5717 27.4352 0,,
|
||||
-41379.5 18936 -375.875,186 168 188,stand,22.1747 -23.5194 0,,
|
||||
-41444.2 19062.6 -375.875,187 185 189 218,stand,23.1799 -71.0738 0,,
|
||||
-41275.5 19526 -383.875,188 184 190,stand,18.1427 -65.1411 0,,
|
||||
-40897.3 19336.5 -383.875,189 167 168 191,stand,21.6144 149.839 0,,
|
||||
-40943.8 19782 -383.875,190 192 194,stand,13.5504 91.1559 0,,
|
||||
-40506.8 19959.9 -383.875,191 193,stand,14.5612 82.5371 0,,
|
||||
-40948.9 20146.1 -383.875,192 158 194,stand,16.2366 149.949 0,,
|
||||
-41265.5 20005.8 -383.875,193 191 195,stand,20.8289 -6.15555 0,,
|
||||
-41476.1 20091.3 -383.875,194 133 183 196,stand,17.3572 -157.113 0,,
|
||||
-41937.1 20192.2 -375.875,195 132 197,stand,21.2793 107.135 0,,
|
||||
-42226.2 20106.6 -383.875,196 130 183 198 131,stand,17.0221 -34.2696 0,,
|
||||
-42216.8 19701.2 -377.875,197 183,stand,25.3113 29.193 0,,
|
||||
-42312 20419.9 -383.875,131 200 132 216,stand,19.3732 -136.398 0,,
|
||||
-42533.8 20510.1 -383.875,199 201 204,stand,19.0381 163.578 0,,
|
||||
-42834.8 20330.4 -383.875,200 202 214 215,stand,22.3999 -73.6885 0,,
|
||||
-43054.4 20541 -383.875,201 203 210,stand,17.4725 -111.729 0,,
|
||||
-43165.9 20735.9 -377.875,202 204,stand,21.3892 -23.4041 0,,
|
||||
-42560.7 20723.8 -377.875,203 200 155,stand,26.9867 -61.2575 0,,
|
||||
-42683.6 19963.4 -383.875,114 206 214 130,stand,20.9442 110.08 0,,
|
||||
-42825.7 19729.9 -377.875,205 114 207,stand,26.4319 21.162 0,,
|
||||
-43097 19735.1 -377.875,206 208 213,stand,15.3412 144.346 0,,
|
||||
-43228.9 20047.1 -383.875,207 209 211 212,stand,20.2686 46.5843 0,,
|
||||
-43366.7 20230.8 -375.875,208 210 212,stand,29.563 -46.3655 0,,
|
||||
-43131 20370.4 -383.875,209 211 202,stand,22.3999 -69.9916 0,,
|
||||
-43040.9 20181.4 -375.875,210 208 214,stand,32.6996 -159.92 0,,
|
||||
-43518.8 19877.8 -383.875,208 213 209,stand,17.132 28.2207 0,,
|
||||
-43455.3 19769.5 -377.875,212 207,stand,21.6144 60.3557 0,,
|
||||
-42781.3 20178.9 -375.875,211 201 205 130,stand,27.1021 -68.6513 0,,
|
||||
-42484.8 20184.9 -375.875,130 131 201,stand,53.8647 -109.855 0,,
|
||||
-41926.3 20475.1 -383.875,132 199 217,stand,26.8768 -141.293 0,,
|
||||
-41891.6 20653.7 -377.875,216 155 133 218,stand,16.9122 173.24 0,,
|
||||
-41607.4 19750.4 -377.875,217 184 188,stand,24.8608 125.307 0,,
|
||||
-43779.8 15040.3 -83.875,4 220 3,stand,24.306 44.865 0,,
|
||||
-43801.6 14835.7 -83.875,219 221,stand,25.7617 -86.4931 0,,
|
||||
-43751.1 14636.1 -83.875,220 222 244,stand,18.1482 -26.8044 0,,
|
||||
-43763.2 14467.9 -83.875,221 223,stand,27.5525 -124.346 0,,
|
||||
-43735.3 14324.5 -83.875,222 225 246,stand,19.4885 -35.7692 0,,
|
||||
-43902.4 13924 -83.875,225 226 227,stand,19.0436 7.90695 0,,
|
||||
-43745.9 14031.7 -83.875,224 223 237,stand,28.4479 98.7309 0,,
|
||||
-43796.5 13850.2 -83.875,224 229,stand,26.5417 175.218 0,,
|
||||
-44316.6 13835.1 -83.875,224 228,stand,11.5399 12.8398 0,,
|
||||
-44501.7 13883 -83.875,227,stand,22.6251 112.057 0,,
|
||||
-43592.7 13852.6 -83.875,226 230,stand,26.322 -172.049 0,,
|
||||
-43616.9 13485.8 -259.875,229 231 232 235 236,stand,26.8823 -109.224 0,,
|
||||
-43770.7 13189.2 -259.875,230 235,stand,28.5577 62.4156 0,,
|
||||
-43948.3 13628.2 -243.845,230 233,stand,30.2386 -31.7647 0,,
|
||||
-43874.8 13788.8 -259.875,232 234,stand,29.6783 -99.6327 0,,
|
||||
-43669.1 13643.8 -259.875,233,stand,31.134 -176.79 0,,
|
||||
-43885.3 13436 -259.875,231 230 236,stand,24.8663 -25.4201 0,,
|
||||
-43728.5 13553.4 -259.875,235 230,stand,25.9814 -158.009 0,,
|
||||
-43573 14100.1 -83.875,225 238 246,stand,21.955 102.917 0,,
|
||||
-43394.8 14191.6 -83.875,237 239,stand,28.6731 -57.6704 0,,
|
||||
-43344.3 14068.2 -83.875,238 240,stand,31.8097 -97.765 0,,
|
||||
-43227 14199.6 -83.875,239 241,stand,32.2546 165.852 0,,
|
||||
-43255.4 14534.1 -83.875,240 242 245,stand,23.5205 -153.944 0,,
|
||||
-43288.5 14832.3 -83.875,241 243 244,stand,22.9602 84.3224 0,,
|
||||
-43406.5 15002.4 -83.875,242 3,stand,39.8682 105.043 0,,
|
||||
-43575.1 14720.8 -83.875,242 221 245,stand,13.1055 33.2964 0,,
|
||||
-43509.7 14519.8 -83.875,244 241 246,stand,24.306 9.43954 0,,
|
||||
-43605.7 14382 -83.875,245 223 237,stand,26.0968 54.2363 0,,
|
||||
|
@@ -0,0 +1,21 @@
|
||||
20
|
||||
-17500.5 23281.8 -16359.9,1 3,stand,24.6368 -1.59471 0.0,,
|
||||
-17138.2 23089.3 -16359.9,0 2,stand,23.291 128.868 0.0,,
|
||||
-16772.3 23275.0 -16359.9,1 3 4 5,stand,35.8374 35.1381 0.0,,
|
||||
-17118.8 23446.0 -16359.9,0 2,stand,21.275 163.475 0.0,,
|
||||
-16477.9 23072.4 -16359.9,2 5 14,stand,17.3584 20.5043 0.0,,
|
||||
-16446.8 23447.4 -16359.9,2 4 14,stand,21.8353 -31.3127 0.0,,
|
||||
-15757.5 22754.9 -16359.9,14 15 16,stand,15.0073 127.967 0.0,,
|
||||
-15763.5 23801.1 -16359.9,8 9 14,stand,23.4064 -0.4796 0.0,,
|
||||
-15224.8 23991.7 -16359.9,7 9 10,stand,18.0286 -152.893 0.0,,
|
||||
-15245.6 23624.3 -16359.9,7 8 10,stand,26.6528 160.855 0.0,,
|
||||
-14922.9 23809.6 -16359.9,8 9 11 13,stand,17.6935 178.696 0.0,,
|
||||
-14547.0 23995.4 -16359.9,10 12,stand,32.2504 -0.369737 0.0,,
|
||||
-14137.8 23800.3 -16359.9,11 13,stand,37.403 -48.748 0.0,,
|
||||
-14576.1 23591.7 -16359.9,10 12,stand,31.0199 -169.246 0.0,,
|
||||
-15946.2 23283.2 -16359.9,4 5 6 7,stand,51.7401 -39.9425 0.0,,
|
||||
-15240.2 22930.6 -16359.9,6 16 17,stand,20.3796 -93.6986 0.0,,
|
||||
-15237.6 22559.6 -16359.9,6 15 19,stand,24.1919 164.953 0.0,,
|
||||
-14523.4 22536.0 -16359.9,15,stand,19.4843 -22.1391 0.0,,
|
||||
-14123.2 22761.3 -16359.9,19,stand,21.0553 25.4536 0.0,,
|
||||
-14573.1 22957.6 -16359.9,16 18,stand,18.3636 -148.317 0.0,,
|
||||
|
@@ -0,0 +1,314 @@
|
||||
313
|
||||
110.255 452.885 168.123,1 7 14 12,stand,24.1864 101.877 0,,
|
||||
132.694 576.067 168.123,0 2 5 6,stand,31.6901 157.16 0,,
|
||||
-0.564437 681.052 168.123,1 3 6,stand,26.2024 61.0792 0,,
|
||||
139.501 827.302 168.123,2 4 6,stand,32.4756 7.99876 0,,
|
||||
221.672 834.606 168.123,3 5,stand,25.7574 -68.3782 0,,
|
||||
261.229 714.231 168.123,4 1,stand,39.1937 -130.528 0,,
|
||||
131.343 736.81 168.123,1 3 2,stand,19.9347 73.0598 0,,
|
||||
-224.706 490.274 168.123,0 8,stand,20.8301 -120.64 0,,
|
||||
-271.319 352.361 168.123,7 9 10,stand,30.4596 117.186 0,,
|
||||
-324.304 406.629 168.123,8,stand,27.4384 132.413 0,,
|
||||
-245.548 193.756 168.123,8 11,stand,17.5836 47.566 0,,
|
||||
-85.8801 154.536 168.123,10 12,stand,19.1492 14.9751 0,,
|
||||
61.4898 343.511 168.123,11 13 0,stand,26.6528 -37.7703 0,,
|
||||
216.226 251.361 168.123,12 14 24 38,stand,19.0393 -39.1161 0,,
|
||||
391.829 373.27 168.123,13 0 15 23 24,stand,22.2858 -165.882 0,,
|
||||
624.032 276.442 168.123,14 16 43,stand,23.9667 -92.5316 0,,
|
||||
757.058 199.492 168.123,15 17 44,stand,21.1652 -19.7417 0,,
|
||||
902.849 166.619 168.123,16 18,stand,20.0446 -10.1067 0,,
|
||||
961.589 387.229 168.123,17 19,stand,16.6882 84.0736 0,,
|
||||
622.061 495.811 168.123,18 20,stand,19.1492 112.517 0,,
|
||||
584.395 602.571 168.123,19 21 23,stand,32.5854 150.925 0,,
|
||||
590.264 727.517 168.123,20 22,stand,28.1085 103.333 0,,
|
||||
469.043 769.266 168.123,21 23 231,stand,22.6208 162.461 0,,
|
||||
440.357 633.584 168.123,22 20 14,stand,17.8033 -87.791 0,,
|
||||
401.952 246.263 168.125,14 13 25,stand,21.0553 109.49 0,,
|
||||
341.097 38.2166 296.125,24 26 31,stand,20.495 -108.319 0,,
|
||||
278.638 18.36 296.125,25 27 28 29 31,stand,28.2184 134.094 0,,
|
||||
254.301 220.752 296.125,26 28,stand,20.6049 -130.72 0,,
|
||||
118.78 169.285 296.125,27 26,stand,31.8054 165.675 0,,
|
||||
242.765 -62.3413 296.125,26 30,stand,36.3977 166.938 0,,
|
||||
138.5 -39.0725 296.125,29 31,stand,32.1405 167.163 0,,
|
||||
358.877 -88.5232 296.125,30 26 25 32 33,stand,17.1332 68.874 0,,
|
||||
637.983 -139.942 296.125,31,stand,21.275 3.69762 0,,
|
||||
420.676 -20.9771 296.125,31 34,stand,23.1812 54.3171 0,,
|
||||
537.092 144.655 296.125,33 35,stand,28.2184 -96.0802 0,,
|
||||
703.952 122.064 296.125,34 36 37,stand,26.6528 66.9734 0,,
|
||||
693.89 311.552 296.125,35,stand,22.8461 113.001 0,,
|
||||
840.266 26.5772 296.125,35,stand,17.0233 -30.0853 0,,
|
||||
161.525 -258.266 168.125,13 39,stand,21.6156 -86.7528 0,,
|
||||
356.727 -322.826 169.718,38 40,stand,35.722 73.4993 0,,
|
||||
484.429 -109.462 168.125,39 41 45,stand,16.908 70.9285 0,,
|
||||
440.304 -6.16483 168.125,40 42,stand,25.0873 72.3841 0,,
|
||||
492.049 106.922 168.125,41 43,stand,30.2344 19.5234 0,,
|
||||
574.522 111.543 168.125,42 15,stand,23.7415 74.3946 0,,
|
||||
763.012 51.1253 168.125,16 45 46,stand,23.5162 -142.184 0,,
|
||||
645.383 -105.5 168.125,44 40,stand,22.8461 96.4222 0,,
|
||||
863.149 -10.0799 144.125,44 47,stand,29.0039 167.498 0,,
|
||||
783.63 -220.686 32.125,46 48,stand,39.0839 174.332 0,,
|
||||
631.881 -216.563 16.125,47 49 50,stand,19.259 -130.127 0,,
|
||||
591.459 46.8069 16.125,48 50 54,stand,27.5482 59.5466 0,,
|
||||
714.64 99.061 16.125,49 51 48,stand,27.8833 81.3819 0,,
|
||||
782.633 217.536 16.125,50 52,stand,11.9806 53.3888 0,,
|
||||
755.214 355.918 16.125,51 53,stand,23.5162 84.2933 0,,
|
||||
767.88 439.444 14.7686,52 269,stand,24.527 82.2773 0,,
|
||||
511.784 158.876 16.125,49 55 57,stand,12.431 116.467 0,,
|
||||
496.931 324.522 16.125,54 56,stand,19.0393 156.787 0,,
|
||||
311.633 364.268 13.6673,55,stand,22.6208 153.425 0,,
|
||||
371.106 94.6065 16.125,54 58 59,stand,22.1759 -165.849 0,,
|
||||
118.131 238.546 16.125,57,stand,23.9667 165.263 0,,
|
||||
313.213 -204.623 14.9124,57 60 62,stand,16.463 -22.3949 0,,
|
||||
286.705 -295.485 14.1072,59 61 62 125,stand,27.7734 67.6435 0,,
|
||||
154.271 -509.867 -12.7709,60 62 63,stand,28.6688 -161.333 0,,
|
||||
161.428 -245.668 12.8404,61 60 59 239,stand,20.6049 -0.219009 0,,
|
||||
124.714 -870.507 -103.858,61 64 100 309,stand,20.8301 -71.8554 0,,
|
||||
74.523 -1283.01 -157.351,63 65 100 309,stand,18.8141 -94.8113 0,,
|
||||
119.337 -1511.23 -152.793,64 66 83 104,stand,22.9559 -120.459 0,,
|
||||
-81.7478 -1799.58 -191.217,65 67 103 104,stand,20.8301 -127.067 0,,
|
||||
-124.597 -2237.57 -164.298,66 68 82 83 101 102,stand,15.4523 -90.6694 0,,
|
||||
-12.6338 -2451.63 -155.875,67 69 82,stand,24.8621 -96.8273 0,,
|
||||
-133.64 -2558.64 -157.875,68 70 74 75 76,stand,30.3497 -159.318 0,,
|
||||
-272.64 -2538.69 -157.875,69 71 73,stand,24.6368 -119.563 0,,
|
||||
-388.036 -2539 -157.875,70 72 101,stand,25.7574 178.957 0,,
|
||||
-521.615 -2525.32 -186.906,71 95 101,stand,26.8781 116.582 0,,
|
||||
-348.694 -3040.88 -157.875,70,stand,24.6368 -91.823 0,,
|
||||
-224.952 -2436.45 -155.875,69,stand,22.1759 85.337 0,,
|
||||
29.7272 -2544.05 -157.875,69,stand,21.1652 -113.664 0,,
|
||||
-30.2958 -2629.32 -157.875,69 77,stand,24.6368 -101.233 0,,
|
||||
-9.04946 -2797.45 -157.875,76 78,stand,18.3636 -32.3595 0,,
|
||||
-46.0229 -3046.2 -157.875,77 79,stand,33.1458 -57.8917 0,,
|
||||
26.8765 -3060.28 -157.875,78 80 90,stand,37.6282 148.047 0,,
|
||||
34.8157 -2804.2 -157.875,79 81,stand,27.4384 -89.5873 0,,
|
||||
70.7174 -2542.27 -155.875,80 82,stand,25.5322 174.255 0,,
|
||||
143.286 -2411.82 -166.799,81 68 67 83 85 105,stand,17.1332 168.652 0,,
|
||||
101.739 -1884.34 -177.959,82 65 84 67 105,stand,14.7821 75.6691 0,,
|
||||
998.473 -1487.1 -249.534,83 112 113 308,stand,20.1599 155.968 0,,
|
||||
406.39 -2951.61 -125.325,82 86 106,stand,18.2538 89.0339 0,,
|
||||
635.343 -2929.25 -152.729,85 87 107,stand,15.5676 -159.768 0,,
|
||||
729.089 -3276.86 -145.935,86 88 108,stand,25.9827 -114.301 0,,
|
||||
562.693 -3405.59 -185.38,87 89,stand,27.4384 -156.741 0,,
|
||||
177.48 -3235.56 -243.317,88 90 91,stand,22.8461 139.648 0,,
|
||||
142.896 -3118.71 -205.875,89 79,stand,13.8867 122.965 0,,
|
||||
-64.0494 -3324.91 -276.503,89 92,stand,25.5322 -145.431 0,,
|
||||
-355.93 -3356.75 -312.125,91 93,stand,22.2858 144.13 0,,
|
||||
-504.707 -3094.58 -284.667,92 94,stand,18.0286 93.6207 0,,
|
||||
-507.377 -2881.23 -258.306,93 95,stand,19.8193 151.074 0,,
|
||||
-732.112 -2752.74 -271.945,94 72 96,stand,10.6403 59.5796 0,,
|
||||
-736.226 -2174.87 -179.034,95 97,stand,8.28918 31.5809 0,,
|
||||
-512.991 -2117.48 -157.601,96 98 101 102,stand,18.479 78.8386 0,,
|
||||
-588.299 -1818.25 -162.98,97 99 102 103,stand,19.1492 75.5921 0,,
|
||||
-427.576 -1508.22 -156.288,98 100,stand,16.7981 57.6734 0,,
|
||||
-137.299 -1209.74 -142.838,99 63 64 104,stand,26.4276 52.8614 0,,
|
||||
-366.988 -2373.23 -157.875,67 71 97 72,stand,39.9792 -31.129 0,,
|
||||
-415.501 -1963.97 -146.25,97 98 103 67,stand,29.6741 -34.2272 0,,
|
||||
-354.551 -1786.47 -179.375,102 98 66 104,stand,16.7981 -38.2592 0,,
|
||||
-220.549 -1504.14 -140.698,103 100 66 65,stand,21.7255 78.0586 0,,
|
||||
371.273 -2204.31 -157.305,83 82 106,stand,11.9806 -105.27 0,,
|
||||
688.035 -2381.19 -155.551,105 107 85,stand,17.0233 -91.4934 0,,
|
||||
948.885 -2649.97 -141.579,106 86 108,stand,25.5322 136.028 0,,
|
||||
1134.88 -3179.37 -163.801,107 87 109 110,stand,15.6775 -155.214 0,,
|
||||
1360.27 -3586.4 -276.541,108,stand,12.0959 -9.07399 0,,
|
||||
1350.1 -2865.76 -265.6,108 111,stand,4.8175 -159.098 0,,
|
||||
1148.07 -2377.7 -274.462,110 112,stand,19.4843 89.4734 0,,
|
||||
1273.59 -1893.77 -282.822,111 113 84,stand,13.1012 90.8192 0,,
|
||||
1187.66 -1319.9 -261.431,112 84 114,stand,9.85474 -160.894 0,,
|
||||
2374.67 -950.726 -262.521,113 115,stand,12.876 45.3523 0,,
|
||||
2378.1 -675.539 -195.91,114 116 119 312,stand,7.3938 173.684 0,,
|
||||
2042.28 -635.976 -116.836,115 117 312,stand,11.2006 157.451 0,,
|
||||
1838.49 -352.501 -89.6927,116 118 122,stand,19.3744 88.0177 0,,
|
||||
1911.49 46.7767 -78.9129,117 121 122,stand,17.3584 62.5953 0,,
|
||||
2542.39 -262.197 -83.6367,115 120 126,stand,18.7042 57.4427 0,,
|
||||
2589.97 107.337 -114.253,119 121 126 272,stand,16.2378 105.376 0,,
|
||||
2288.43 251.754 -92.3036,120 118 272,stand,7.94861 -177.692 0,,
|
||||
1531 155.579 -14.1633,118 123 300 117,stand,12.9913 -51.7064 0,,
|
||||
1085.45 235.721 8.125,122 124 270 271,stand,12.6563 171.783 0,,
|
||||
878.31 -386.795 10.1057,123 125 308,stand,19.0393 157.896 0,,
|
||||
563.575 -362.867 8.125,124 60,stand,26.543 170.997 0,,
|
||||
2749.23 -51.2308 -126.043,119 120 127,stand,21.275 150.618 0,,
|
||||
3300.04 -475.125 -118.429,126 128 131,stand,17.9187 -29.0087 0,,
|
||||
3964.84 26.2966 -119.875,127 129 130,stand,18.479 103.695 0,,
|
||||
4212.14 95.5983 -119.785,128 277 278 275,stand,15.1172 109.403 0,,
|
||||
3961.46 386.931 -119.875,128,stand,17.8033 96.7463 0,,
|
||||
4153.55 -173.738 -111.875,127 132 278,stand,15.0073 13.4645 0,,
|
||||
4883.23 -510.718 -75.1606,131 133,stand,14.6722 74.6089 0,,
|
||||
5312.18 -311.056 -85.5428,132 134,stand,13.8867 78.8661 0,,
|
||||
5327.13 337.273 -113.561,133 135,stand,13.1012 99.6962 0,,
|
||||
5311.31 866.108 -114.471,134 136 284,stand,13.9966 86.8147 0,,
|
||||
5412.29 1046.25 -130.508,135 137,stand,14.5569 32.2785 0,,
|
||||
5732.46 1246.02 -132.404,136 138,stand,14.1119 38.777 0,,
|
||||
6182.62 1696.21 -166.054,137 139 288,stand,11.6455 67.2206 0,,
|
||||
6061.75 2628.24 -172.837,138 140,stand,9.9646 93.5328 0,,
|
||||
5905.76 3211.28 -161.395,139 141,stand,27.323 109.1 0,,
|
||||
5675.2 2848.64 -192.295,140 142 143 290,stand,28.6688 50.0819 0,,
|
||||
5168.98 3255.85 -181.399,141 143 147,stand,23.7415 64.1938 0,,
|
||||
5410.06 2928.98 -207.365,142 141 144 290,stand,17.2485 113.836 0,,
|
||||
5738.83 3424.5 -391.727,143 145,stand,22.7362 91.775 0,,
|
||||
5455.54 3628.81 -367.294,144 146,stand,5.71289 -177.516 0,,
|
||||
5099.57 3935.46 -390.563,145 147,stand,20.495 111.484 0,,
|
||||
4692.38 3731.52 -238.392,146 148 142,stand,10.6403 175.205 0,,
|
||||
4231.46 3524.98 -167.812,147 149 289,stand,13.9966 -170.798 0,,
|
||||
3742.09 3410.4 -154.761,148 150,stand,9.06921 -173.149 0,,
|
||||
3455.37 3252.41 -96.0957,149 151,stand,11.2006 -139.328 0,,
|
||||
3053.6 2594.98 -126.49,150 152 294,stand,11.4203 -129.253 0,,
|
||||
2572.41 2273.85 -102.204,151 153 294,stand,10.7501 162.774 0,,
|
||||
2446.37 2556.64 6.01616,152 154,stand,10.7501 -177.851 0,,
|
||||
2048.47 2726.36 -11.3571,153 155,stand,14.7821 132.875 0,,
|
||||
1857.69 3209.77 24.7086,154 156,stand,13.3264 132.315 0,,
|
||||
1260.82 2942.5 34.3176,155 157 303,stand,36.8427 75.7624 0,,
|
||||
994.359 2592.99 43.0731,156 158,stand,12.9913 -128.693 0,,
|
||||
808.199 2235.67 56.0765,157 159,stand,20.495 -28.4649 0,,
|
||||
1118.09 2060.27 9.07689,158 160,stand,23.1812 -62.2808 0,,
|
||||
1184.66 1765.33 2.61213,159 161,stand,17.0233 -84.0062 0,,
|
||||
1197.25 1500.55 15.1412,160 162,stand,14.3372 -113.235 0,,
|
||||
1088.54 1328.84 79.0418,161 163,stand,13.3264 -133.39 0,,
|
||||
956.441 1269.35 122.477,162 164,stand,14.7821 -153.099 0,,
|
||||
899.126 1066 100.365,163 165,stand,18.5889 114.736 0,,
|
||||
763.161 1075.78 126.987,164 166,stand,25.5322 -12.4798 0,,
|
||||
816.399 1432.05 135.673,165 167,stand,23.1812 78.1135 0,,
|
||||
937.843 1878.5 135.765,166 168,stand,24.8621 82.8212 0,,
|
||||
519.454 1914.18 93.1393,167 169 229,stand,27.5482 165.466 0,,
|
||||
171.886 2225.64 31.6377,168 170,stand,36.1725 9.05345 0,,
|
||||
167.158 2351.18 50.7704,169 171,stand,18.8141 121.488 0,,
|
||||
-115.282 2665.22 19.7159,170 172,stand,20.3796 121.603 0,,
|
||||
-360.056 2832.72 33.0815,171 173,stand,35.6122 -170.87 0,,
|
||||
-736.621 2362.91 -133.038,172 174 242,stand,38.1885 145.789 0,,
|
||||
-860.531 2496.9 -197.203,173 175 253,stand,22.3956 89.6876 0,,
|
||||
-526.902 3119.94 -247.732,174 176,stand,18.2538 66.056 0,,
|
||||
-231.097 3223.74 -200.926,175 177,stand,14.6722 -157.801 0,,
|
||||
-369.444 3641.53 -249.847,176 178 252,stand,23.6316 94.8017 0,,
|
||||
-350.056 4246.23 -333.431,177 179 260,stand,17.9187 124.256 0,,
|
||||
-494.398 4707.73 -300.215,178 180,stand,2.46643 163.785 0,,
|
||||
-1090.52 4651.15 -229.525,179 181 260,stand,23.5162 173.98 0,,
|
||||
-1411.62 4844.2 -231.084,180 182 264,stand,18.0286 123.586 0,,
|
||||
-1470.96 4951.16 -216.431,181 183,stand,17.2485 116.082 0,,
|
||||
-1697.8 5229.33 -224.584,182 184,stand,9.51965 129.183 0,,
|
||||
-1887.56 5476.09 -214.826,183 185 265,stand,9.74487 120.449 0,,
|
||||
-1917.27 5715.79 -153.094,184 187 201,stand,12.6563 66.1384 0,,
|
||||
-2037.99 6288.82 -82.6182,187 188 201,stand,18.0286 111.94 0,,
|
||||
-1869.67 5978.31 -97.4859,186 185,stand,40.3143 -127.265 0,,
|
||||
-2190.25 6651.04 -130.709,186 189 201,stand,10.3052 136.127 0,,
|
||||
-2569.85 6788.41 -36.3038,188 190,stand,2.01599 177.337 0,,
|
||||
-2828.54 6773.58 32.1062,189 191,stand,3.02124 178.232 0,,
|
||||
-3190.73 6826.03 122.579,190 192,stand,3.58154 173.865 0,,
|
||||
-3549.73 6854.9 186.355,191 193,stand,22.6208 16.1122 0,,
|
||||
-3631.93 6655.28 216.389,192 194,stand,6.60828 -114.35 0,,
|
||||
-3824.31 6294.08 298.892,193 195,stand,-2.24121 -130.363 0,,
|
||||
-3820.09 6187.88 319.144,194 196,stand,27.9987 112.501 0,,
|
||||
-3410.75 6455.31 154.553,195 197,stand,27.9987 35.904 0,,
|
||||
-3039 6559.1 59.4742,196 198,stand,30.4596 10.5146 0,,
|
||||
-3063.49 6172.02 -46.5276,197 199 201,stand,21.1652 -25.5425 0,,
|
||||
-3257.32 5732.46 -263.085,198 200,stand,22.1759 -93.7401 0,,
|
||||
-2867.24 5717.29 -171.839,199 201 202,stand,7.16858 -15.6823 0,,
|
||||
-2554.24 6119.1 -68.4513,200 198 186 188 185 265,stand,22.1759 34.2616 0,,
|
||||
-2443.92 5243.28 -234.124,200 203 265,stand,12.9913 -47.4602 0,,
|
||||
-2143.54 4869.82 -225.217,202 204 265,stand,16.5729 -71.8718 0,,
|
||||
-2436.51 4482.38 -150.228,203 205,stand,15.3424 -134.697 0,,
|
||||
-2609.36 4249.1 -165.786,204 206,stand,23.9667 -47.5701 0,,
|
||||
-2569.46 3973.44 -214.173,205 207 262,stand,32.5909 -121.926 0,,
|
||||
-2603.56 3629.74 -344.001,206 208,stand,32.0306 -96.2834 0,,
|
||||
-2667.79 3472.06 -410.49,207 209 261,stand,27.4384 -127.638 0,,
|
||||
-2839.76 3153.52 -463.875,208 210,stand,25.5322 -115.542 0,,
|
||||
-2681.62 2859.32 -430.475,209 211 261 266,stand,6.71814 -66.9445 0,,
|
||||
-2539.85 2148.69 -295.537,210 212 247 256 266,stand,4.8175 -78.3648 0,,
|
||||
-2559.9 1814.97 -301.355,211 213,stand,9.85474 -102.441 0,,
|
||||
-2652.77 1454.78 -284.686,212 214 247,stand,11.3104 -84.1875 0,,
|
||||
-2643.41 1010.11 -329.04,213 215,stand,18.3636 -94.1576 0,,
|
||||
-2578.53 866.882 -332.808,214 216 246,stand,30.4596 -171.985 0,,
|
||||
-2686.02 635.174 -338.734,215 217,stand,16.463 -125.293 0,,
|
||||
-2627.59 521.979 -330.144,216 218,stand,14.6722 -37.3803 0,,
|
||||
-2239.05 388.646 -330.653,217 219,stand,16.1279 -15.5449 0,,
|
||||
-2158.04 280.044 -327.681,218 220,stand,16.1279 -30.9972 0,,
|
||||
-2014.08 357.403 -333.335,219 221,stand,12.876 30.5921 0,,
|
||||
-1907.03 584.206 -313.461,220 222 246,stand,16.6882 67.3249 0,,
|
||||
-1515.05 1032.15 -389.634,221 223 245,stand,22.2858 39.8866 0,,
|
||||
-1299.73 1208.81 -423.996,222 224,stand,21.6156 58.7007 0,,
|
||||
-1190.13 1374.91 -478.741,223 225,stand,14.3372 31.493 0,,
|
||||
-831.05 1593.67 -365.197,224 226,stand,4.36707 29.1365 0,,
|
||||
-551.872 1864.99 -147.644,225 227 242,stand,-1.23047 31.2678 0,,
|
||||
-180.132 1872.45 -72.728,226 228,stand,2.57629 -15.7702 0,,
|
||||
180.092 1789.7 23.3686,227 229,stand,6.71814 -32.343 0,,
|
||||
394.088 1732.59 68.9313,228 168 230 240,stand,19.0393 89.2756 0,,
|
||||
548.328 1421.14 125.77,229 231,stand,8.17383 -57.5072 0,,
|
||||
488.329 1004.97 152.125,230 22 232 267,stand,14.3372 -107.676 0,,
|
||||
-35.0819 999.79 152.411,231 233,stand,13.9966 -148.029 0,,
|
||||
-148.954 642.242 131.144,232 234,stand,26.8781 -177.928 0,,
|
||||
-255.204 652.559 111.968,233 235,stand,19.0393 -9.27724 0,,
|
||||
-435.826 399.997 80.0019,234 236,stand,14.892 -117.795 0,,
|
||||
-507.786 185.99 64.692,235 237,stand,11.5356 -64.1539 0,,
|
||||
-326.176 49.545 119.356,236 238,stand,12.9913 -35.8202 0,,
|
||||
1.29919 -57.1021 50.8862,237 239,stand,37.403 -36.6057 0,,
|
||||
4.72428 -228.944 17.4099,238 62,stand,28.894 -80.3917 0,,
|
||||
227.239 2005.55 19.1467,229 241,stand,18.5889 159.709 0,,
|
||||
-257.77 2149.58 -55.7782,240 242,stand,20.6049 169.229 0,,
|
||||
-606.343 2161.43 -106.407,241 173 243 226,stand,25.5322 162.73 0,,
|
||||
-1053.65 1988.13 -181.087,242 253 255,stand,13.8867 -146.76 0,,
|
||||
-1559.52 1626.15 -250.861,245 255,stand,15.7928 -141.498 0,,
|
||||
-1869.4 1285.17 -255.211,244 246 222 247,stand,19.1492 -127.161 0,,
|
||||
-2182.81 977.006 -270.339,245 215 221,stand,32.1405 -152.918 0,,
|
||||
-2101.2 1589.02 -239.875,245 213 211 248,stand,15.4523 3.86241 0,,
|
||||
-1918.28 2073.79 -229.36,247 249 254,stand,13.6615 53.6579 0,,
|
||||
-1502.91 2434.36 -205.719,248 250 253 254 256,stand,8.62427 44.4789 0,,
|
||||
-1391.47 2992.53 -125.966,249 251,stand,14.5569 77.9597 0,,
|
||||
-975.831 3522.52 -187.759,250 252,stand,17.0233 56.0145 0,,
|
||||
-621.55 3750.73 -235.512,251 177,stand,22.3956 0.808212 0,,
|
||||
-1232.5 2303.47 -193.796,249 174 243 255,stand,11.4203 -31.8596 0,,
|
||||
-1640.34 2167.66 -218.213,249 255 248,stand,17.3584 -20.8898 0,,
|
||||
-1239.46 1854.27 -211.846,254 243 244 253,stand,14.3372 137.687 0,,
|
||||
-1897 2688.81 -259.13,249 211 257 266,stand,16.6882 171.871 0,,
|
||||
-1802.58 3493.22 -338.028,256 258 261,stand,9.40979 -84.3962 0,,
|
||||
-1538.35 3532.86 -340.641,257 259,stand,10.3052 4.85667 0,,
|
||||
-1023.56 3760.53 -312.08,258 260,stand,9.9646 23.5609 0,,
|
||||
-741.905 4190.93 -283.494,259 178 180,stand,21.8353 35.8766 0,,
|
||||
-2290.96 3376.53 -383.91,257 208 210 262 266,stand,17.8088 -169.727 0,,
|
||||
-2247.34 3854.09 -218.3,261 206 263,stand,15.7928 150.557 0,,
|
||||
-1860.87 4208.65 -236.297,262 264,stand,10.415 126.239 0,,
|
||||
-1761.92 4792.57 -260.625,263 265 181,stand,11.4258 148.525 0,,
|
||||
-2154.39 5445.17 -210.721,264 201 184 202 203,stand,3.80676 120.081 0,,
|
||||
-2142.84 2685.85 -271.698,261 256 210 211,stand,26.7627 105.892 0,,
|
||||
875.357 851.942 51.0953,231 268 307,stand,22.3956 -22.0598 0,,
|
||||
1046.73 524.889 10.2957,267 269 271,stand,11.7609 -113.774 0,,
|
||||
921.429 411.807 14.0546,268 53 270,stand,14.1119 -160.246 0,,
|
||||
883.628 133.978 16.125,269 123,stand,21.9507 69.5442 0,,
|
||||
1122.66 462.35 8.125,268 123 301,stand,31.8054 -134.791 0,,
|
||||
2615.14 402.06 -122.317,121 120 273 300,stand,28.2184 -92.6854 0,,
|
||||
2808.26 425.445 -124.061,272 274,stand,24.7522 -163.009 0,,
|
||||
3897.51 749.613 -114.138,273 281,stand,32.926 -62.7807 0,,
|
||||
4091.93 642.303 -119.909,276 280 129,stand,24.7522 -58.8585 0,,
|
||||
4454.21 427.387 -121.223,275 277 279,stand,24.4116 29.944 0,,
|
||||
4551.19 271.502 -127.688,276 129 278,stand,18.1439 129.354 0,,
|
||||
4301.28 -95.9682 -116.091,277 129 131,stand,21.6156 133.276 0,,
|
||||
4360.08 824.227 -121.255,276 280 282,stand,13.1012 103.41 0,,
|
||||
4037.87 708.718 -120.342,279 275 281 282,stand,28.6688 -41.0167 0,,
|
||||
3929.74 685.116 -119.875,280 274,stand,37.0679 106.134 0,,
|
||||
4157.32 914.349 -122.261,280 279 283 295 296,stand,21.8353 -80.6884 0,,
|
||||
4636.12 968.06 -121.191,282 284,stand,16.5729 -171.869 0,,
|
||||
4939.44 1016.18 -131.875,283 135 285,stand,11.3104 -1.87794 0,,
|
||||
5219.82 1156.82 -141.829,284 286,stand,13.6615 30.2516 0,,
|
||||
5417.67 1394.7 -147.827,285 287,stand,6.71814 70.6813 0,,
|
||||
5416.99 1548.55 -143.93,286 288,stand,5.93811 101.586 0,,
|
||||
5378.31 1952.33 -147.305,287 289 292 138,stand,9.85474 116.961 0,,
|
||||
4925.32 2492.41 -167.013,288 290 148 293,stand,15.2325 92.8846 0,,
|
||||
5259.44 2800.45 -181.723,289 143 141 291,stand,26.4276 -28.2836 0,,
|
||||
5424.49 2491.31 -180.257,290 292,stand,16.6882 158.698 0,,
|
||||
5742.75 2288.03 -173.371,291 288,stand,14.2218 163.406 0,,
|
||||
4266.42 2163.02 -125.503,289 294 295,stand,12.3212 -170.919 0,,
|
||||
3279.33 2218.63 -107.619,293 152 151,stand,4.36707 179.111 0,,
|
||||
4393.56 1338.57 -164.128,293 282,stand,7.83875 -96.679 0,,
|
||||
3548.61 1074.4 -155.168,282 297,stand,9.18457 -170.216 0,,
|
||||
2974.85 1402.89 -193.251,296 298,stand,13.6615 141.071 0,,
|
||||
2398.34 1589.87 -168.668,297 299 302,stand,6.49841 176.348 0,,
|
||||
2057.91 1173.13 -118.758,298 300,stand,4.8175 -124.859 0,,
|
||||
1654 833.341 -53.6315,299 301 306 272 122,stand,7.83875 -177.379 0,,
|
||||
1208.78 594.541 8.125,300 271,stand,11.8707 -19.1485 0,,
|
||||
1807.38 2110.95 -45.3053,298 303,stand,6.04797 -91.0045 0,,
|
||||
1569.96 2327.77 -40.7573,302 156 304,stand,8.39905 122.515 0,,
|
||||
1754.16 1883.25 -14.537,303 305,stand,10.1898 -92.4547 0,,
|
||||
1679.09 1445.61 43.4732,304 306,stand,10.08 -121.794 0,,
|
||||
1355.79 1164.17 26.6135,305 307 300,stand,13.8867 -156.06 0,,
|
||||
1027.02 965.786 34.2427,306 267,stand,9.9646 -136.125 0,,
|
||||
767.016 -1066.58 -134.011,124 84 309 310,stand,0.785522 101.619 0,,
|
||||
313.687 -1005.82 -134.57,308 63 64,stand,19.9347 -104.073 0,,
|
||||
1175.55 -1039.95 -86.9421,308 311,stand,8.62427 25.3846 0,,
|
||||
1543.35 -836.458 -53.9352,310 312,stand,12.9913 23.039 0,,
|
||||
1900 -822.42 -90.4127,311 116 115,stand,21.6156 5.23021 0,,
|
||||
|
@@ -0,0 +1,287 @@
|
||||
286
|
||||
-1662.29 1835.52 1093.86,1,stand,25.5322 -90.3521 0.0,,
|
||||
-1651.62 1564.72 1095.82,0 14 47 110,stand,23.9667 -102.108 0.0,,
|
||||
-84.1973 -326.624 841.057,157 162 163 199 201 202,stand,26.0925 -90.3521 0.0,,
|
||||
1283.4 -684.269 825.961,4 204,stand,23.9667 -28.9825 0.0,,
|
||||
1415.4 -775.491 767.368,3 5,stand,30.2344 -32.6794 0.0,,
|
||||
1579.45 -855.696 696.204,4 6 215,stand,30.6848 -27.752 0.0,,
|
||||
1820.02 -879.535 700.889,5 7,stand,24.3018 -5.46628 0.0,,
|
||||
1856.12 -1294.13 708.879,6 8 206,stand,20.8301 -90.6872 0.0,,
|
||||
2303.85 -1602.02 702.219,7 9 211 212 213,stand,21.7255 -46.2256 0.0,,
|
||||
2636.43 -1300.11 699.826,8 10 213 214,stand,16.908 45.3784 0.0,,
|
||||
2501.09 -438.685 841.902,9 216 218,stand,17.3584 100.585 0.0,,
|
||||
3841.95 54.7929 1039.12,12 220 221 250 251 280,stand,13.6615 9.20596 0.0,,
|
||||
4483.64 191.068 1042.98,11 235 245 247 259 268,stand,13.6615 22.6422 0.0,,
|
||||
6150.79 826.75 1055.49,257 271 274,stand,15.9027 99.1291 0.0,,
|
||||
-1826.95 1241.84 1095.79,1 15 16 47,stand,31.4703 -103.321 0.0,,
|
||||
-1806.97 976.705 1067.64,14 16 18,stand,37.5128 -107.128 0.0,,
|
||||
-2059.21 852.031 1065.17,14 15 39 40 44 45 46,stand,29.0039 -146.322 0.0,,
|
||||
-1731.8 616.437 1056.57,18 20 39 50,stand,29.339 2.50983 0.0,,
|
||||
-1698.06 921.835 1071.46,15 17 19,stand,28.4436 98.2557 0.0,,
|
||||
-1702.08 1147.81 1085.24,18,stand,25.4224 72.273 0.0,,
|
||||
-1782.84 233.333 1054.49,17 21,stand,29.0039 114.345 0.0,,
|
||||
-1904.96 215.495 1056.68,20 22,stand,25.8673 -90.2148 0.0,,
|
||||
-1885.83 -237.299 1060.34,21 23 29,stand,25.9827 -88.2043 0.0,,
|
||||
-2270.7 -274.066 1060.9,22 24 29 30 61,stand,19.259 -168.157 0.0,,
|
||||
-2361.41 -386.049 1060.03,23 25 26 27,stand,26.7627 -79.7228 0.0,,
|
||||
-2458.11 -182.45 1060.22,24 26,stand,28.7787 85.2314 0.0,,
|
||||
-2513.38 -351.522 1060.19,24 25 59,stand,24.527 -111.495 0.0,,
|
||||
-2228.15 -441.648 1063.9,24 28,stand,23.9667 -11.4923 0.0,,
|
||||
-1987.27 -443.872 1065.32,27 29 62,stand,25.8673 94.3336 0.0,,
|
||||
-1995.98 -260.637 1062.42,22 23 28,stand,26.2024 91.5375 0.0,,
|
||||
-2347.88 -40.4495 1060.11,23 31 33 60 61,stand,20.495 145.068 0.0,,
|
||||
-2582.79 -29.1096 1060.3,30 32,stand,37.738 132.077 0.0,,
|
||||
-2596.41 88.6593 1062.72,31 33 57,stand,30.575 31.1786 0.0,,
|
||||
-2330.3 89.7279 1060.12,30 32 34 57 58 60,stand,32.2504 24.2353 0.0,,
|
||||
-2316.56 409.941 1056.13,33 35 54,stand,27.9987 73.509 0.0,,
|
||||
-2204.95 426.819 1056.63,34 38 58,stand,26.7627 10.9089 0.0,,
|
||||
-2054.82 506.67 1062.27,37 38,stand,18.8141 -160.621 0.0,,
|
||||
-2094.21 621.643 1063.06,36 38 41,stand,20.7202 135.884 0.0,,
|
||||
-2175.22 528.643 1062.37,35 36 37 43 53,stand,41.4349 -178.089 0.0,,
|
||||
-1918.69 601.393 1059.04,16 17,stand,20.8301 5.4212 0.0,,
|
||||
-2124.22 761.429 1065.14,16 41 44 46,stand,25.1971 -118.851 0.0,,
|
||||
-2131.11 681.937 1063.76,37 40,stand,43.9014 -71.1425 0.0,,
|
||||
-2269.7 659.299 1070.13,43 44,stand,35.387 -85.4797 0.0,,
|
||||
-2267.66 530.567 1070.13,38 42,stand,36.8427 -85.3643 0.0,,
|
||||
-2271.71 750.625 1065.02,16 40 42 46,stand,47.2577 -87.1551 0.0,,
|
||||
-2092.94 1039.46 1085.11,16,stand,38.6334 -143.004 0.0,,
|
||||
-2212.7 893.035 1065.8,16 40 44,stand,38.5236 -108.738 0.0,,
|
||||
-1983.07 1291.91 1097.85,1 14 48 49,stand,31.1298 93.5096 0.0,,
|
||||
-2017.41 1421.36 1100.81,47 49,stand,29.2291 40.3962 0.0,,
|
||||
-1965.02 1558.37 1101.01,47 48,stand,30.91 76.1182 0.0,,
|
||||
-1641.74 422.233 1074.64,17 51 52,stand,33.0359 80.5952 0.0,,
|
||||
-1633.66 669.217 1092.13,50,stand,28.4436 86.8683 0.0,,
|
||||
-1807.43 422.401 1055.15,50 53,stand,23.291 2.28461 0.0,,
|
||||
-2002.95 419.846 1060.5,38 52,stand,30.2344 169.48 0.0,,
|
||||
-2425.46 425.02 1056.72,34 55,stand,21.7255 -103.058 0.0,,
|
||||
-2459.16 237.427 1059.64,54 56,stand,16.1279 66.0383 0.0,,
|
||||
-2428.11 171.336 1056.82,55 57,stand,30.4596 -83.7988 0.0,,
|
||||
-2417.06 103.683 1060.13,32 33 56,stand,30.3497 -160.06 0.0,,
|
||||
-2207.88 142.915 1061.18,33 35,stand,34.3817 -96.5649 0.0,,
|
||||
-2488.12 -40.9596 1060.33,26,stand,59.6887 -19.4079 0.0,,
|
||||
-2251.59 8.84294 1062.43,30 33,stand,26.543 -2.82953 0.0,,
|
||||
-2258.28 -105.16 1061.95,23 30,stand,31.8054 20.7966 0.0,,
|
||||
-2005.16 -799.266 1074.68,28 63,stand,28.3337 -94.472 0.0,,
|
||||
-2015.85 -950.103 1038.66,62 66,stand,28.3337 -94.2467 0.0,,
|
||||
-2219.17 -1091.27 1034.45,65 66 68 69,stand,24.8621 178.181 0.0,,
|
||||
-2199.01 -1269.01 1036.39,64 67 68,stand,24.8621 93.7787 0.0,,
|
||||
-2051.73 -1087.16 1035.13,63 64 67,stand,33.8214 71.3776 0.0,,
|
||||
-2047.47 -1249.3 1034.52,65 66,stand,24.4116 -110.561 0.0,,
|
||||
-2419.29 -1294.13 1034.06,64 65 71 72 73 74,stand,20.495 -176.331 0.0,,
|
||||
-2352.26 -1078.46 1034.13,64 70 71,stand,24.527 -5.55414 0.0,,
|
||||
-2368.15 -945.152 1039.14,69,stand,30.1245 82.8803 0.0,,
|
||||
-2453.22 -1103.92 1034.13,68 69,stand,27.8833 -1.85724 0.0,,
|
||||
-2934.87 -1353.51 1039.37,68,stand,18.5889 11.579 0.0,,
|
||||
-2726.3 -1232.94 1034.13,68,stand,13.7769 161.976 0.0,,
|
||||
-2511.71 -1500.13 1037.63,68 75,stand,22.8461 -99.5092 0.0,,
|
||||
-2477.07 -1954.43 1036.13,74 76,stand,57.8979 -88.6492 0.0,,
|
||||
-2530.52 -2330.37 1037.13,75 77,stand,24.7467 -92.011 0.0,,
|
||||
-2517.32 -2841.37 1037.13,76 78,stand,12.5409 108.187 0.0,,
|
||||
-2913.38 -2871.79 1037.13,77 79 80,stand,16.463 -163.79 0.0,,
|
||||
-2930.51 -2645.03 1037.13,78,stand,15.7928 98.1074 0.0,,
|
||||
-3116.33 -2906.97 1037.13,78 81,stand,16.908 96.2067 0.0,,
|
||||
-3155.32 -2642.28 1038.13,80 82 98 107,stand,20.7202 102.925 0.0,,
|
||||
-3532.1 -2571.33 1039.95,81 83,stand,33.8214 88.1757 0.0,,
|
||||
-3557.38 -2168.04 1036.6,82 84 85 99,stand,18.0286 152.907 0.0,,
|
||||
-3850.38 -2331.74 1036.8,83,stand,28.4436 -157.709 0.0,,
|
||||
-3667.28 -1983.99 1038.13,83 86 88 90,stand,25.8673 104.639 0.0,,
|
||||
-3793.96 -1961.79 1044.13,85 87,stand,21.0553 -176.523 0.0,,
|
||||
-3849.71 -2090.1 1044.13,86,stand,40.3143 68.8727 0.0,,
|
||||
-3714.82 -1913.95 1041.49,85 89,stand,36.2823 114.675 0.0,,
|
||||
-3723.39 -1763.66 1038.08,88 90 91 92,stand,38.974 -70.6262 0.0,,
|
||||
-3514.72 -1782.34 1034.92,85 89 91 96,stand,30.2344 -126.25 0.0,,
|
||||
-3487.83 -1649.53 1038.13,89 90 93 97,stand,50.8447 57.9304 0.0,,
|
||||
-3843.2 -1688.43 1038.09,89,stand,29.8993 -37.7056 0.0,,
|
||||
-3485.96 -1576.97 1038.13,91 94,stand,35.5023 77.7167 0.0,,
|
||||
-3395.21 -1565.21 1038.13,93 95,stand,43.9014 4.36652 0.0,,
|
||||
-3382.81 -1422.47 1038.13,94,stand,38.4137 81.9684 0.0,,
|
||||
-3639.94 -1595.66 1038.64,90,stand,30.6848 118.141 0.0,,
|
||||
-3447.88 -1800.45 1036.82,91 100,stand,78.0524 139.196 0.0,,
|
||||
-3206.9 -2478.12 1037.03,81 99,stand,34.7168 100.706 0.0,,
|
||||
-3168.17 -2146.53 1032.74,83 98 100 102 103 107,stand,23.8513 19.4782 0.0,,
|
||||
-3151.02 -1773.82 1034.52,97 99 101 102,stand,14.892 179.313 0.0,,
|
||||
-3236.05 -1551.04 1038.13,100,stand,21.7255 -77.1356 0.0,,
|
||||
-2858.33 -1796.38 1034.13,99 100 103 105,stand,30.7947 165.953 0.0,,
|
||||
-2867.67 -2174.21 1031.36,99 102 104 107,stand,15.6775 97.2285 0.0,,
|
||||
-2745.66 -2158.52 1034.13,103 106 109,stand,15.6775 97.1131 0.0,,
|
||||
-2877.04 -1540.53 1034.11,102 106,stand,28.894 39.1437 0.0,,
|
||||
-2746.33 -1560.64 1035.89,104 105,stand,23.0713 -8.44904 0.0,,
|
||||
-2773.31 -2464.74 1034.41,81 99 103 108 109,stand,68.537 76.6456 0.0,,
|
||||
-2727.81 -2647.52 1040.95,107,stand,34.7156 -57.1734 0.0,,
|
||||
-2603.52 -2372.67 1038.13,104 107,stand,54.8755 167.239 0.0,,
|
||||
-1248.43 1550.61 1101.89,1 111 117 119,stand,37.2919 112.708 0.0,,
|
||||
-1385.25 1901.1 1098.17,110 112,stand,17.4725 1.24091 0.0,,
|
||||
-971.865 2026.75 1095.82,111 113 119,stand,22.8448 -0.549866 0.0,,
|
||||
-847.87 1878.59 1095.61,112 114,stand,24.6356 -53.5205 0.0,,
|
||||
-682.107 2034.12 1096.89,113 115 116 117,stand,17.8076 17.3633 0.0,,
|
||||
-326.234 2054.42 1097.05,114 116 117 118,stand,24.5258 -91.5991 0.0,,
|
||||
-53.939 2031.15 1091.7,114 115 118,stand,18.3679 -10.6298 0.0,,
|
||||
-495.765 1867.23 1095.08,110 114 115 118,stand,27.6624 -34.4921 0.0,,
|
||||
-231.457 1793.39 1096.66,115 116 117 120 121,stand,32.0294 -56.1077 0.0,,
|
||||
-941.978 1547.92 1101.9,110 112 120 142,stand,12.2046 -81.3049 0.0,,
|
||||
-316.397 1579.8 1101.12,118 119 121 122,stand,7.83753 -58.5797 0.0,,
|
||||
-111.922 1553.47 1096.13,118 120 122 125 126,stand,17.3572 -10.3167 0.0,,
|
||||
-302.099 1422.21 1101.75,120 121 123 124,stand,19.7083 -63.963 0.0,,
|
||||
-321.873 1218.63 1099.13,122,stand,36.2811 -68.33 0.0,,
|
||||
-227.32 1235.35 1090.78,122 125,stand,27.547 -80.5358 0.0,,
|
||||
8.09189 1263.06 1084.49,121 124,stand,19.2633 -73.9276 0.0,,
|
||||
-67.06 684.098 1041.88,121 127 128,stand,19.3732 -77.2949 0.0,,
|
||||
-44.048 470.586 1012.42,126 129 144 163,stand,30.1233 -103.53 0.0,,
|
||||
-307.272 678.029 1069.77,126 129,crouch,49.8328 177.852 0.0,,
|
||||
-361.787 523.057 1007.43,127 128 130 135,stand,26.2067 83.4846 0.0,,
|
||||
-360.913 418.647 1010.13,129 131 134,stand,23.4052 -73.0761 0.0,,
|
||||
-312.231 310.975 1010.13,130 132,stand,20.9442 -82.5958 0.0,,
|
||||
-305.637 151.366 1010.13,131 133,stand,40.4285 -155.951 0.0,,
|
||||
-384.953 181.882 1010.13,132 134,stand,36.8414 125.216 0.0,,
|
||||
-392.557 340.079 1010.13,130 133,stand,33.7103 88.3735 0.0,,
|
||||
-831.957 533.067 1007.75,129 136 141,stand,16.1267 -178.303 0.0,,
|
||||
-1027.06 518.818 1034.13,135 137 138,stand,33.8202 -176.957 0.0,,
|
||||
-1035.43 640.155 1034.13,136 140,stand,35.166 92.334 0.0,,
|
||||
-1093.94 477.439 1034.13,136 139,stand,28.783 162.888 0.0,,
|
||||
-1156.87 488.623 1034.13,138,stand,29.6783 161.762 0.0,,
|
||||
-1180.18 635.787 1034.13,137,stand,28.1073 -5.29047 0.0,,
|
||||
-911.522 814.256 1053.59,135 142,stand,26.0913 104.897 0.0,,
|
||||
-901.608 1071.3 1070.64,119 141 143,stand,23.4052 88.2087 0.0,,
|
||||
-473.748 994.737 1068.13,142,stand,20.1587 157.192 0.0,,
|
||||
178.334 476.38 1012.13,127 145,stand,28.1128 22.3951 0.0,,
|
||||
185.352 354.263 1012.12,144 146 147,stand,31.9196 -8.58637 0.0,,
|
||||
164.397 -188.185 1018.13,145 152,stand,24.8663 -93.3569 0.0,,
|
||||
407.943 420.15 1012.13,145 148,stand,22.9602 29.8273 0.0,,
|
||||
403.021 502.956 1077.35,147 149,stand,16.687 91.4167 0.0,,
|
||||
404.873 599.68 1140.13,148 150,stand,46.2512 -165.554 0.0,,
|
||||
307.423 569.296 1140.13,149 151,stand,30.6891 -99.0313 0.0,,
|
||||
325.41 385.901 1140.13,150,stand,35.3912 -55.921 0.0,,
|
||||
428.487 -151.855 1018.13,146 153,stand,29.9036 13.0897 0.0,,
|
||||
460.738 86.689 978.125,152 154,stand,36.5118 89.582 0.0,,
|
||||
320.576 93.7881 922.125,153 155,stand,54.5404 -179.155 0.0,,
|
||||
176.824 85.3173 850.125,154 156,stand,31.8042 -101.102 0.0,,
|
||||
209.16 -89.8216 850.125,155 157 158 159,stand,28.2227 -81.2774 0.0,,
|
||||
143.697 -174.199 851.125,2 156 162,stand,36.7316 -113.863 0.0,,
|
||||
521.983 -45.2187 850.125,156,stand,34.2706 7.30536 0.0,,
|
||||
318.018 -189.847 850.125,156 160 161,stand,25.3113 -45.7751 0.0,,
|
||||
544.724 -199.648 850.125,159,stand,35.9515 -88.4734 0.0,,
|
||||
226.479 -256.824 851.125,159 162,stand,44.1254 -160.703 0.0,,
|
||||
158.604 -240.612 850.125,2 157 161,stand,27.3273 -117.703 0.0,,
|
||||
-50.8866 -7.39195 912.481,2 127 164,stand,30.2386 92.7131 0.0,,
|
||||
-216.227 9.24829 920.523,163 165,stand,15.2313 163.037 0.0,,
|
||||
-295.426 45.7996 928.125,164 166,stand,55.661 -28.2025 0.0,,
|
||||
-484.889 -93.052 928.125,165 167,stand,29.3433 -110.853 0.0,,
|
||||
-496.493 -185.618 928.125,166 168 169,stand,24.751 -96.9659 0.0,,
|
||||
-316.974 -182.294 928.125,167,stand,35.8362 -7.93817 0.0,,
|
||||
-494.589 -323.738 956.022,167 170,stand,56.5564 -78.9428 0.0,,
|
||||
-484.857 -418.445 968.125,169 171,stand,30.0134 -85.4357 0.0,,
|
||||
-334.956 -624.062 968.125,170 174 176,stand,24.751 -57.3327 0.0,,
|
||||
-620.699 -445.668 968.125,173 174,stand,24.4159 77.6948 0.0,,
|
||||
-717.817 -418.883 968.125,172 175,stand,45.6909 -77.1575 0.0,,
|
||||
-629.134 -616.587 968.125,171 172 175,stand,68.3118 -2.02203 0.0,,
|
||||
-719.012 -596.197 968.125,173 174,stand,50.6183 92.6087 0.0,,
|
||||
-308.644 -714.331 972.125,171 177,stand,33.9355 -88.9568 0.0,,
|
||||
-341.933 -834.248 972.125,176 178 180,stand,24.9762 163.904 0.0,,
|
||||
-481.48 -884.188 972.125,177 179,stand,29.9036 -160.709 0.0,,
|
||||
-520.86 -700.035 972.125,178,stand,31.9196 -76.3391 0.0,,
|
||||
-295.149 -986.606 972.125,177 181 182,stand,33.4851 -77.5695 0.0,,
|
||||
-207.126 -1037.35 972.125,180,stand,37.8522 24.7846 0.0,,
|
||||
-490.053 -1145.68 972.125,180 183 186,stand,25.7617 -109.902 0.0,,
|
||||
-404.658 -1161.98 972.125,182 184,stand,37.4072 -9.67401 0.0,,
|
||||
-267.486 -1169.33 886.835,183 185,stand,41.9995 2.42194 0.0,,
|
||||
-149.699 -1163.88 820.06,184 196 198,stand,41.9995 2.42194 0.0,,
|
||||
-490.062 -1239.13 980.125,182 187 188,stand,47.3718 -38.6779 0.0,,
|
||||
-323.125 -1322.9 980.125,186,stand,28.8928 -10.1245 0.0,,
|
||||
-492.534 -1349.16 908.125,186 189,stand,42.3346 -86.5014 0.0,,
|
||||
-473.423 -1439.68 868.125,188 190 192 193,stand,47.7069 -16.2933 0.0,,
|
||||
-387.588 -1299.51 868.125,189 191,stand,42.5598 85.2753 0.0,,
|
||||
-282.289 -1266.32 868.125,190,stand,35.2759 -3.9776 0.0,,
|
||||
-286.451 -1373.75 868.125,189,stand,17.2473 9.34882 0.0,,
|
||||
-310.291 -1440.95 868.125,189 194,stand,44.9109 -1.51117 0.0,,
|
||||
-259.298 -1440.93 852.125,193 195,stand,45.8063 0.279602 0.0,,
|
||||
-205.269 -1440.82 825.166,194 196,stand,45.6909 0.724548 0.0,,
|
||||
-59.5188 -1489.87 815.464,185 195 197,stand,23.1854 84.1547 0.0,,
|
||||
663.997 -1539.99 814.125,196 203 210,stand,19.4885 -5.72992 0.0,,
|
||||
-48.1863 -953.435 815.779,185 199,stand,22.29 62.4677 0.0,,
|
||||
-193.362 -420.515 839.345,2 198,stand,18.1427 12.1833 0.0,,
|
||||
-517.912 -267.336 850.001,201,stand,34.6057 -15.4363 0.0,,
|
||||
-348.21 -323.543 826.579,2 200,stand,28.338 149.633 0.0,,
|
||||
337.677 -413.249 827.946,2 203,stand,14.0009 -4.25775 0.0,,
|
||||
631.338 -403.222 823.329,197 202 204,stand,10.9796 -102.695 0.0,,
|
||||
1316.83 -374.262 825.595,3 203 205,stand,28.338 -117.966 0.0,,
|
||||
1490.09 -177.722 879.165,204,stand,27.4371 -105.173 0.0,,
|
||||
1899.09 -1524.42 690.448,7 207 214 215,stand,24.306 -110.864 0.0,,
|
||||
1535.25 -2018.85 702.125,206 208 211,stand,16.8024 173.88 0.0,,
|
||||
1173.03 -1851.96 708.201,207 209 210,stand,18.9282 136.812 0.0,,
|
||||
1084.08 -1693.1 779.476,208 210,stand,15.3467 114.191 0.0,,
|
||||
953.113 -1580.5 810.475,197 208 209,stand,16.3519 150.479 0.0,,
|
||||
1912.49 -2080.34 698.521,8 207 212,stand,25.4266 -4.89496 0.0,,
|
||||
2298.52 -2024.81 702.613,8 211 213,stand,22.0648 26.2348 0.0,,
|
||||
2562.0 -1766.42 702.137,8 9 212,stand,18.0328 61.1768 0.0,,
|
||||
2179.35 -1141.86 703.122,9 206,stand,26.767 30.3712 0.0,,
|
||||
2008.95 -1021.63 713.125,5 206,stand,20.6091 -169.294 0.0,,
|
||||
2563.23 -382.029 851.842,10 217 218,stand,27.4426 -2.73065 0.0,,
|
||||
2696.45 -381.555 897.125,216 279,stand,30.354 3.08661 0.0,,
|
||||
2430.3 41.8152 924.543,10 216 219 279,stand,35.0562 -17.5237 0.0,,
|
||||
2417.31 311.525 945.771,218,stand,26.9922 75.3052 0.0,,
|
||||
3497.94 4.83604 995.297,11 221 277 278,stand,15.7916 88.7635 0.0,,
|
||||
3513.42 112.043 994.644,11 220 222 277,stand,31.5845 90.1093 0.0,,
|
||||
3509.55 202.575 1019.13,221 223,stand,30.1288 92.0154 0.0,,
|
||||
3554.05 357.016 1019.13,222 224,stand,32.4799 -60.3924 0.0,,
|
||||
3657.23 369.776 1019.13,223 225,stand,31.6943 4.784 0.0,,
|
||||
3667.96 464.421 1043.13,224 226 229,stand,19.5984 92.5757 0.0,,
|
||||
3602.71 568.47 1043.13,225 227,stand,35.5011 112.846 0.0,,
|
||||
3664.33 636.63 1043.13,226 228,stand,36.8469 31.9861 0.0,,
|
||||
3762.69 597.943 1043.13,227 229,stand,33.0402 -40.2435 0.0,,
|
||||
3724.18 455.28 1043.13,225 228 230,stand,30.6891 -67.3412 0.0,,
|
||||
3790.48 448.826 1043.13,229 232,stand,45.9161 -17.1777 0.0,,
|
||||
4200.7 361.413 1032.01,232,stand,31.0242 -47.6373 0.0,,
|
||||
3895.68 429.287 1031.38,230 231 233 234 280,stand,62.489 60.7758 0.0,,
|
||||
4071.52 722.857 1036.83,232 236 245,stand,30.2386 71.5259 0.0,,
|
||||
4269.66 559.065 1035.13,232 235,stand,35.7263 -35.2996 0.0,,
|
||||
4276.54 372.629 1051.66,12 234,stand,33.7103 -66.9842 0.0,,
|
||||
4035.12 1075.87 1051.36,233 237,stand,26.2067 -13.7939 0.0,,
|
||||
4143.69 1074.14 1048.13,236 238 239,stand,24.306 18.4565 0.0,,
|
||||
4370.55 1053.36 1048.13,237,stand,30.799 94.7126 0.0,,
|
||||
4282.08 1167.95 1048.13,237 240,stand,43.0048 49.6027 0.0,,
|
||||
4286.66 1251.53 1048.13,239 241,stand,39.198 92.9438 0.0,,
|
||||
4429.6 1263.75 1047.21,240 242,stand,27.3273 9.73334 0.0,,
|
||||
4833.29 1360.85 1046.13,241 243,stand,32.1448 9.73883 0.0,,
|
||||
4946.37 1264.5 1046.13,242 244,stand,28.1128 -31.2512 0.0,,
|
||||
5116.37 1244.61 1046.3,243 275,stand,26.0968 -6.60883 0.0,,
|
||||
4441.0 729.756 1050.38,12 233 246 268,stand,28.1128 -1.57159 0.0,,
|
||||
4507.81 978.344 1057.08,245 275,stand,23.4106 -105.261 0.0,,
|
||||
4295.04 -240.857 1053.83,12 248 252 253 254,stand,20.274 179.483 0.0,,
|
||||
4214.58 -237.297 1050.13,247 249,stand,29.3433 148.584 0.0,,
|
||||
4133.42 -159.491 1050.13,248 250,stand,26.767 152.616 0.0,,
|
||||
3955.59 -134.046 1049.36,11 249 251,stand,29.6783 173.215 0.0,,
|
||||
3938.2 -320.959 1058.22,11 250 252,stand,26.8823 -48.0602 0.0,,
|
||||
4292.13 -387.762 1062.91,247 251,stand,24.6411 29.8823 0.0,,
|
||||
4778.77 -236.523 1050.13,247,stand,11.875 19.0278 0.0,,
|
||||
4876.74 -118.327 1044.67,247 255 259,stand,24.0808 23.5981 0.0,,
|
||||
5096.84 -420.114 1057.52,254 256,stand,23.6304 22.0325 0.0,,
|
||||
5695.33 -343.502 1050.13,255 258,stand,8.29346 172.765 0.0,,
|
||||
6208.47 33.6388 1056.21,13 258 260 281,stand,33.4851 24.5704 0.0,,
|
||||
5763.49 -135.307 1047.97,256 257 259,stand,15.907 19.9891 0.0,,
|
||||
5007.84 -6.60115 1047.98,12 254 258 264 265 268,stand,75.9308 179.977 0.0,,
|
||||
6060.43 49.1794 1058.23,257 261,stand,45.4712 146.151 0.0,,
|
||||
5938.73 148.033 1092.49,260 262 273,stand,26.6571 145.041 0.0,,
|
||||
5259.45 116.178 1109.79,261 263,stand,26.8823 93.8611 0.0,,
|
||||
5183.08 363.102 1108.9,262 264 266,stand,27.6624 178.077 0.0,,
|
||||
5156.12 249.928 1110.13,259 263 265,stand,31.6943 -97.3724 0.0,,
|
||||
5141.7 47.2424 1053.04,259 264 268,stand,34.9408 -92.4395 0.0,,
|
||||
5218.74 742.968 1108.27,263 267 269,stand,20.0488 -102.959 0.0,,
|
||||
4858.75 729.071 1111.18,266 268,stand,21.7297 -125.129 0.0,,
|
||||
4815.1 472.753 1082.1,12 245 259 265 267,stand,22.735 121.085 0.0,,
|
||||
5335.85 692.384 1109.36,266 270,stand,33.0402 -9.14667 0.0,,
|
||||
5736.37 764.391 1108.54,269 272 274,stand,33.15 10.9089 0.0,,
|
||||
6077.31 708.816 1048.44,13 272,stand,43.4552 -3.54364 0.0,,
|
||||
5883.8 718.356 1111.25,270 271 273,stand,29.118 -10.5529 0.0,,
|
||||
5974.81 460.55 1108.43,261 272,stand,44.3506 -75.8337 0.0,,
|
||||
5732.69 910.692 1048.28,13 270 275,stand,14.7864 -96.5264 0.0,,
|
||||
5302.73 1024.11 1048.16,244 246 274,stand,32.4799 138.158 0.0,,
|
||||
2866.04 162.514 938.125,277,stand,27.9974 131.737 0.0,,
|
||||
3207.26 160.847 965.213,220 221 276 278,stand,22.735 -36.7993 0.0,,
|
||||
3189.41 -0.36888 963.963,220 277 279,stand,24.0808 107.061 0.0,,
|
||||
2655.8 9.76327 923.869,217 218 278,stand,50.1733 -168.086 0.0,,
|
||||
3902.85 260.692 1047.8,11 232,stand,23.6304 91.4661 0.0,,
|
||||
6440.96 10.7283 1024.86,257 282,stand,27.2174 -11.8713 0.0,,
|
||||
7585.38 -336.287 769.531,281 283,stand,26.2067 -13.3325 0.0,,
|
||||
8082.16 -368.269 687.685,282 284,stand,17.3627 3.0152 0.0,,
|
||||
8283.03 -538.603 671.185,283 285,stand,28.4479 -32.8167 0.0,,
|
||||
8536.74 -538.222 646.519,284,stand,20.1587 -38.6395 0.0,,
|
||||
|
@@ -0,0 +1,322 @@
|
||||
381
|
||||
-1790.13 -1668.53 650.625,1 20 26,stand,18.8141 -164.736 0,,
|
||||
-2227.65 -1540.86 656.125,0 2 11 27,stand,32.0306 98.0629 0,,
|
||||
-2117.24 -1031.35 657.621,1 3 23 24,stand,29.1138 117.998 0,,
|
||||
-2369.64 -645.329 659.685,2 4 37,stand,28.7787 171.188 0,,
|
||||
-2660.99 -680.404 657.125,3 12 37,stand,27.6581 84.286 0,,
|
||||
-3374.22 -95.5342 659.465,55 56,stand,24.9719 -125.536 0,,
|
||||
-3398.09 -348.215 659.862,7 56,stand,31.5802 -140.769 0,,
|
||||
-3923.41 -387.477 663.514,6 59 64 67,stand,20.3796 -164.955 0,,
|
||||
-4006.58 -1032.89 652.125,9 67 71,stand,28.1085 -86.7931 0,,
|
||||
-3513.41 -1043.89 659.439,8 10 70 76 32 77 74,stand,22.511 6.15673 0,,
|
||||
-3235.17 -1536.47 652.125,9 11 77 78,stand,21.5002 -65.2874 0,,
|
||||
-2644.27 -1484.52 654.563,1 10 31,stand,21.275 8.39794 0,,
|
||||
-2783.66 -941.482 652.312,4 13 31 32,stand,19.4843 70.207 0,,
|
||||
-2846.38 -1121.05 656.125,12 16,stand,15.1172 41.5767 0,,
|
||||
-2858.9 -1693.03 650.15,15 17,stand,22.7362 18.1264 0,,
|
||||
-2828.64 -1506.54 651.249,14 16,stand,23.6316 51.6896 0,,
|
||||
-2775.32 -1355.44 656.125,15 13,stand,30.4596 97.4916 0,,
|
||||
-2640.16 -1723.11 656.125,14 18 19,stand,35.8374 144.222 0,,
|
||||
-2410.72 -1683.47 656.125,17,stand,21.1652 20.8125 0,,
|
||||
-2654.68 -1564.13 656.125,17,stand,12.2058 85.3132 0,,
|
||||
-1771.37 -1308.71 656.125,0 21 27,stand,13.9966 95.3932 0,,
|
||||
-1781.23 -920.281 656.828,20 22 23,stand,13.7769 98.9802 0,,
|
||||
-1847.67 -681.222 656.125,21,stand,18.924 93.9375 0,,
|
||||
-2014.72 -889.325 656.115,21 2 28,stand,14.1119 173.561 0,,
|
||||
-2341.72 -1802.58 656.125,2 25 26,stand,26.0925 70.8662 0,,
|
||||
-2383.26 -1636.57 656.125,24 26,stand,24.4116 -160.121 0,,
|
||||
-2053.86 -1793.18 650.625,25 27 24 0,stand,21.9507 60.1161 0,,
|
||||
-2033.97 -1310.22 658.118,26 28 20 1 29,stand,23.1812 93.152 0,,
|
||||
-2183.79 -914.138 657.539,27 23,stand,26.0925 11.963 0,,
|
||||
-2370.49 -1223.99 656.125,27 30,stand,35.9473 34.8421 0,,
|
||||
-2400.22 -1092.86 656.125,29 31,stand,31.1353 -104.767 0,,
|
||||
-2609.36 -1099.44 652.125,30 11 12,stand,7.50366 -85.5077 0,,
|
||||
-3086.72 -845.23 657.4,12 33 34 76 50 9 74,stand,14.8975 157.916 0,,
|
||||
-3301.88 -780.275 656.125,32,stand,37.5183 -14.168 0,,
|
||||
-2878.37 -699.005 656.125,32 35,stand,21.0553 72.0582 0,,
|
||||
-2840.03 -559.773 656.125,34 36 37,stand,30.2399 11.139 0,,
|
||||
-2768.44 -764.873 656.125,35 37,stand,22.511 -66.5837 0,,
|
||||
-2611.19 -544.292 656.125,36 35 3 38 4,stand,6.15784 -174.535 0,,
|
||||
-2484.49 -243.371 656.125,37 39,stand,13.6615 -128.618 0,,
|
||||
-2625.92 -93.3687 659.98,38 40 42,stand,20.8301 89.944 0,,
|
||||
-2788.16 -126.696 656.125,39 41,stand,26.6528 0.465827 0,,
|
||||
-2869.94 -61.8542 656.125,40,stand,14.6722 165.98 0,,
|
||||
-2676.09 118.087 656.295,39 43 48,stand,19.8248 176.395 0,,
|
||||
-2771.37 267.856 656.391,42 44,stand,20.6049 169.342 0,,
|
||||
-2835.47 292.828 656.125,43 45 46,stand,25.7574 168.782 0,,
|
||||
-3093.08 275.315 656.125,44 48,stand,31.2439 -84.0465 0,,
|
||||
-2967.86 403.311 656.125,44 47,stand,33.4851 165.98 0,,
|
||||
-3089.18 417.978 656.125,46,stand,32.4744 175.725 0,,
|
||||
-3077.54 43.3221 664.125,45 42 49 50 55 57,stand,21.3892 -31.9713 0,,
|
||||
-3456.13 86.8748 656.125,48,stand,20.8289 -11.6246 0,,
|
||||
-3041.82 -552.299 656.125,48 51 32,stand,24.751 -162.247 0,,
|
||||
-3130.56 -553.282 656.125,50 52,stand,30.4584 51.9478 0,,
|
||||
-3145.91 -383.888 656.125,51 53,stand,14.3359 -122.603 0,,
|
||||
-3294.1 -327.423 656.125,52 54,stand,29.0027 -2.47851 0,,
|
||||
-3302.98 -275.481 656.125,53 55 56,stand,42.5543 102.902 0,,
|
||||
-3280.03 -101.758 655.044,54 48 5 57,stand,28.5577 83.6433 0,,
|
||||
-3400 -276.634 659.021,54 6 5,stand,25.1959 -168.74 0,,
|
||||
-3289.35 223.82 656.191,55 48 58,stand,4.4812 -73.7743 0,,
|
||||
-3453.47 192.064 656.384,57 59,stand,18.1427 -164.23 0,,
|
||||
-3721.02 180.151 646.938,58 60 7,stand,22.2845 -174.085 0,,
|
||||
-4007.61 310.504 660.55,59 61 65,stand,23.8556 139.108 0,,
|
||||
-4144.87 155.347 656.125,60 62,stand,26.6516 -101.965 0,,
|
||||
-4066.75 36.7008 656.125,61 63,stand,25.9814 -20.8861 0,,
|
||||
-3970.72 8.27444 656.125,62 64,stand,27.547 -40.2605 0,,
|
||||
-3941.71 -192.239 657.828,63 7,stand,25.0861 -82.7007 0,,
|
||||
-4077.6 913.444 656.347,60,stand,10.9741 88.7465 0,,
|
||||
-3868.33 -659.127 656.125,67 68,stand,36.2866 -14.3547 0,,
|
||||
-3995.96 -634.181 651.868,66 7 8,stand,21.5045 -12.2289 0,,
|
||||
-3665.81 -707.824 656.125,66 69 70,stand,28.3325 -7.30151 0,,
|
||||
-3681.72 -888.331 656.125,68,stand,23.0701 -65.8696 0,,
|
||||
-3561.27 -690.674 658.675,68 9,stand,16.5771 -72.4724 0,,
|
||||
-3964.47 -1169.12 653.055,8 72 75,stand,29.4531 -77.0317 0,,
|
||||
-3956.5 -1347.15 653.299,71 73,stand,19.2633 -34.3608 0,,
|
||||
-3686.85 -1479.1 650.227,72 74,stand,14.671 143.695 0,,
|
||||
-3569.95 -1287.71 656.125,73 75 77 9 32,stand,27.2119 155.34 0,,
|
||||
-3790.22 -1251 656.125,74 71,stand,27.9974 146.046 0,,
|
||||
-3221.4 -1167.49 656.959,32 9 77,stand,18.2526 173.671 0,,
|
||||
-3335.76 -1230.74 656.694,76 10 9 74,stand,25.1959 79.084 0,,
|
||||
-3167.02 -1367.11 656.125,10 79,stand,21.9495 103.386 0,,
|
||||
-3255.44 -1261.61 656.125,78,stand,22.3999 143.14 0,,
|
||||
-3617.67 -266.264 768.125,81,stand,33.3752 94.5747 0,,
|
||||
-3617.53 124.07 768.125,80 82,stand,41.7743 55.4909 0,,
|
||||
-3359.32 99.2576 768.125,81,stand,23.0701 -169.229 0,,
|
||||
-3301.62 -234.135 770.125,84 85,stand,-15.5634 177.153 0,,
|
||||
-3445.31 -237.939 768.125,83,stand,-13.8879 -3.3684 0,,
|
||||
-3098.47 -426.523 772.125,83 90,stand,17.4725 -4.37915 0,,
|
||||
-3394.59 -432.785 896.125,87 88 89,stand,48.1574 70.9541 0,,
|
||||
-3219.18 -677.105 877.938,86 89,stand,54.7656 -45.512 0,,
|
||||
-3705.25 -540.105 899.213,86,stand,42.5598 -165.301 0,,
|
||||
-3445.84 -699.09 896.125,86 87,stand,33.15 -109.419 0,,
|
||||
-2866.92 -401.439 768.125,85 91 92 93,stand,26.322 0.366951 0,,
|
||||
-2829.55 -102.544 786.125,90,stand,24.8663 82.1162 0,,
|
||||
-2636.11 -250.639 770.125,90,stand,24.306 -7.69702 0,,
|
||||
-2734.79 -790.616 772.125,90 94,jump,2.91565 -31.5483 0,,
|
||||
-2660.94 -842.936 770.125,93 95,jump,1.45996 133.071 0,,
|
||||
-2385.76 -987.222 770.728,94 96,stand,23.7402 -32.7733 0,,
|
||||
-2307.89 -1252.02 768.125,95 97,stand,24.0753 -96.7192 0,,
|
||||
-2568.75 -1362.53 768.125,96 98,stand,25.3113 -144.988 0,,
|
||||
-2560.76 -1431.98 768.125,97 99,jump,2.34985 -106.684 0,,
|
||||
-2587.67 -1569.14 768.125,98 100,jump,-6.82922 73.5798 0,,
|
||||
-2775.81 -1664.91 768.125,99 101,stand,6.72241 -179.589 0,,
|
||||
-2918.27 -1673.7 772.125,100 102,stand,-15.2283 2.69056 0,,
|
||||
-3081.9 -1827.57 768.125,101 103 105,stand,25.1959 174.143 0,,
|
||||
-3287.25 -1657.53 771.793,102 104,stand,25.4211 91.949 0,,
|
||||
-3328.88 -1383.94 789.251,103,jump,22.735 30.4695 0,,
|
||||
-2899.94 -1939.72 736.125,102 106,stand,15.3412 -8.61438 0,,
|
||||
-2346.56 -1876.8 737.122,105 107,stand,15.2313 29.5741 0,,
|
||||
-2121.97 -1980.65 747.397,106 108,stand,21.5045 -22.166 0,,
|
||||
-1768.13 -2005.11 763.586,107 109,stand,20.4938 6.8379 0,,
|
||||
-1704.57 -1863.43 768.125,108,stand,21.7242 78.5072 0,,
|
||||
-1591.65 -1959.37 768.125,111 112,stand,11.0895 161.377 0,,
|
||||
-1283.21 -1968.62 768.125,110,stand,19.2633 24.0809 0,,
|
||||
-1617.69 -1714.89 768.125,110 113,stand,22.2845 145.584 0,,
|
||||
-1459.79 -1609.54 768.125,112 114,stand,21.9495 50.6184 0,,
|
||||
-1657.36 -1380.57 774.332,113 115,stand,25.5365 -177.123 0,,
|
||||
-1520.92 -1117.87 768.125,114 116,stand,12.655 71.2233 0,,
|
||||
-1632.87 -904.59 768.125,115 117,stand,19.4885 145.359 0,,
|
||||
-1407.55 -770.085 768.125,116 118,stand,18.2526 8.96375 0,,
|
||||
-1027.29 -718.334 768.125,117 119,stand,36.7316 0.564704 0,,
|
||||
-718.287 -712.583 640.125,118 120,stand,16.0168 -136.506 0,,
|
||||
-557.799 -715.715 640.125,119 121 125,stand,20.4938 133.043 0,,
|
||||
-570.69 -508.516 760.125,120 122,stand,16.2421 93.0641 0,,
|
||||
-583.596 -415.519 760.125,121 123,stand,27.3273 -86.447 0,,
|
||||
-474.09 -417.23 786.125,122 124,stand,19.7083 -13.4374 0,,
|
||||
-257.128 -435.777 786.125,123,stand,26.0913 -11.8663 0,,
|
||||
-72.624 -933.006 640.125,120 126,stand,13.5504 -18.1395 0,,
|
||||
439.869 -1002.65 672.125,125 127 129,stand,20.0488 -68.5393 0,,
|
||||
624.873 -997.798 672.125,126 128,stand,19.0381 47.4818 0,,
|
||||
618.767 -874.742 712.125,127,stand,22.735 139.086 0,,
|
||||
530.15 -1494.2 672.125,126 130,stand,15.4565 20.1918 0,,
|
||||
1194.93 -1533.34 640.125,129 131 163,stand,14.3359 176.632 0,,
|
||||
1537.19 -1819.52 640.108,130 132 163,stand,17.4725 -132.859 0,,
|
||||
1535.19 -2521.59 640.125,131 133 136,stand,16.4618 -92.7696 0,,
|
||||
1206.62 -2893.61 635.634,132 134 165 167,stand,16.2366 -138.011 0,,
|
||||
1538.88 -3521.08 640.125,133 135 164 167,stand,16.3519 -78.9983 0,,
|
||||
1906.12 -3002.54 639.869,134 136 137,stand,19.0381 -129.502 0,,
|
||||
1914.37 -2701.6 640.125,135 132,stand,26.5417 29.7059 0,,
|
||||
2617.24 -3043.09 639.761,135 138 156,stand,11.6498 145.535 0,,
|
||||
2478.29 -2856.07 634.659,137 139,stand,16.7969 -44.0563 0,,
|
||||
2625.46 -2730.2 640.125,138 155,stand,17.1375 43.8508 0,,
|
||||
2990.11 -2350.59 640.125,141 150 155,stand,16.7969 30.5244 0,,
|
||||
3125.39 -2334.52 640.125,140 142 147 148 149,stand,23.8556 178.087 0,,
|
||||
3052.13 -2137.46 656.125,141 143,stand,28.3325 -49.6868 0,,
|
||||
3082.23 -1975.13 728.125,142 144,stand,17.4725 28.7007 0,,
|
||||
3265.47 -1996.94 800.125,143 145,stand,19.1534 -2.87951 0,,
|
||||
3388.87 -2023.23 818.125,144 146,stand,24.751 -114.308 0,,
|
||||
3368.92 -2147.98 800.125,145,stand,29.0082 39.5607 0,,
|
||||
3400.88 -2341.45 640.125,141,stand,15.9015 0.399909 0,,
|
||||
3468.93 -2600.45 640.125,141,stand,18.5931 -16.6948 0,,
|
||||
3236.78 -2654.08 640.125,141,stand,21.3892 -99.0813 0,,
|
||||
2742.11 -2074.85 640.125,140 151,stand,17.6923 148.93 0,,
|
||||
2564.77 -2191.82 640.125,150 152 154,stand,17.6923 -148.355 0,,
|
||||
2533.28 -1913.19 688.125,151 153,stand,17.6923 97.8651 0,,
|
||||
3008.88 -1924.21 688.125,152,stand,12.8802 -30.208 0,,
|
||||
2572.96 -2504.37 640.125,151 155,stand,14.1107 -83.5137 0,,
|
||||
2688.9 -2598.24 640.125,154 139 140,stand,21.1639 -51.0381 0,,
|
||||
4010.36 -3018.13 640.125,137 157 158,stand,8.62305 119.997 0,,
|
||||
6157.11 -3016.76 636.179,156,stand,9.96887 -0.945916 0,,
|
||||
4004.21 -2277.77 640.125,156 159,stand,7.72766 90.4603 0,,
|
||||
3998 723.79 636.917,158 160,stand,8.28796 108.049 0,,
|
||||
1512.88 752.927 636.161,159 161 163,stand,5.60181 -176.024 0,,
|
||||
443.08 695.928 680.125,160 162,stand,14.7809 -4.68676 0,,
|
||||
531.122 -637.069 670.345,161,stand,13.6658 -71.4287 0,,
|
||||
1533.02 -1061.52 640.125,130 131 160,stand,20.4938 -87.2215 0,,
|
||||
1527.4 -5029.08 636.894,134,stand,8.62305 6.42591 0,,
|
||||
873.18 -2796.06 636.125,133 166,stand,5.48645 162.608 0,,
|
||||
-1061.4 -3168.29 861.798,165 167,stand,2.34985 -165.038 0,,
|
||||
1195.91 -3115.31 636.125,166 133 134,stand,15.0061 169.793 0,,
|
||||
-3232.08 -1341.47 768.125,169,stand,23.2953 -149.217 0,,
|
||||
-2783.6 -1260.73 768.125,168 170,stand,26.4319 169.013 0,,
|
||||
-3013.75 -991.579 768.125,169,stand,19.0381 131.5 0,,
|
||||
-2008.25 -730.743 768.125,172,stand,11.4246 -122.867 0,,
|
||||
-2486.12 443.283 768.125,171 173,stand,12.5452 135.68 0,,
|
||||
-3545.21 344.224 768.125,172 174,stand,14.7864 178.681 0,,
|
||||
-3830.81 423.054 771.551,173,stand,12.3199 -35.5144 0,,
|
||||
-3932.57 114.338 768.125,176,stand,22.5098 6.93678 0,,
|
||||
-4101.77 -206.193 776.125,175 177,stand,11.3147 -108.299 0,,
|
||||
-4020.29 -567.652 778.775,176 178,stand,24.751 -41.3372 0,,
|
||||
-3907.85 -639.638 772.567,177 179,stand,23.6304 127.984 0,,
|
||||
-3814.65 -809.364 768.125,178 180 182,stand,27.8876 -44.4738 0,,
|
||||
-3821 -1177.31 768.125,179 181,stand,26.6571 -179.864 0,,
|
||||
-4064.87 -1189.34 778.17,180,stand,21.1694 -172.926 0,,
|
||||
-3378.81 -832.154 768.125,179 183,stand,15.4565 -3.9342 0,,
|
||||
-3264.29 -735.125 768.125,182,stand,9.51843 69.7566 0,,
|
||||
-4082.02 1053.66 659.75,185,stand,11.875 -116.89 0,,
|
||||
-4278.43 1461.19 671.822,184 186,stand,13.3307 145.908 0,,
|
||||
-4495.77 1616.05 776.125,185 187 200,stand,17.4725 143.557 0,,
|
||||
-4329.9 1889.8 785.392,186,stand,14.7864 56.6554 0,,
|
||||
-4283.93 1991.52 784.358,189,stand,21.3892 -108.749 0,,
|
||||
-3935.72 1749.57 704.125,188 190 193,stand,18.8184 -37.5359 0,,
|
||||
-3998.87 1535.73 704.125,189 191,stand,16.2421 -110.216 0,,
|
||||
-3833.12 1316.95 696.125,190 192,stand,16.1267 -77.8502 0,,
|
||||
-3695.13 767.125 704.023,191,stand,15.1215 130.747 0,,
|
||||
-3760.78 2086.7 713.333,189 194,stand,11.6498 77.2163 0,,
|
||||
-3950.64 2561.76 756.332,193 195 196,stand,12.8802 113.273 0,,
|
||||
-3870.58 3216.09 757.346,194,stand,16.0168 -111.15 0,,
|
||||
-5059.47 3337.36 760.125,194 197 198,stand,15.2313 -156.172 0,,
|
||||
-5246.7 3076.42 766.599,196 199,stand,-5.14832 -126.492 0,,
|
||||
-4252.3 4493.48 712.039,196,stand,5.82703 12.4794 0,,
|
||||
-5986.99 3751.27 752.994,197,stand,-3.69263 158.878 0,,
|
||||
-5729.88 2447.8 780.125,186 201 202 208 209,stand,9.73267 87.4666 0,,
|
||||
-5304.09 3015.96 780.125,200,stand,22.8339 42.3402 0,,
|
||||
-6384.77 2872.75 768.092,200 203,stand,17.9065 -152.145 0,,
|
||||
-6495.73 2706.61 761.086,202 204 205,stand,11.8585 -39.2662 0,,
|
||||
-6341.57 2578.73 816.125,203,stand,12.8693 -37.9259 0,,
|
||||
-6675.8 2497.09 849.175,203 206 207,stand,7.71668 -89.2156 0,,
|
||||
-6772.73 2331.08 886.375,205 211 218,stand,14.2151 174.143 0,,
|
||||
-6157.49 2168.31 813.921,205 208 209,stand,5.81604 153.978 0,,
|
||||
-6098.27 2399.12 782.564,207 200,stand,10.1831 150.171 0,,
|
||||
-5966.82 2075 812.506,207 200 210,stand,26.756 37.4348 0,,
|
||||
-5791.92 1968.95 928.125,209,stand,9.84253 -48.6815 0,,
|
||||
-7034.64 2529.58 918.331,206 212 213,stand,2.229 -119.016 0,,
|
||||
-7271.75 2665.35 992.125,211,stand,19.2523 169.65 0,,
|
||||
-7220.69 2248.08 992.857,211 214 215,stand,26.8658 8.19471 0,,
|
||||
-7044.8 2076.86 1004.93,213 215 216,stand,13.2043 -38.1676 0,,
|
||||
-7009.3 2147.12 996.803,214 213 217,stand,33.9246 -97.296 0,,
|
||||
-6738.62 1872.21 1056.13,214,stand,31.0077 66.4277 0,,
|
||||
-6746.61 1947.32 987.019,215 218,stand,15.1105 83.5664 0,,
|
||||
-6716.25 2074.11 975.513,217 206 219,stand,27.8766 18.1703 0,,
|
||||
-6542.54 1981.69 974.074,218 220 227,stand,26.8658 137.987 0,,
|
||||
-6413.18 1982.86 948.364,219 221,stand,20.4828 168.112 0,,
|
||||
-6301.28 1945.98 944.125,220 222,stand,25.52 156.763 0,,
|
||||
-6191.57 2098.61 944.125,221 223,stand,21.2683 49.366 0,,
|
||||
-6108.36 2051.03 944.125,222 224,stand,18.9172 60.1216 0,,
|
||||
-6044.25 1918.31 944.125,223 225,stand,9.39758 -128.354 0,,
|
||||
-6131.42 1786.66 1016.13,224 226,stand,39.0717 -96.5489 0,,
|
||||
-6041.75 1740.38 1006.82,225 227 228 233,stand,31.4581 -27.2307 0,,
|
||||
-6115.01 1679.04 998.867,219 226,stand,21.7133 -18.5735 0,,
|
||||
-5944.33 1801.03 1024.13,226 229 230 231,stand,25.5255 41.4503 0,,
|
||||
-5823.76 1884.68 1024.13,228,stand,24.0643 -139.264 0,,
|
||||
-5840.45 1720.94 1024.13,228,stand,10.9631 -39.2937 0,,
|
||||
-5946.59 1927.8 1024.13,228 232,stand,40.8624 -38.5906 0,,
|
||||
-5905.53 1985.93 1044.13,231,stand,30.2277 54.8042 0,,
|
||||
-5624.22 1452.88 1022.55,226 234 239 240,stand,19.6973 163.772 0,,
|
||||
-5433.19 1483.8 1026.09,233 235,stand,3.90991 -38.1072 0,,
|
||||
-5111.09 1266.01 1141.83,234 236 238,stand,26.3055 -172.827 0,,
|
||||
-5051.6 1123.48 1152.13,235 237,stand,27.6514 -125.679 0,,
|
||||
-5257.65 827.893 1152.13,236,stand,26.1957 -126.014 0,,
|
||||
-5371.77 935.605 1119.76,235 239,stand,26.3055 146.188 0,,
|
||||
-5661.82 1141.04 1069.7,238 233 240 243,stand,8.16711 -176.639 0,,
|
||||
-5765.88 1303.09 1067.26,233 241 239 243,climb,-29.0161 131.181 0,,
|
||||
-5765.89 1303.08 1108.78,240 242,climb,-63.9526 147.188 0,,
|
||||
-5772.77 1321.28 1208.13,241 244 258,climb,51.5027 -37.816 0,,
|
||||
-5998.51 1175.15 1167.02,239 240 287,stand,6.38733 -152.376 0,,
|
||||
-5829.77 1475.83 1184.13,242 245,stand,26.7725 88.9552 0,,
|
||||
-5865.43 1754.4 1180.24,244 246 247 251,stand,17.0276 164.096 0,,
|
||||
-5788.99 2005.24 1168.6,245 247,stand,38.0829 79.3202 0,,
|
||||
-6036.83 1920 1208.13,246 248 249 245,stand,23.4106 -163.989 0,,
|
||||
-6236.34 2160.18 1208.13,247 249,stand,26.322 118.855 0,,
|
||||
-6147.39 1791.04 1212.36,248 250 247,stand,28.8983 -117.066 0,,
|
||||
-6291.59 1570.85 1184.13,249 256,stand,29.1235 -126.69 0,,
|
||||
-5713.67 1802.08 1216.13,245 252,stand,26.2122 -27.2856 0,,
|
||||
-5507.84 1686.53 1208.13,251 253,stand,17.4725 -30.0817 0,,
|
||||
-5482.63 1674.03 1248.12,252 254 255,stand,28.5632 18.3021 0,,
|
||||
-5278.8 1716.9 1248.12,253 255,stand,38.8629 108.341 0,,
|
||||
-5354.24 1492.25 1248.12,254 253,stand,23.2953 104.309 0,,
|
||||
-6263.91 1441.1 1184.13,250 257 261,stand,23.8556 -44.3749 0,,
|
||||
-6088.45 1324.47 1184.13,256 260,stand,26.322 29.5357 0,,
|
||||
-5949.24 1476.37 1184.13,242 260,stand,31.3593 -35.3057 0,,
|
||||
-6115.84 1577.39 1184.13,260,stand,11.0895 125.842 0,,
|
||||
-6001.07 1408.64 1184.13,259 258 257,stand,35.2814 147.348 0,,
|
||||
-6468.01 1421.72 1184.13,256 262 267 268,stand,30.0189 112.076 0,,
|
||||
-6429.72 1697.58 1184.13,261 263,stand,21.0596 156.873 0,,
|
||||
-6487.53 1723.2 1184.13,262 264,stand,32.4799 -134.144 0,,
|
||||
-6591.72 1718.49 1184.13,263 265 266,stand,33.7103 107.264 0,,
|
||||
-6650.78 1930.97 1184.13,264 266,stand,15.907 135.592 0,,
|
||||
-6696.92 1767.7 1184.13,265 264,stand,5.15686 -130.222 0,,
|
||||
-6584.26 1443.58 1184.13,261 286,stand,22.5153 -170.234 0,,
|
||||
-6234.19 1228.09 1182.25,261 269 287,stand,25.6519 166.359 0,,
|
||||
-6503.99 1151.02 1181.99,268 270 286,stand,15.0116 167.37 0,,
|
||||
-6662.78 1210.55 1248.13,269 271,stand,17.3627 -156.227 0,,
|
||||
-6701.69 1133.62 1248.13,270 272,stand,27.6678 -27.78 0,,
|
||||
-6601.35 1077.97 1253.47,271 273,stand,31.5845 -35.6243 0,,
|
||||
-6756.33 988.787 1248.13,272 278 285,stand,27.8876 -176.837 0,,
|
||||
-7114.85 1204.39 1376.13,275 285,stand,24.4159 115.075 0,,
|
||||
-7153.48 1300.04 1376.13,274 276 277,stand,19.6039 120.118 0,,
|
||||
-7221.29 1325.36 1376.13,275,stand,7.84302 156.961 0,,
|
||||
-7071.78 1364.76 1383.13,275 278,stand,22.0648 58.5231 0,,
|
||||
-6860.03 1143.91 1248.13,277 284 273 285,stand,20.8344 -16.14 0,,
|
||||
-6742.71 1323.28 1252.13,280 283 284,stand,22.5153 57.1004 0,,
|
||||
-6838.46 1390.33 1248.13,279 281,stand,29.0082 65.9443 0,,
|
||||
-6951.83 1389.34 1248.13,280 282,stand,20.9442 172.221 0,,
|
||||
-6969.58 1292.4 1248.13,281 283,stand,27.3273 -34.8058 0,,
|
||||
-6881.67 1249.92 1248.13,282 279 284,stand,25.5365 -23.4954 0,,
|
||||
-6772.42 1220.88 1248.13,283 279 278,stand,34.2706 99.0901 0,,
|
||||
-6908.28 1058.35 1248.13,273 274 278,stand,19.7137 80.5726 0,,
|
||||
-6686.94 1417.5 1183.35,267 269 288,stand,20.274 -47.5389 0,,
|
||||
-6125.26 1058.47 1174.98,268 243,stand,24.6411 53.4804 0,,
|
||||
-7192.54 1707.51 1183.63,286 289,stand,4.59656 -50.9667 0,,
|
||||
-7296.55 1524.07 1243.77,288 290 310,stand,10.9796 -95.5327 0,,
|
||||
-7279.41 1356.78 1256.13,289 291,stand,10.9796 -122.526 0,,
|
||||
-7367.3 1207.35 1376.13,290 292 309,stand,19.7137 -120.735 0,,
|
||||
-7299.33 1158.32 1376.13,291 293,stand,21.7297 -7.62561 0,,
|
||||
-7176.03 1126.31 1376.13,292 294,stand,22.5153 -19.1613 0,,
|
||||
-7101.4 914.31 1376.13,293 295,climb,-34.5972 -134.952 0,,
|
||||
-7101.4 914.311 1411.72,294 296,climb,-50.7251 -122.186 0,,
|
||||
-7104.13 899.702 1504.13,295 297 308,climb,61.4838 54.3703 0,,
|
||||
-7066.65 784.824 1513.01,296 298 305,stand,26.6571 -115.819 0,,
|
||||
-6877.18 672.173 1508.13,297 299,stand,24.6411 -26.0057 0,,
|
||||
-6502.4 535.426 1498.87,298 300 303 313 326,stand,24.0808 135.482 0,,
|
||||
-6285.25 725.396 1472.13,299 301,stand,34.6057 35.8088 0,,
|
||||
-6032.71 810.336 1467.57,300 302,stand,32.3645 20.2467 0,,
|
||||
-6006.88 1079.25 1410.83,301,stand,39.198 102.891 0,,
|
||||
-6303.36 390.679 1504.13,299 304,stand,20.9442 -35.3057 0,,
|
||||
-5990.82 149.938 1495.65,303 327 328,stand,16.687 -173.382 0,,
|
||||
-7157.03 679.385 1540.13,297 306,stand,28.783 72.5032 0,,
|
||||
-7313.52 826.395 1540.13,305 307,stand,17.5824 145.293 0,,
|
||||
-7573.18 1011.16 1568.13,306,stand,11.1993 72.1681 0,,
|
||||
-7228.2 1013.59 1504.13,296 309 314,stand,38.4125 101.167 0,,
|
||||
-7430.06 1152.89 1376.13,308 291 310,stand,53.9801 119.761 0,,
|
||||
-7562.54 1100.84 1369.36,309 289 311,stand,21.1694 27.7064 0,,
|
||||
-7073.31 786.2 1398.38,310 312,stand,24.5258 53.1618 0,,
|
||||
-6774.63 825.271 1365.85,311 313,stand,-39.53 -32.2844 0,,
|
||||
-6756.84 813.399 1472.13,312 299,stand,66.4111 143.502 0,,
|
||||
-7145.91 1093.56 1504.13,308 315 316,stand,21.5045 62.198 0,,
|
||||
-7148.43 1436.44 1504.13,314,stand,21.8396 91.5425 0,,
|
||||
-6925.69 1125.64 1504.13,314 317 320,stand,19.5984 6.9148 0,,
|
||||
-6798.22 1269.01 1504.13,316 318 319,stand,20.8289 131.665 0,,
|
||||
-6875.21 1416.01 1504.13,317 319,stand,25.0861 58.8746 0,,
|
||||
-6952.05 1389.04 1504.13,318 317,stand,19.1479 152.385 0,,
|
||||
-6740.96 1116.6 1504.13,316 321 322,stand,25.1959 -58.0034 0,,
|
||||
|
@@ -0,0 +1,338 @@
|
||||
337
|
||||
-2634.25 977.852 1868.16,1 2 43 45 46 47 48, stand,31.355 90.5042 0,,
|
||||
-1954.28 882.286 1880.03,0 2 8, stand,25.9827 56.6058 0,,
|
||||
-1940.54 487.282 1874.48,0 1 3 15 45, stand,33.0359 -46.0834 0,,
|
||||
-1341.78 748.595 1866.4,2 4 37, stand,35.9473 10.3589 0,,
|
||||
-1549.37 1074 1881.08,3 5 9, stand,36.0571 125.144 0,,
|
||||
-1564.86 1089.74 1890.13,4 6, crouch,60.8093 145.864 0,,
|
||||
-1647.81 1157.05 1872.13,5 7, stand,29.7894 -99.0155 0,,
|
||||
-1911.66 948.65 1872.13,6 8, stand,44.2365 -125.223 0,,
|
||||
-1940.95 910.128 1890.13,1 7, crouch,83.3191 -121.526 0,,
|
||||
-1095.59 999.747 1866.13,4 10, stand,26.2067 -31.2628 0,,
|
||||
-442.92 494.899 1882.88,9 11, stand,33.15 -49.632 0,,
|
||||
-312.436 12.6884 1868.13,10 12 36, stand,22.0648 -88.4906 0,,
|
||||
-740.844 -362.062 1870.44,11 13 16 35 40, stand,20.8344 -141.906 0,,
|
||||
-818.118 -741.687 1871.08,12 14 35, stand,20.6091 -115.588 0,,
|
||||
-1072.94 -903.711 1868.78,13 28 29, stand,24.6411 -137.649 0,,
|
||||
-1614.24 74.8886 1867.78,2 16, stand,24.751 135.521 0,,
|
||||
-1162.01 -197.003 1866.13,12 15 17 40, stand,20.4993 -30.296 0,,
|
||||
-1258.71 -418.193 1870.08,16 18, stand,27.9974 -101.971 0,,
|
||||
-1745.84 -90.5296 1870.13,17 19, stand,18.8184 146.716 0,,
|
||||
-2324.03 -403.212 1868.55,18 20 21 22 32, stand,20.1587 -154.491 0,,
|
||||
-3365.6 -77.9289 1869.27,19 21, stand,21.6144 134.62 0,,
|
||||
-3233.95 204.581 1868.06,19 20, stand,24.9762 -103.427 0,,
|
||||
-2744.96 -1213.65 1871.75,19 26, stand,25.7617 -82.7777 0,,
|
||||
-1807.41 -1544.48 1868.13,26 31, stand,45.246 108.945 0,,
|
||||
-1624.6 -2367.92 1881.52,27 30, stand,16.9122 78.6279 0,,
|
||||
-1700.59 -1891.74 1871.35,26 27 30, stand,24.8663 45.4822 0,,
|
||||
-2292.34 -1656.25 1870.64,22 23 25, stand,26.4319 34.1718 0,,
|
||||
-1208.92 -1588.08 1868.77,24 25 28, stand,19.0436 52.6508 0,,
|
||||
-929.624 -1127.72 1871.4,14 27 29, stand,15.6818 136.301 0,,
|
||||
-1399.81 -970.916 1868.53,14 28 33, stand,32.37 -125.932 0,,
|
||||
-1909.23 -2156.35 1869.25,24 25, stand,22.8503 149.067 0,,
|
||||
-1737.43 -1458.34 1908.13,23 32 33, stand,40.8789 59.1437 0,,
|
||||
-2153.2 -842.477 1908.13,19 31 33, stand,33.3752 124.655 0,,
|
||||
-1463.39 -1088.82 1908.13,29 31 32, stand,41.5491 66.7572 0,,
|
||||
-137.135 -841.584 1918.04,35, stand,34.7211 151.676 0,,
|
||||
-732.659 -519.18 1871.66,12 13 34, stand,24.5258 -20.5566 0,,
|
||||
-136.078 -396.126 1873.02,11, stand,13.5559 115.053 0,,
|
||||
-1200.05 704.269 1865.13,3 38 42, stand,27.8876 -106.755 0,,
|
||||
-1421.98 328.719 1865.13,37 39, stand,26.767 -71.8188 0,,
|
||||
-1251.86 266.299 1865.13,38 40 42, stand,35.7263 -67.1112 0,,
|
||||
-852.205 -111.311 1865.13,12 16 39 41, stand,35.3912 -22.4298 0,,
|
||||
-620.863 200.22 1865.13,40 42, stand,17.923 -131.804 0,,
|
||||
-758.74 395.292 1865.13,37 39 41, stand,19.939 -170.103 0,,
|
||||
-3122.31 550.522 1886.11,0 44 46, stand,37.182 77.9083 0,,
|
||||
-2528.88 157.219 1887.49,43 45 46, stand,38.4125 51.3709 0,,
|
||||
-2261.13 499.449 1868.27,0 2 44 46, stand,23.4106 58.4241 0,,
|
||||
-2589.92 628.798 1868.13,0 43 44 45, stand,27.8876 -75.4004 0,,
|
||||
-2599.7 1279.65 1868.13,0, stand,32.8149 140.767 0,,
|
||||
-2824.03 1270.24 1869.58,0 49 77, stand,31.3593 101.573 0,,
|
||||
-2742.56 1753.72 1862.13,48 50 66, stand,24.4159 -151.706 0,,
|
||||
-3233.39 1412.75 1876.4,49 51 66 77, stand,33.3752 -171.893 0,,
|
||||
-3489.48 1615.04 1868.23,50 52 67 74 75, stand,49.1626 56.2982 0,,
|
||||
-3677.64 1261.66 1864.35,51 53 65 74, stand,35.3912 -122.318 0,,
|
||||
-3587.5 1182.87 1865.08,52 54 66 76, stand,53.1946 -46.8414 0,,
|
||||
-3661.64 1077.82 1864.13,53 55, stand,41.1041 -120.752 0,,
|
||||
-3731.96 973.312 1816.13,54 56, stand,60.6982 -124.333 0,,
|
||||
-3843.19 823.684 1760.13,55 57, stand,45.9161 -125.905 0,,
|
||||
-3925.18 708.158 1760.13,56 58, stand,46.2512 -125.009 0,,
|
||||
-3976.52 635.67 1720.13,57 59, stand,52.5244 -127.805 0,,
|
||||
-4044.6 547.654 1672.13,58 60 78 85, stand,52.7496 -127.02 0,,
|
||||
-4132.06 630.414 1672.13,59 61, stand,43.4552 48.8715 0,,
|
||||
-4065.82 713.823 1728.13,60 62, stand,33.0402 53.7988 0,,
|
||||
-4004.56 799.203 1760.13,61 63, stand,39.198 54.1339 0,,
|
||||
-3899.73 947.788 1760.13,62 64, stand,39.6484 54.9194 0,,
|
||||
-3815.21 1066.87 1832.13,63 65, stand,25.9814 53.0133 0,,
|
||||
-3748.88 1158.35 1864.13,52 64, stand,29.3433 54.0241 0,,
|
||||
-3283.99 1637 1868.13,49 50 53 74 75, stand,20.8344 -96.8237 0,,
|
||||
-3411.96 1724.07 1948.13,51 68, stand,30.1288 56.5619 0,,
|
||||
-3351.28 1812.03 1988.13,67 69, stand,41.214 58.5779 0,,
|
||||
-3411.09 1860.32 1988.13,68 70 73, stand,38.0774 -119.56 0,,
|
||||
-3590.75 1813.5 1988.13,69 71, stand,28.4479 -128.821 0,,
|
||||
-3710.99 1552.94 1988.13,70 72, stand,31.5845 -100.823 0,,
|
||||
-3608.24 1547.96 1988.13,71 73, stand,39.8682 -33.8556 0,,
|
||||
-3462.14 1756.57 1988.13,69 72, stand,32.1448 -35.6464 0,,
|
||||
-3649.7 1418.53 1876.35,51 52 66, stand,28.4479 136.586 0,,
|
||||
-3367.38 1365.38 1880.69,51 66 76, stand,39.0881 -115.907 0,,
|
||||
-3435.44 1268.17 1879.39,53 75, stand,21.7297 -27.2144 0,,
|
||||
-3000.68 1215.89 1880.08,48 50, stand,28.5632 -126.212 0,,
|
||||
-4149.89 469.754 1672.13,59 79 84, stand,30.5792 -30.351 0,,
|
||||
-3979.83 326.536 1672.13,78 80, stand,39.6484 -33.2678 0,,
|
||||
-3867.31 248.263 1624.13,79 81, stand,43.6804 -32.0319 0,,
|
||||
-3675.64 185.925 1594.13,80 82, stand,29.5685 -18.9307 0,,
|
||||
-3765.72 316.011 1594.13,81 83, stand,26.5472 139.311 0,,
|
||||
-3832.44 366.145 1648.13,82 84, stand,34.9463 142.667 0,,
|
||||
-3911.47 416.476 1672.13,78 83 85, stand,38.1927 149.276 0,,
|
||||
-4022.58 506.871 1672.13,59 84, stand,43.5651 -45.3528 0,,
|
||||
-2035.88 -2321.71 1868.75,87 92 93, stand,22.6251 56.8915 0,,
|
||||
-2926.55 -1785.75 1866.15,86 88, stand,20.4993 164.288 0,,
|
||||
-3100.27 -1836.37 1867.71,87 89, stand,34.0509 140.657 0,,
|
||||
-3600.91 -2607.32 1903.06,88 90 91, stand,38.1927 61.9342 0,,
|
||||
-3728.92 -2520.59 1916.55,89 118, stand,35.5066 77.8314 0,,
|
||||
-3109.96 -2876.31 1903.24,89 92 97, stand,27.1075 -16.8707 0,,
|
||||
-2644.93 -2539.53 1868.13,86 91 93 94 97, stand,21.0596 34.419 0,,
|
||||
-1476.84 -2652.72 1904.08,86 92 96 98, stand,27.3273 -32.9987 0,,
|
||||
-2551.87 -3026.46 1902.56,92 95 97, stand,28.5632 0.564594 0,,
|
||||
-2225.79 -3026.64 1919.43,94 96, stand,24.9762 2.91567 0,,
|
||||
-1829.33 -2967.99 1895,93 95, stand,26.322 18.5932 0,,
|
||||
-2730.06 -2905.21 1872.67,91 92 94, stand,32.8149 -14.9206 0,,
|
||||
-1312.23 -2749.74 1901.41,93 99, stand,35.2814 -31.0925 0,,
|
||||
-1230.88 -2677.97 1891.37,98 100 111, stand,37.0721 141.7 0,,
|
||||
-1528.51 -2488.12 1888.65,99, stand,41.4392 109.785 0,,
|
||||
-1318.58 -2095.83 1869.45,102 110, stand,33.9355 143.162 0,,
|
||||
-611.332 -1139.64 1885.58,101 103 109 110, stand,29.5685 49.7614 0,,
|
||||
-235.771 -1318.8 1889.02,102 104 108, stand,39.198 3.62429 0,,
|
||||
-198.937 -1217.87 1905.07,103 105 106, stand,34.1608 64.3182 0,,
|
||||
-103.58 -1009.45 1916.7,104, stand,35.7263 63.6481 0,,
|
||||
-265.983 -1210.19 1904.37,104 107, stand,50.1733 154.022 0,,
|
||||
-633.749 -951.654 1880.51,106, stand,41.7743 140.025 0,,
|
||||
-366.46 -1586.16 1872.04,103, stand,38.1927 -141.923 0,,
|
||||
-463.201 -1573.97 1868.13,102 110, stand,38.9728 179.103 0,,
|
||||
-762.454 -2031.9 1872.7,101 102 109 111, stand,36.0614 -122.548 0,,
|
||||
-1066.04 -2441.8 1869.02,99 110, stand,29.4586 -126.805 0,,
|
||||
-714.152 -2357.99 1888.13,113 117, stand,31.8097 19.4501 0,,
|
||||
-115.877 -2290.18 1888.13,112 114, stand,26.9922 140.844 0,,
|
||||
-237.428 -1728.08 1888.13,113 115, stand,24.8663 -126.542 0,,
|
||||
32.4811 -1938.16 1888.13,114 116, stand,36.8469 -135.276 0,,
|
||||
-419.429 -2006.07 1888.13,115 117, stand,31.2494 -167.307 0,,
|
||||
-495.23 -2488.18 1888.13,112 116, stand,21.6199 95.4865 0,,
|
||||
-3496.91 -2185.48 1880.32,90 119 127, stand,20.8344 60.105 0,,
|
||||
-3127.87 -1812.52 1868.14,118 120, stand,29.0082 -10.5261 0,,
|
||||
-3208.51 -1639.29 1866.07,119 127, stand,26.9922 109.077 0,,
|
||||
-3485.21 -1237.11 1870.84,127, stand,25.4266 92.6135 0,,
|
||||
-3383.05 -1124 1869.91,123 126, stand,32.5897 -50.1648 0,,
|
||||
-3266.39 -788.239 1881.67,122 124, stand,26.322 74.7003 0,,
|
||||
-3732.22 -420.882 1867.6,123 125, stand,26.322 104.039 0,,
|
||||
-3929.62 -745.2 1870.35,124 126, stand,17.5879 -127.959 0,,
|
||||
-4043.56 -1044.23 1868.14,122 125 127 128 131 143, stand,25.6464 -114.633 0,,
|
||||
-3835.48 -1600.26 1867.52,118 120 121 126, stand,22.5153 -71.297 0,,
|
||||
-4319.86 -1210.66 1868.13,126 129, stand,19.8236 -122.96 0,,
|
||||
-4393.81 -1334.2 1872.13,128 130, stand,24.4159 -113.666 0,,
|
||||
-4265.04 -1616.89 1872.13,129, stand,33.0402 -88.4686 0,,
|
||||
-4458.68 -1051.3 1867.26,126 132 133 143, stand,30.9143 -147.037 0,,
|
||||
-4785.64 -1203.07 1864.13,131 133, stand,40.0934 -174.14 0,,
|
||||
-4841.51 -787.3 1872.78,131 132 134 137, stand,29.118 104.671 0,,
|
||||
-4752.08 -658.858 1868.81,133 135, stand,37.6324 49.1241 0,,
|
||||
-4700.02 -607.797 1864.13,134 136, stand,28.1128 -17.2772 0,,
|
||||
-4417.02 -644.931 1864.13,135, stand,31.134 15.6433 0,,
|
||||
-4826.36 -419.083 1868.74,133 138 141, stand,28.4393 63.2361 0,,
|
||||
-4949.7 -454.99 1876.14,137 139, stand,50.9503 -115.682 0,,
|
||||
-5037.81 -590.066 1972.13,138 140, stand,45.0122 -122.96 0,,
|
||||
-5088.5 -663.543 1988.13,139, stand,49.1541 11.7597 0,,
|
||||
-4731.11 -263.134 1868.13,137 142, stand,33.927 50.838 0,,
|
||||
-4274.15 -540.248 1910.14,141 143, stand,40.8704 -64.7327 0,,
|
||||
-4286.09 -958.479 1865.09,126 131 142, stand,34.8224 -113.336 0,,
|
||||
-4069 -840.224 512.125,145, stand,41.0956 -174.03 0,,
|
||||
-4449.55 -1006.94 512.125,144 146, stand,34.0424 -153.31 0,,
|
||||
-4644.28 -1325.36 512.125,145, stand,38.1842 -115.017 0,,
|
||||
-4767.04 -1202.88 521.77,148 150, stand,41.6559 31.4581 0,,
|
||||
-4780.63 -778.152 512.125,147 149, stand,47.1436 90.3613 0,,
|
||||
-4513.89 -743.367 512.125,148 150, stand,42.2162 87.785 0,,
|
||||
-5002.75 -1001.67 512.125,147 149, stand,25.7532 -34.35 0,,
|
||||
-3913.89 -1544.4 2118.13,153, stand,31.131 -23.5559 0,,
|
||||
-4179.19 -1844.88 2120.13,153 154, stand,39.3048 49.4592 0,,
|
||||
-4076.92 -1744 2118.13,151 152, stand,36.6187 47.3279 0,,
|
||||
-3978.73 -1942.25 2120.13,152 155, stand,43.0017 -32.0703 0,,
|
||||
-3706.89 -2174.59 2120.13,154, stand,42.3315 -46.0669 0,,
|
||||
-2469.01 -2651.45 2000.13,157, stand,51.9611 38.4839 0,,
|
||||
-2284.32 -2629.24 2000.13,156, stand,48.7146 5.66774 0,,
|
||||
-2030.84 1006.85 1992.13,159, stand,32.8119 -102.229 0,,
|
||||
-1926.95 932.281 1992.13,158 160, stand,36.5088 -106.937 0,,
|
||||
-1826.8 868.931 1992.13,159 161, stand,39.3048 -112.985 0,,
|
||||
-1734.39 887.1 1992.13,160 162, stand,30.2356 -49.4836 0,,
|
||||
-1578.45 1102.82 1992.13,161, stand,30.2356 -28.0933 0,,
|
||||
-2970.32 844.521 1872.13,164, stand,45.2429 -45.3748 0,,
|
||||
-3097.55 662.936 1872.13,163 165, stand,49.2749 -24.66 0,,
|
||||
-3158.94 582.559 1872.13,164 166, stand,42.8918 -21.4136 0,,
|
||||
-2906.16 936.153 1994.13,165 167, stand,55.7709 -28.6151 0,,
|
||||
-2976.06 837.003 1994.13,166 168, stand,40.6537 -31.6418 0,,
|
||||
-3096.94 671.174 1994.13,167 169, stand,45.246 -27.5 0,,
|
||||
-3156.14 585.159 1994.13,168, stand,33.9355 -31.0815 0,,
|
||||
-3375.09 660.026 2120.13,171, stand,30.1288 -19.6613 0,,
|
||||
-3226.38 576.921 2120.13,170 172, stand,44.4604 -10.4767 0,,
|
||||
-3105.54 739.559 2120.13,171 173 174, stand,33.6005 68.9215 0,,
|
||||
-3234.22 817.524 2120.13,172, stand,28.783 -30.4883 0,,
|
||||
-2972.49 906.422 2120.13,172, stand,40.0934 47.8992 0,,
|
||||
-3545.82 581.434 2496.13,176, stand,34.7156 -41.9141 0,,
|
||||
-3989.26 -53.4389 2496.13,175, stand,28.6731 -106.646 0,,
|
||||
-4722.48 -581.594 2120.13,178, stand,24.4159 -31.8176 0,,
|
||||
-4478.01 -755.348 2120.13,177, stand,47.4817 63.8129 0,,
|
||||
-4891.08 -234.191 2120.13,181, stand,41.4392 -85.343 0,,
|
||||
-5173.95 -621.122 2120.13,182, stand,40.3186 -18.3759 0,,
|
||||
-5021.56 -802.01 2120.13,183, stand,41.4392 -37.9755 0,,
|
||||
-5189.98 -1135.28 2120.13,184 188, stand,36.9568 -127.673 0,,
|
||||
-4605.83 -1495.73 2120.13,185 187, stand,46.7017 81.2921 0,,
|
||||
-4415.02 -1258.29 2120.13,186, stand,48.4924 42.4335 0,,
|
||||
-4100.67 -1454.55 2120.13,187, stand,52.2992 -85.4584 0,,
|
||||
-4385.55 -1831.87 2120.13,184, stand,34.0454 -152.42 0,,
|
||||
-5092.2 -1690 2120.13,183 189, stand,36.6217 93.9429 0,,
|
||||
-4589.95 -2105.92 2120.13,, stand,44.01 -83.6676 0,,
|
||||
-3843.38 -2611.77 2768.13,191 193 194, stand,50.7282 -54.8834 0,,
|
||||
-3968.82 -2812.48 2768.13,192 197, stand,30.3485 -62.0465 0,,
|
||||
-4158.12 -2696.49 2768.13,193 196, stand,43.5651 145.54 0,,
|
||||
-4061.28 -2512.42 2768.13,190 195, stand,41.994 74.0906 0,,
|
||||
-3726.09 -2603.06 2768.13,190, stand,33.7103 51.1401 0,,
|
||||
-4054.48 -2363.27 2780.13,193, stand,33.7103 96.4917 0,,
|
||||
-4281.02 -2700.91 2768.13,192, stand,34.8309 -168.24 0,,
|
||||
-3954.64 -2929.49 2768.2,191, stand,29.6783 -75.9607 0,,
|
||||
-4372.77 -2708.76 2764.13,199 201, stand,33.15 41.1755 0,,
|
||||
-4072.38 -2281.37 2764.13,200, stand,31.9141 57.4078 0,,
|
||||
-3616.57 -2569.88 2764.13,201, stand,46.3611 -25.6873 0,,
|
||||
-3914.25 -3023.31 2764.13,198, stand,45.3558 -113.034 0,,
|
||||
-3958.82 -2943.23 3008.13,203 205 206, stand,37.7368 -24.3414 0,,
|
||||
-3706.36 -2583.64 3008.13,204 206, stand,40.8734 49.1187 0,,
|
||||
-4007.44 -2419.21 3008.13,205 206, stand,40.8734 142.744 0,,
|
||||
-4208.52 -2668.08 3008.13,202 206, stand,46.3611 -149.723 0,,
|
||||
-3990.28 -2635.48 3008.13,202 203 204, stand,32.6996 84.4397 0,,
|
||||
-4925.72 -2217.47 2778.13,210, stand,23.2898 52.3322 0,,
|
||||
-5117.31 -824.805 2778.13,209, stand,38.9728 6.08522 0,,
|
||||
-5316.96 -870.573 2778.13,, stand,34.0454 10.2271 0,,
|
||||
-4874.67 -2017.56 2778.13,207, stand,51.7389 140.322 0,,
|
||||
-4927.5 -2237.14 2489.26,212 237, stand,16.2366 116.58 0,,
|
||||
-5379.42 -890.15 2489.07,213, stand,20.719 96.3049 0,,
|
||||
-5313.77 230.13 2495.23,214, stand,25.6464 67.0813 0,,
|
||||
-4325.14 1653.67 2491.53,215, stand,27.6569 25.9815 0,,
|
||||
-3252.64 2178.51 2491.17,216, stand,28.2172 14.2206 0,,
|
||||
-1796.98 2202.47 2489.31,217 251, stand,30.9088 -12.4267 0,,
|
||||
-629.062 1629.82 2487.06,218 251 217, stand,23.8501 -37.0526 0,,
|
||||
-231.904 1229.51 2488.38,219 221 216 220 218, stand,31.579 -50.5988 0,,
|
||||
-617.121 1114.08 2472.13,219 217, stand,43.7848 -147.581 0,,
|
||||
-249.258 696.217 2472.13,218 220, stand,33.0347 -51.6095 0,,
|
||||
41.4728 902.57 2494.93,222 217 221 219, stand,27.7722 54.447 0,,
|
||||
399.793 -138.521 2491.33,223 220, stand,27.3218 -77.7679 0,,
|
||||
427.979 -685.912 2384.02,224, stand,16.5717 -92.6599 0,,
|
||||
407.017 -1089.9 2489.9,225, stand,32.0294 87.9333 0,,
|
||||
84.8236 -980.501 2465.13,226, stand,37.0667 173.934 0,,
|
||||
97.3423 -678.501 2465.13,227, stand,33.0347 147.287 0,,
|
||||
442.791 -664.653 2386.73,, stand,58.2318 -2.78074 0,,
|
||||
-1113.84 -3226.81 2490.45,229 231, stand,45.9106 160.267 0,,
|
||||
-1227.78 -2885.26 2472.13,230, stand,37.8467 99.0131 0,,
|
||||
-1762.69 -3123.09 2472.13,231, stand,36.6162 -169.603 0,,
|
||||
-1655.9 -3436.62 2489.86,228 232, stand,22.8448 -72.2913 0,,
|
||||
-1962.18 -3503.41 2489,233, stand,21.3892 -177.068 0,,
|
||||
-3045.15 -3489.08 2486.75,234 236, stand,20.3784 169.831 0,,
|
||||
-3040.65 -3141.82 2465.13,235, stand,32.4744 75.6506 0,,
|
||||
-3340.77 -3025.27 2465.13,236, stand,36.5063 132.203 0,,
|
||||
-3488.56 -3411.26 2492.31,233 237, stand,22.8448 -96.9995 0,,
|
||||
-4589.63 -2674.01 2488.59,211, stand,19.5929 134.027 0,,
|
||||
-1150.44 1070.54 2118.13,238, stand,35.1605 -89.7266 0,,
|
||||
-1496.24 1368.6 2120.13,260 237 239, stand,23.6304 -111.117 0,,
|
||||
-1795.95 907.552 2120.13,238 240 300, stand,30.3485 -122.087 0,,
|
||||
-2133.35 1088.27 2120.13,239, stand,31.579 -145.603 0,,
|
||||
-1957.42 1278.23 2120.13,300 301, stand,31.579 118.344 0,,
|
||||
-1004.1 1061.79 2764.13,246 243 245, stand,46.2512 -104.366 0,,
|
||||
-1434.88 1358.83 2764.13,245 242 244, stand,38.4125 152.604 0,,
|
||||
-1142.28 1834.38 2764.13,246 243 245, stand,45.6909 40.2856 0,,
|
||||
-687.205 1545.91 2764.13,243 244 242, stand,36.3965 -28.2526 0,,
|
||||
-3404.28 1245.99 1988.13,250, stand,37.182 151.594 0,,
|
||||
-3267.31 1355.03 1988.13,249 250, stand,34.8309 33.3368 0,,
|
||||
-3203.48 1310.55 1988.13,250, stand,29.3433 43.3069 0,,
|
||||
-3346.3 1328.65 1988.13,247 248, stand,31.9141 126.287 0,,
|
||||
-3166.83 1172.95 1988.13,247 249, stand,47.0367 55.7324 0,,
|
||||
-850.595 1882.06 2496.34,215 216,stand,5.60732 159.073 0,,
|
||||
0.630616 -704.531 2216.13,253,stand,12.8858 -175.768 0,,
|
||||
-130.467 125.552 2216.13,252 254,stand,16.6925 109.536 0,,
|
||||
-172.868 425.325 2216.13,253 255,stand,17.8131 -19.5865 0,,
|
||||
-514.83 757.753 2216.13,254 256,stand,21.1694 -158.415 0,,
|
||||
-675.718 1069.13 2224.13,255 257,stand,28.2281 82.883 0,,
|
||||
-917.516 1165.77 2216.13,256 258,stand,23.6359 54.4394 0,,
|
||||
-694.469 1520.87 2216.13,257 259,stand,20.4993 128.685 0,,
|
||||
-1150.18 1827.93 2216.13,258 260,stand,18.3734 159.145 0,,
|
||||
-1452.21 1441.66 2216.13,259 238,stand,35.2814 -77.5614 0,,
|
||||
-4604.96 -992.874 255.425,262 271 272,stand,-1.23474 65.0027 0,,
|
||||
-4340.21 -631.407 224.125,261 263 264 271 273 279,stand,15.5634 -51.9852 0,,
|
||||
-4002.11 -796.367 224.125,262,stand,16.5686 165.231 0,,
|
||||
-4661.43 -646.925 224.125,262 265,stand,16.1237 6.58291 0,,
|
||||
-4837.91 -927.544 224.125,264 266 272,stand,18.3594 -92.2995 0,,
|
||||
-5007.87 -1050.78 224.125,265 267,stand,20.9357 -72.3703 0,,
|
||||
-4910.35 -1263.68 224.125,266 268,stand,21.496 -29.2545 0,,
|
||||
-4581.65 -1419.07 224.125,267 269,stand,23.6273 78.3621 0,,
|
||||
-4569.91 -1275.41 224.125,268 270,stand,22.6166 -7.75422 0,,
|
||||
-4269.11 -1241.83 224.125,269 271 272,stand,20.4907 172.735 0,,
|
||||
-4405.43 -961.22 227.821,270 262 261,stand,22.6166 104.087 0,,
|
||||
-4757.8 -1056.21 235.901,261 265 270,stand,21.496 -2.37642 0,,
|
||||
-4171.7 -493.71 224.125,262 274,stand,21.9464 44.656 0,,
|
||||
-4105.6 -408.44 224.125,273 275,stand,36.7285 57.6419 0,,
|
||||
-3961.55 -176.605 144.125,274 276,stand,38.6292 58.3175 0,,
|
||||
-4065.7 -19.4971 144.125,275 277 280,stand,30.0104 137.935 0,,
|
||||
-4067.22 -140.749 144.125,276 278,stand,35.7178 -120.826 0,,
|
||||
-4211.32 -354.823 224.125,277 279,stand,22.8418 -124.187 0,,
|
||||
-4283.34 -461.001 224.125,278 262,stand,23.1769 -120.155 0,,
|
||||
-4480.85 275.578 142.125,276 281 283,stand,16.3434 151.828 0,,
|
||||
-4816.29 -170.757 142.125,280 282,stand,22.2815 63.9151 0,,
|
||||
-6584.99 -2390.42 142.125,281,stand,19.1449 -129.895 0,,
|
||||
-4196.64 757.994 142.125,280 284 286,stand,15.0031 -151.252 0,,
|
||||
-4293.18 967.986 144.125,283 285,stand,22.2815 128.57 0,,
|
||||
-4649.64 1173.21 149.125,284 286 287,stand,16.7938 45.8096 0,,
|
||||
-4383.67 889.76 144.125,285 283,stand,23.067 -47.1402 0,,
|
||||
-4443.84 1448.58 144.125,285 288,stand,13.9923 -138.299 0,,
|
||||
-4248.85 1704.1 144.125,287 289,stand,13.7726 50.1382 0,,
|
||||
-4207.7 1752.68 160.125,288 290 293,stand,56.5479 -121.501 0,,
|
||||
-3743.62 1489.64 152.125,289 291 292,stand,25.528 -40.6473 0,,
|
||||
-3318.97 1172.61 160.125,290,stand,18.4747 -35.2695 0,,
|
||||
-3629.16 1678.33 120.125,290 293 294,stand,8.16956 168.884 0,,
|
||||
-4137.51 1970.94 120.125,292 289,stand,14.668 -171.967 0,,
|
||||
-3241.23 1330.47 120.125,292,stand,18.5846 -35.7145 0,,
|
||||
-4119.27 -1293.35 224.125,296,stand,22.3914 -174.543 0,,
|
||||
-3461.61 -1746.47 224.125,295 297 299,stand,22.5067 121.659 0,,
|
||||
-3597.74 -1810.41 224.125,296 298,stand,41.2054 38.229 0,,
|
||||
-4208.32 -1386.32 224.125,297,stand,43.2214 83.0203 0,,
|
||||
-3312.11 -1532.06 224.125,296,stand,22.8418 79.4388 0,,
|
||||
-1845.85 1121.4 2120.13,241 239,stand,51.5106 131.399 0,,
|
||||
-1701.09 1515.25 2120.13,241,stand,25.3082 84.1739 0,,
|
||||
-3617 144.763 1594.13,303,stand,23.9624 -19.6854 0,,
|
||||
-3306.47 -71.48 1594.13,302 304,stand,14.3329 -33.0118 0,,
|
||||
-2810.14 -429.774 1594.13,303 305 334 336,stand,12.9871 -33.4567 0,,
|
||||
-2772.6 -717.332 1594.13,304 306 335,stand,36.9537 -110.614 0,,
|
||||
-2973.73 -1000.2 1422.13,305 307,stand,39.4147 -125.846 0,,
|
||||
-2930.86 -1153.23 1422.13,306 308,stand,25.3082 -18.7845 0,,
|
||||
-2510.01 -1212.55 1422.13,307 309,stand,21.5015 1.47976 0,,
|
||||
-2168.99 -1016.66 1422.13,308 310,stand,21.7212 39.4485 0,,
|
||||
-2007.29 -777.27 1422.13,309 311,stand,24.9731 76.1758 0,,
|
||||
-2019.16 -171.146 1422.13,310 312,stand,18.3649 -88.4049 0,,
|
||||
-2268.04 4.61458 1422.12,311 313,stand,22.7319 -76.8747 0,,
|
||||
-2340.36 -101.67 1422.12,312 314,stand,35.7233 -124.803 0,,
|
||||
-2600.38 -458.251 1229.13,313 315 329,stand,24.4128 -65.1139 0,,
|
||||
-2511.79 -667.599 1229.13,314 316,stand,26.3135 -68.3603 0,,
|
||||
-2735.79 -654.017 1230.13,315 317 329,stand,34.4873 -137.459 0,,
|
||||
-3030.75 -1086.01 1230.13,316 318,stand,29.115 -115.173 0,,
|
||||
-2852.15 -1187.4 1230.13,317 319,stand,26.9891 -14.8349 0,,
|
||||
-2428.04 -1177.87 1230.13,318 320,stand,25.3082 13.3889 0,,
|
||||
-2111.75 -961.408 1230.13,319 321,stand,26.0883 41.9424 0,,
|
||||
-1948.18 -603.967 1230.13,320 322,stand,21.9464 79.3454 0,,
|
||||
-2166.69 -43.3461 1230.13,321 323,stand,22.2815 127.498 0,,
|
||||
-2306.59 -59.0722 1230.13,322 324,stand,24.4128 -142.798 0,,
|
||||
-2119.47 221.287 1230.13,323,stand,25.6433 121.341 0,,
|
||||
-2408.22 110.61 1230.13,326,stand,17.6892 174.004 0,,
|
||||
-3098.61 -29.2942 1230.13,325 327,stand,22.0618 -134.267 0,,
|
||||
-3288.16 -284.067 1230.13,326 328,stand,17.5793 -116.129 0,,
|
||||
-3177.72 -974.389 1230.13,327,stand,24.5227 -138.53 0,,
|
||||
-2789.47 -422.629 1229.13,316 314,stand,22.0618 98.0935 0,,
|
||||
-2423.94 117.137 1422.13,331,stand,19.8206 -43.4159 0,,
|
||||
-3105.53 -18.5493 1422.13,330 332,stand,21.9464 -141.408 0,,
|
||||
-3321.43 -338.462 1422.13,331 333,stand,13.2123 -108.037 0,,
|
||||
-3169.17 -955.963 1422.13,332,stand,21.051 -71.7496 0,,
|
||||
-2505.82 -403.852 1594.13,304 335,stand,22.7319 -43.8883 0,,
|
||||
-2575.02 -675.646 1592.13,334 305,stand,23.2953 76.1319 0,,
|
||||
-2631.36 -538.374 1594.13,304,stand,16.687 147.351 0,,
|
||||
|
@@ -0,0 +1,423 @@
|
||||
422
|
||||
3161.08 -5093.52 2310.13,1 38 39 242 243,stand,16.908 -92.0544 0.0,,
|
||||
3166.62 -5330.11 2318.13,0 2 5,stand,16.6882 93.3563 0.0,,
|
||||
3334.54 -5375.14 2318.13,1 3,stand,18.5889 -14.7876 0.0,,
|
||||
3552.16 -5345.13 2318.13,2 4,stand,5.15259 110.863 0.0,,
|
||||
3400.52 -5462.88 2318.13,3,stand,29.339 37.8149 0.0,,
|
||||
2985.6 -5418.44 2318.13,1 6 10,stand,19.259 -173.804 0.0,,
|
||||
2748.34 -5350.16 2318.13,5 7 40,stand,16.5729 -24.4501 0.0,,
|
||||
2490.27 -5426.87 2318.13,6 8 9,stand,14.3317 -109.748 0.0,,
|
||||
2338.76 -5359.14 2318.13,7,stand,7.3938 153.045 0.0,,
|
||||
2476.94 -5568.86 2318.13,7 10 11 12,stand,18.5889 6.41602 0.0,,
|
||||
2973.69 -5544.57 2318.13,5 9,stand,22.511 11.1182 0.0,,
|
||||
2260.53 -5593.18 2318.13,9,stand,11.9806 176.819 0.0,,
|
||||
2465.36 -5772.81 2318.13,9 13 14 24,stand,13.1012 151.738 0.0,,
|
||||
2260.53 -5690.85 2318.13,12,stand,13.3264 165.174 0.0,,
|
||||
2710.87 -5725.6 2318.13,12 15,stand,18.8141 12.7991 0.0,,
|
||||
2957.21 -5753.03 2318.13,14 16 20,stand,18.0286 -168.283 0.0,,
|
||||
3125.86 -5726.18 2318.13,15 17 19,stand,27.4384 -15.1227 0.0,,
|
||||
3295.28 -5765.17 2318.13,16 18,stand,33.1458 1.90063 0.0,,
|
||||
3359.75 -5764.51 2310.13,17 29 30,stand,35.2771 -148.162 0.0,,
|
||||
3214.44 -5521.13 2318.13,16,stand,11.7609 98.5089 0.0,,
|
||||
2957.05 -5832.42 2318.13,15 21 23,stand,32.4756 93.3563 0.0,,
|
||||
2967.8 -6050.56 2318.13,20 22,stand,21.6156 111.5 0.0,,
|
||||
2636.03 -6059.97 2318.13,21 23,stand,22.1759 127.403 0.0,,
|
||||
2591.27 -5903.18 2318.13,20 22 24,stand,23.0713 -175.15 0.0,,
|
||||
2461.57 -5873.85 2318.13,12 23 25,stand,22.0605 -76.0748 0.0,,
|
||||
2362.99 -6024.35 2318.13,24 26 27,stand,22.511 -101.684 0.0,,
|
||||
2365.58 -6105.55 2310.13,25 28 42,stand,22.9559 -100.009 0.0,,
|
||||
2260.52 -5913.56 2318.13,25,stand,12.9913 154.501 0.0,,
|
||||
2555.4 -6182.99 2310.13,26 29,stand,17.1332 -7.28394 0.0,,
|
||||
3386.65 -6170.23 2310.13,18 28 30 31,stand,10.7501 100.558 0.0,,
|
||||
3616.45 -5775.03 2310.13,18 29 31 37,stand,20.8301 134.154 0.0,,
|
||||
4134.72 -6099.63 2315.06,29 30 32,stand,7.27844 120.526 0.0,,
|
||||
4153.34 -5417.02 2310.13,31 33 37 242,stand,9.9646 87.4896 0.0,,
|
||||
4145.26 -4626.61 2304.73,32 34 37,stand,8.95935 93.4277 0.0,,
|
||||
4146.19 -3984.57 2308.81,33 35,stand,8.06396 92.9773 0.0,,
|
||||
4191.18 -3586.31 2319.29,34 36,stand,9.62952 156.813 0.0,,
|
||||
4233.89 -3391.85 2318.04,35 150 179,stand,11.6455 89.8462 0.0,,
|
||||
3640.26 -5283.16 2310.13,30 32 33 38,stand,29.339 23.2471 0.0,,
|
||||
3343.03 -5102.34 2310.13,0 37,stand,17.4683 -55.4425 0.0,,
|
||||
2972.33 -5099.69 2310.13,0 40,stand,18.924 -165.635 0.0,,
|
||||
2742.66 -5251.07 2310.13,6 39 41 253,stand,16.6882 -84.787 0.0,,
|
||||
2189.19 -5250.66 2310.13,40 42 252,stand,21.1652 -116.587 0.0,,
|
||||
2201.03 -6097.51 2310.13,26 41 43 258,stand,30.91 49.2957 0.0,,
|
||||
1745.95 -6208.68 2306.26,42 44,stand,14.6722 176.512 0.0,,
|
||||
1138.4 -6186.94 2304.3,43 45 266,stand,15.2325 179.868 0.0,,
|
||||
596.275 -6181.51 2305.54,44 46 416,stand,15.2325 -176.21 0.0,,
|
||||
-33.9944 -6200.21 2309.93,45 47 416 418,stand,15.7928 -177.446 0.0,,
|
||||
-634.851 -6206.35 2309.98,46 48,stand,15.4523 178.522 0.0,,
|
||||
-1007.43 -6079.18 2310.13,47 388,stand,21.6156 -6.36658 0.0,,
|
||||
-1573.66 -6083.53 2310.13,50,stand,10.3052 177.742 0.0,,
|
||||
-2008.41 -6048.56 2310.13,49 397,stand,15.3424 56.4587 0.0,,
|
||||
-2504.2 -6107.61 2310.13,52 397 398,stand,11.3104 177.407 0.0,,
|
||||
-2694.08 -6041.22 2310.13,51 53,stand,13.7769 -106.556 0.0,,
|
||||
-2847.36 -5869.1 2310.13,52 54 398,stand,13.7769 -35.8539 0.0,,
|
||||
-3101.47 -5597.96 2310.13,53 55 399,stand,18.5889 15.4303 0.0,,
|
||||
-3240.44 -5387.43 2310.13,54 56 393,stand,10.8655 117.79 0.0,,
|
||||
-3412.34 -5540.54 2317.43,55 57 209,stand,15.5676 -21.8243 0.0,,
|
||||
-3021.33 -5955.92 2316.86,56 58,stand,16.6882 -52.0587 0.0,,
|
||||
-2829.24 -6181.34 2321.76,57 213,stand,27.5482 135.967 0.0,,
|
||||
-2773.34 -7083.41 2348.25,60 213 214,stand,18.5889 92.2906 0.0,,
|
||||
-3185.05 -7108.34 2312.85,59 61,stand,14.7821 -157.181 0.0,,
|
||||
-3219.92 -7432.87 2318.1,60 215 218,stand,15.5676 -127.051 0.0,,
|
||||
-5372.09 -7385.54 2318.13,63 217 218 219,stand,21.0553 57.2443 0.0,,
|
||||
-5382.55 -7096.1 2321.43,62 64,stand,11.8707 110.995 0.0,,
|
||||
-5600.88 -6981.58 2322.16,63 65,stand,14.2218 106.068 0.0,,
|
||||
-5463.75 -6054.79 2315.82,64 66 216,stand,22.6208 -81.7328 0.0,,
|
||||
-5112.87 -5583.54 2318.13,65 67 219 220,stand,10.3052 64.2975 0.0,,
|
||||
-5057.19 -4916.81 2318.13,66 68,stand,8.06396 91.2854 0.0,,
|
||||
-5090.46 -4023.83 2318.13,67 69,stand,8.73413 91.6205 0.0,,
|
||||
-5170.89 -3428.15 2318.13,68 70,stand,12.0959 95.202 0.0,,
|
||||
-5213.31 -3070.49 2322.02,69 71,stand,14.7821 94.1968 0.0,,
|
||||
-4986.34 -2830.07 2311.27,70 72,stand,10.8655 54.1077 0.0,,
|
||||
-4888.72 -2368.18 2315.19,71 73,stand,6.94336 91.6205 0.0,,
|
||||
-4961.73 -1935.96 2316.64,72 74,stand,13.6615 75.498 0.0,,
|
||||
-4253.46 -1770.76 2314.64,73 75,stand,13.9966 7.52014 0.0,,
|
||||
-3960.52 -1588.96 2323.06,74 76,stand,13.7769 -163.669 0.0,,
|
||||
-3646.33 -1280.06 2358.53,75 77,stand,14.5569 2.48291 0.0,,
|
||||
-3130.07 -1277.94 2375.48,76 78,stand,17.3584 -1.10413 0.0,,
|
||||
-2563.41 -1287.73 2395.07,77 79 226,stand,15.3424 -0.0933838 0.0,,
|
||||
-2025.51 -1249.68 2358.14,78 80 82,stand,24.7467 22.6373 0.0,,
|
||||
-1871.8 -1257.34 2370.13,79 81,stand,34.7168 -51.0095 0.0,,
|
||||
-1830.0 -1264.5 2318.13,80 85 86,stand,-16.463 150.897 0.0,,
|
||||
-1978.23 -1426.03 2341.41,79 83 85,stand,29.0039 -1.17554 0.0,,
|
||||
-1996.04 -1579.42 2318.13,82 84 226,stand,22.7307 -3.63647 0.0,,
|
||||
-1829.84 -1570.08 2318.13,83 85 173,stand,22.511 50.6744 0.0,,
|
||||
-1796.41 -1426.91 2310.13,81 82 84 324 331,stand,30.0146 19.9896 0.0,,
|
||||
-1800.26 -1171.42 2310.13,81 87,stand,31.5802 86.2097 0.0,,
|
||||
-1845.17 -1013.7 2318.13,86 88 327 331,stand,18.1439 80.8374 0.0,,
|
||||
-1765.9 -230.874 2318.13,87 89 327,stand,13.6615 -91.5106 0.0,,
|
||||
-1533.68 -253.56 2318.13,88 90 327,stand,15.2325 -7.52014 0.0,,
|
||||
-1403.69 -270.483 2318.13,89 91,stand,15.2325 -7.52014 0.0,,
|
||||
-1262.19 -274.509 2318.13,90 92 326,stand,15.2325 -7.0752 0.0,,
|
||||
-1096.1 -290.72 2310.8,91 93 328 329,stand,32.1405 -174.271 0.0,,
|
||||
-1016.15 -233.045 2310.13,92 94,stand,12.431 -30.141 0.0,,
|
||||
-526.623 -278.061 2310.13,93 95 115 329,stand,10.415 -11.6675 0.0,,
|
||||
-367.703 -287.512 2310.13,94 96 109,stand,14.5569 -104.837 0.0,,
|
||||
-159.46 -299.157 2310.13,95 97 107 330,stand,18.0286 -167.102 0.0,,
|
||||
-33.2353 -320.0 2310.13,96 98,stand,23.5162 -72.3615 0.0,,
|
||||
69.1425 -389.409 2310.13,97 99 106 107,stand,16.908 -4.94385 0.0,,
|
||||
292.224 -378.36 2310.13,98 100,stand,17.0233 1.66443 0.0,,
|
||||
471.657 -461.155 2310.13,99 101,stand,15.2325 -25.2136 0.0,,
|
||||
981.733 -498.62 2310.13,100 102,stand,13.7769 179.352 0.0,,
|
||||
944.691 -669.229 2310.13,101 103 104,stand,21.1652 -8.97583 0.0,,
|
||||
890.772 -1009.24 2318.13,102,stand,15.6775 -114.802 0.0,,
|
||||
1654.88 -662.726 2316.22,102,stand,8.84949 179.011 0.0,,
|
||||
238.293 -507.499 2326.13,106,stand,24.6368 78.0359 0.0,,
|
||||
92.2415 -474.542 2310.13,98 105,climb,46.9226 76.2836 0.0,,
|
||||
-170.423 -534.09 2310.13,96 98 108 330,stand,21.8353 41.2317 0.0,,
|
||||
-54.8371 -605.51 2326.13,107 109 147,climb,21.1652 -5.02075 0.0,,
|
||||
-190.324 -681.685 2310.13,95 108 110 111 330,stand,17.4683 -3.90015 0.0,,
|
||||
-58.0561 -762.791 2326.13,109 149,stand,17.0233 -18.3472 0.0,,
|
||||
-186.1 -892.073 2310.13,109 112 113,stand,9.74487 0.131836 0.0,,
|
||||
-65.5178 -857.804 2326.13,111,stand,18.479 -3.12012 0.0,,
|
||||
-249.583 -1004.54 2318.13,111 114,stand,-4.2572 -60.4578 0.0,,
|
||||
-347.93 -865.681 2310.13,113 115 330,stand,19.259 -178.456 0.0,,
|
||||
-715.762 -741.534 2310.13,94 114 116 330,stand,12.6563 -109.473 0.0,,
|
||||
-974.959 -800.256 2310.13,115 117 326 328 333,stand,0.670166 -72.0428 0.0,,
|
||||
-931.402 -1268.67 2315.68,116 118 128 332 333,stand,8.84949 113.632 0.0,,
|
||||
-762.668 -1286.78 2318.13,117 119 127,stand,13.2166 86.3086 0.0,,
|
||||
-746.1 -1191.24 2318.13,118 120 125,stand,58.678 76.6791 0.0,,
|
||||
-724.494 -1080.98 2318.13,119 121,stand,28.3337 23.1482 0.0,,
|
||||
-578.361 -1074.26 2318.13,120 122 125,stand,23.6316 67.3792 0.0,,
|
||||
-581.114 -927.975 2318.13,121 123 124,stand,14.7821 173.765 0.0,,
|
||||
-696.959 -929.882 2318.13,122,stand,20.495 -27.8833 0.0,,
|
||||
-399.224 -973.558 2318.13,122,stand,15.9027 173.65 0.0,,
|
||||
-547.178 -1186.06 2318.13,119 121 126,stand,22.0605 -168.431 0.0,,
|
||||
-450.877 -1281.84 2318.13,125 127,stand,30.6848 -144.575 0.0,,
|
||||
-541.206 -1323.18 2318.13,118 126,stand,24.6368 -157.006 0.0,,
|
||||
-950.337 -1416.45 2310.13,117 129 171 172 332,stand,4.70215 15.6775 0.0,,
|
||||
-660.431 -1469.25 2310.13,128 130 171,stand,13.9966 -8.39905 0.0,,
|
||||
-361.122 -1443.04 2310.13,129 131 169 171,stand,23.8513 71.109 0.0,,
|
||||
-308.203 -1239.46 2318.13,130 132,stand,24.3018 20.8301 0.0,,
|
||||
-184.48 -1225.66 2310.13,131 133 169,stand,21.6156 86.1218 0.0,,
|
||||
-16.6765 -1028.18 2318.13,132 134,stand,29.8993 -127.656 0.0,,
|
||||
161.796 -1039.3 2318.13,133 135,stand,19.4843 -107.611 0.0,,
|
||||
154.083 -1245.15 2318.13,134 136 169,stand,20.6049 -55.7611 0.0,,
|
||||
461.873 -1261.9 2318.13,135 137 169,stand,11.3104 99.1132 0.0,,
|
||||
415.36 -1105.04 2326.13,136 138 139,stand,20.0446 142.004 0.0,,
|
||||
809.762 -1098.61 2318.13,137 162 167,stand,15.2325 -130.688 0.0,,
|
||||
290.364 -1043.32 2326.13,137 140,stand,10.7501 -22.8351 0.0,,
|
||||
333.81 -835.408 2326.13,139 141 145,stand,24.527 75.7068 0.0,,
|
||||
517.076 -854.929 2326.13,140 142 143,stand,19.4843 28.3392 0.0,,
|
||||
810.585 -942.093 2326.13,141,stand,12.6563 -7.38281 0.0,,
|
||||
580.712 -663.457 2326.13,141 144,stand,17.5836 -134.681 0.0,,
|
||||
411.761 -607.476 2326.13,143,stand,13.7769 -29.0753 0.0,,
|
||||
203.484 -778.837 2326.13,140 146 148,climb,17.3584 -166.146 0.0,,
|
||||
171.674 -600.307 2326.13,145 147,stand,19.259 -100.97 0.0,,
|
||||
-5.19489 -579.065 2326.13,108 146,climb,18.2538 172.244 0.0,,
|
||||
86.3666 -805.629 2326.13,145 149,stand,16.7981 10.5414 0.0,,
|
||||
-19.4313 -760.055 2326.13,110 148,stand,11.3104 168.217 0.0,,
|
||||
4347.41 -3184.41 2311.66,36 178 179 238,stand,14.892 -119.224 0.0,,
|
||||
4724.02 -2748.9 2318.13,152 178 238,stand,20.9399 171.491 0.0,,
|
||||
4479.04 -2297.91 2357.15,151 153,stand,16.7981 178.77 0.0,,
|
||||
4012.73 -2045.26 2369.74,152 154,stand,14.6722 155.814 0.0,,
|
||||
3526.98 -2044.74 2323.04,153 155 177,stand,15.3424 169.14 0.0,,
|
||||
3128.43 -1991.66 2318.13,154 156 176,stand,15.0073 -78.2062 0.0,,
|
||||
2867.86 -1801.5 2331.93,155 157 175 176,stand,13.2166 136.362 0.0,,
|
||||
2554.53 -1370.51 2335.62,156 158,stand,12.2058 -80.8923 0.0,,
|
||||
2522.62 -1066.87 2323.51,157 159 175,stand,19.0393 129.979 0.0,,
|
||||
2075.13 -969.161 2314.79,158 160 161,stand,22.2858 166.487 0.0,,
|
||||
1819.35 -917.321 2318.13,159 162,stand,20.0446 -75.2563 0.0,,
|
||||
1921.65 -1105.65 2318.13,159 162 163 175,stand,15.4523 -99.3329 0.0,,
|
||||
1811.76 -1180.97 2318.13,138 160 161,stand,26.3177 176.001 0.0,,
|
||||
1871.65 -1691.66 2318.13,161 164 165,stand,22.511 -108.259 0.0,,
|
||||
1745.44 -1677.39 2310.13,163 165,stand,30.0146 -13.667 0.0,,
|
||||
1777.55 -1852.79 2318.13,163 164 166 174 233 234,stand,43.0005 14.0735 0.0,,
|
||||
1476.18 -1828.74 2318.13,165 167 233,stand,41.9952 -177.836 0.0,,
|
||||
1169.39 -1804.44 2312.26,138 166 168,stand,26.4276 23.703 0.0,,
|
||||
804.055 -1776.84 2318.13,167 169,stand,18.924 168.613 0.0,,
|
||||
222.241 -1728.29 2311.06,130 132 135 136 168 170,stand,20.1599 172.084 0.0,,
|
||||
-214.864 -1712.49 2318.13,169 171,stand,25.6476 -21.5387 0.0,,
|
||||
-722.263 -1661.52 2318.13,128 129 130 170 172,stand,12.5409 176.677 0.0,,
|
||||
-1160.27 -1633.01 2310.13,128 171 173 227 324,stand,21.8353 173.655 0.0,,
|
||||
-1577.15 -1592.84 2318.13,84 172 324,stand,20.2698 177.687 0.0,,
|
||||
2356.81 -1892.65 2315.75,165 175 176 234,stand,19.0393 129.825 0.0,,
|
||||
2297.1 -1333.46 2318.13,156 158 161 174,stand,24.1864 136.697 0.0,,
|
||||
2665.24 -1959.47 2318.13,155 156 174,stand,20.3796 33.2941 0.0,,
|
||||
3957.91 -2292.61 2318.13,154 178,stand,18.0286 -26.7297 0.0,,
|
||||
4490.79 -2584.1 2318.13,150 151 177 237,stand,18.1439 -38.2654 0.0,,
|
||||
4080.8 -3293.0 2318.13,36 150 180 237,stand,19.3744 147.074 0.0,,
|
||||
3764.53 -3077.73 2318.13,179 181 239,stand,16.1279 159.84 0.0,,
|
||||
3263.91 -2855.22 2318.13,180 182,stand,14.6722 159.28 0.0,,
|
||||
2741.88 -2733.79 2318.13,181 183,stand,17.0233 178.989 0.0,,
|
||||
2453.59 -2708.88 2318.13,182 184,stand,22.0605 172.491 0.0,,
|
||||
2278.48 -2682.28 2318.13,183 185,stand,19.1492 -122.108 0.0,,
|
||||
1886.13 -2655.49 2312.13,184 186 234,stand,15.2325 -166.003 0.0,,
|
||||
1613.11 -2627.19 2312.13,185 187 233 234,stand,15.5676 -107.325 0.0,,
|
||||
1392.68 -2617.13 2318.13,186 188,stand,15.0073 176.748 0.0,,
|
||||
1087.93 -2597.45 2318.13,187 189,stand,15.1172 168.684 0.0,,
|
||||
963.142 -2585.19 2318.13,188 190,stand,17.3584 175.627 0.0,,
|
||||
707.371 -2574.15 2318.13,189 191,stand,18.2538 170.03 0.0,,
|
||||
329.898 -2543.94 2317.77,190 192,stand,15.6775 179.55 0.0,,
|
||||
16.9461 -2517.12 2318.13,191 193,stand,17.3584 173.947 0.0,,
|
||||
-404.841 -2493.11 2315.14,192 194,stand,14.7821 176.188 0.0,,
|
||||
-875.744 -2457.22 2318.13,193 195 227,stand,12.431 177.418 0.0,,
|
||||
-1472.44 -2413.28 2318.13,194 196 227,stand,11.0852 -31.5088 0.0,,
|
||||
-1994.68 -2367.17 2318.13,195 197 226,stand,10.3052 178.094 0.0,,
|
||||
-2346.84 -2355.41 2318.13,196 198 226 334,stand,6.49292 -15.1611 0.0,,
|
||||
-2805.07 -2344.48 2318.13,197 199,stand,7.50366 -169.59 0.0,,
|
||||
-3233.32 -2520.23 2318.13,198 200,stand,7.50366 -145.849 0.0,,
|
||||
-3559.58 -2940.77 2318.13,199 201 347,stand,5.15259 -112.588 0.0,,
|
||||
-3670.98 -3460.37 2318.13,200 202 347,stand,4.92737 -92.3181 0.0,,
|
||||
-3669.62 -3655.66 2318.13,201 203 345,stand,12.5409 -41.0284 0.0,,
|
||||
-3656.63 -3777.25 2318.13,202 204 347,stand,8.73413 -10.1239 0.0,,
|
||||
-3631.22 -3947.32 2318.13,203 205,stand,5.03723 -11.6895 0.0,,
|
||||
-3638.21 -4110.87 2318.13,204 206,stand,5.71289 -6.427 0.0,,
|
||||
-3620.0 -4226.23 2318.13,205 207 401,stand,8.28918 -27.1417 0.0,,
|
||||
-3619.71 -4740.79 2318.13,206 208 401,stand,10.3052 -92.0929 0.0,,
|
||||
-3645.84 -5209.85 2318.13,207 209 393,stand,7.27844 -53.7946 0.0,,
|
||||
-3655.43 -5584.0 2318.13,56 208 210 220,stand,5.93811 -89.2969 0.0,,
|
||||
-3553.47 -5954.47 2318.13,209 211 219,stand,8.28918 -55.1404 0.0,,
|
||||
-3288.2 -6224.6 2315.41,210 212 214,stand,8.73413 -38.2324 0.0,,
|
||||
-3092.26 -6176.09 2319.81,211 213,stand,11.8707 2.64771 0.0,,
|
||||
-2847.6 -6312.19 2328.8,58 59 212,stand,9.74487 -26.5814 0.0,,
|
||||
-3670.63 -6570.32 2318.13,59 211 215 219,stand,20.6049 -127.255 0.0,,
|
||||
-3634.06 -6918.28 2312.1,61 214 218 219,stand,13.6615 125.239 0.0,,
|
||||
-5048.18 -6496.31 2312.85,65 217 219,stand,28.2184 127.848 0.0,,
|
||||
-5048.05 -6824.18 2316.43,62 216 218,stand,30.1245 -105.947 0.0,,
|
||||
-4255.55 -7432.87 2310.13,61 62 215 217 219,stand,26.9879 155.923 0.0,,
|
||||
-4264.96 -6519.65 2310.13,62 66 210 214 215 216 218 220,stand,16.5729 -94.444 0.0,,
|
||||
-4238.02 -5502.18 2310.13,66 209 219 221,stand,21.3904 121.58 0.0,,
|
||||
-4234.14 -4107.34 2310.13,220 222,stand,9.06921 86.9348 0.0,,
|
||||
-4384.71 -3056.21 2310.13,221 223,stand,14.892 97.1246 0.0,,
|
||||
-4526.55 -2198.83 2310.13,222 224,stand,19.1492 102.843 0.0,,
|
||||
-3946.84 -2029.55 2310.47,223 225,stand,17.2485 12.5024 0.0,,
|
||||
-3236.96 -1974.07 2323.85,224 226,stand,11.9806 5.7843 0.0,,
|
||||
-2260.66 -1927.98 2326.13,78 83 196 197 225 227,stand,12.5409 -2.72461 0.0,,
|
||||
-1166.7 -2012.95 2327.93,172 194 195 226 228,stand,15.3424 -6.08643 0.0,,
|
||||
-440.324 -2101.86 2327.5,227 229 231,stand,15.9027 -6.31165 0.0,,
|
||||
-153.496 -2220.75 2321.36,228 230,stand,20.9399 151.479 0.0,,
|
||||
168.918 -2156.52 2318.27,229 231 232,stand,17.4683 21.3464 0.0,,
|
||||
-244.584 -1958.65 2322.91,228 230,stand,12.6563 159.763 0.0,,
|
||||
945.497 -2189.52 2317.9,230 233,stand,15.9027 -4.48792 0.0,,
|
||||
1635.12 -2242.08 2319.08,165 166 186 232 234,stand,13.7769 -3.25745 0.0,,
|
||||
2083.62 -2280.36 2316.72,165 174 185 186 233 235,stand,16.0126 -7.39929 0.0,,
|
||||
2952.42 -2358.72 2321.93,234 236,stand,24.4116 -9.19556 0.0,,
|
||||
3656.64 -2589.3 2319.92,235 237,stand,19.7095 -25.8783 0.0,,
|
||||
4162.25 -2864.77 2319.75,178 179 236 238,stand,21.8353 -37.749 0.0,,
|
||||
4466.31 -3079.49 2311.35,150 151 237,stand,23.8513 150.018 0.0,,
|
||||
3711.71 -3514.2 2310.13,180 240,stand,23.1812 -92.8125 0.0,,
|
||||
3255.48 -3903.8 2310.13,239 241 244 245,stand,17.5836 -113.604 0.0,,
|
||||
3557.4 -4291.41 2310.13,240 242,stand,16.5729 -46.972 0.0,,
|
||||
3409.82 -4842.68 2306.76,0 32 241 243,stand,12.6563 -161.202 0.0,,
|
||||
2828.49 -4702.18 2305.86,0 242 244 253,stand,19.3744 103.387 0.0,,
|
||||
2846.09 -4150.51 2304.99,240 243 245 249 251,stand,14.3317 89.0552 0.0,,
|
||||
2834.57 -3828.13 2299.35,240 244 246 248,stand,17.0233 -91.6589 0.0,,
|
||||
2844.63 -3278.42 2300.09,245 247,stand,19.7095 90.1703 0.0,,
|
||||
2243.54 -3214.64 2309.59,246 248,stand,15.0073 -175.199 0.0,,
|
||||
2202.78 -3695.38 2302.61,245 247 249,stand,11.3104 -86.9513 0.0,,
|
||||
2292.94 -4162.98 2303.9,244 248 250 251,stand,12.876 -78.5522 0.0,,
|
||||
1987.14 -4426.14 2309.32,249 251,stand,8.39905 -51.004 0.0,,
|
||||
2366.12 -4480.7 2302.13,244 249 250 252,stand,16.2378 -28.0481 0.0,,
|
||||
2055.3 -4965.99 2306.04,41 251 253 254,stand,9.4043 -32.525 0.0,,
|
||||
2690.75 -4857.74 2302.13,40 243 252,stand,15.6775 7.89917 0.0,,
|
||||
1782.31 -5262.0 2303.22,252 255 258,stand,8.06396 146.871 0.0,,
|
||||
1515.63 -4829.35 2310.13,254 256 257 263,stand,9.51965 115.741 0.0,,
|
||||
1726.48 -4516.64 2320.92,255,stand,8.95935 -126.821 0.0,,
|
||||
1181.18 -4560.84 2304.67,255 263,stand,20.0446 57.6947 0.0,,
|
||||
1930.87 -5714.95 2302.13,42 254 259,stand,12.2058 178.38 0.0,,
|
||||
1474.55 -5655.46 2302.09,258 260,stand,13.1012 176.699 0.0,,
|
||||
1289.79 -5731.95 2304.8,259 261 266,stand,20.7202 141.312 0.0,,
|
||||
1034.01 -5396.16 2302.91,260 262 263 264 266,stand,17.6935 124.739 0.0,,
|
||||
1212.08 -5257.94 2310.13,261 263,stand,15.2325 46.0107 0.0,,
|
||||
1038.63 -5046.62 2302.52,255 257 261 262 309,stand,36.1725 -176.358 0.0,,
|
||||
772.675 -5552.12 2310.13,261 265,stand,22.1759 -168.854 0.0,,
|
||||
636.658 -5553.91 2318.13,264 291 294,stand,22.3956 10.1733 0.0,,
|
||||
1041.01 -5881.92 2309.68,44 260 261 271,stand,27.5482 18.3142 0.0,,
|
||||
415.015 -5696.28 2308.63,269 270 271 291,stand,20.495 -16.5125 0.0,,
|
||||
532.525 -5636.28 2616.13,269 272 280,climb,50.2844 -90.9833 0.0,,
|
||||
538.217 -5661.68 2308.63,267 268 270,climb,-78.6127 87.5281 0.0,,
|
||||
402.217 -5830.07 2308.13,267 269 271,stand,17.4683 18.7646 0.0,,
|
||||
849.22 -5832.31 2308.13,266 267 270,stand,27.1033 -0.0439453 0.0,,
|
||||
667.341 -5495.08 2614.13,268 273 280,stand,28.1128 -168.206 0.0,,
|
||||
668.677 -5033.18 2614.13,272 274 278 281,stand,11.4246 -94.1089 0.0,,
|
||||
988.128 -4813.07 2614.13,273 275,stand,21.3947 -175.935 0.0,,
|
||||
954.097 -4451.5 2614.13,274 276,stand,22.0648 -176.605 0.0,,
|
||||
609.805 -4516.51 2614.13,275 277,stand,13.5559 -143.679 0.0,,
|
||||
181.431 -4459.21 2614.13,276 278 284 289,stand,22.29 170.739 0.0,,
|
||||
195.933 -5082.75 2614.13,273 277 279 281 283 290,stand,17.0276 0.889893 0.0,,
|
||||
183.764 -5577.25 2614.13,278 280 290,stand,23.5205 -40.545 0.0,,
|
||||
467.877 -5549.32 2614.13,268 272 279,stand,39.4232 -87.6105 0.0,,
|
||||
388.641 -5224.47 2615.13,273 278 282 290,climb,82.8741 2.12585 0.0,,
|
||||
403.126 -5223.71 2322.63,281 295,climb,-74.6918 179.736 0.0,,
|
||||
156.125 -5122.0 2614.13,278,stand,30.5737 -179.398 0.0,,
|
||||
156.125 -4544.76 2614.13,277 285,stand,24.1907 -179.288 0.0,,
|
||||
36.8032 -4524.45 2578.13,284 286 289,stand,29.2334 160.706 0.0,,
|
||||
26.3158 -5070.42 2578.13,285 287,stand,30.354 -125.944 0.0,,
|
||||
106.742 -5122.54 2578.13,286 288,stand,34.1608 139.875 0.0,,
|
||||
111.875 -5191.88 2578.13,287 290,stand,23.4106 -68.8318 0.0,,
|
||||
111.875 -4480.67 2606.13,277 285,stand,23.1854 2.84302 0.0,,
|
||||
134.431 -5202.36 2641.13,278 279 281 288,stand,66.8616 2.16736 0.0,,
|
||||
416.064 -5571.31 2318.13,265 267 292 295,stand,30.4639 89.5581 0.0,,
|
||||
207.832 -5604.63 2318.13,291 293,stand,18.4833 1.12366 0.0,,
|
||||
189.515 -5694.17 2308.13,292 415 416 417,stand,25.5365 100.869 0.0,,
|
||||
681.212 -5230.42 2318.13,265 295 296,stand,23.7457 95.0403 0.0,,
|
||||
484.602 -5276.41 2318.63,282 291 294,stand,17.0276 -97.4292 0.0,,
|
||||
670.25 -5077.33 2310.13,294 297 308,stand,18.3734 -176.053 0.0,,
|
||||
548.493 -5065.99 2318.13,296 298 303 310,stand,22.0648 18.2129 0.0,,
|
||||
409.226 -5012.7 2318.13,297 299 300,stand,24.306 80.9229 0.0,,
|
||||
430.158 -4728.46 2318.13,298,stand,22.8503 86.1853 0.0,,
|
||||
289.584 -5027.18 2318.13,298 301,stand,26.9922 8.02856 0.0,,
|
||||
273.126 -4699.35 2318.13,300 302 313,stand,34.4958 -132.816 0.0,,
|
||||
416.994 -4598.59 2318.13,301 303 313,stand,26.9922 -126.581 0.0,,
|
||||
578.079 -4619.4 2318.13,297 302 304,stand,27.5525 -89.9585 0.0,,
|
||||
745.328 -4553.88 2310.13,303 305 307 318,stand,33.9355 117.738 0.0,,
|
||||
795.813 -4448.63 2310.13,304 306 307,stand,34.386 68.2446 0.0,,
|
||||
818.09 -4355.03 2310.13,305 321 322,stand,35.8417 83.252 0.0,,
|
||||
909.156 -4578.74 2310.13,304 305 308,stand,34.386 109.68 0.0,,
|
||||
888.717 -5000.07 2310.13,296 307 309,stand,20.274 122.671 0.0,,
|
||||
960.287 -5054.33 2310.13,263 308,stand,55.3259 85.7513 0.0,,
|
||||
371.319 -5149.44 2318.13,297 311,stand,29.0082 48.3539 0.0,,
|
||||
181.842 -5158.2 2310.13,310 312 320,stand,29.7937 -100.555 0.0,,
|
||||
96.3621 -5123.96 2310.13,311 313 319,stand,31.0242 90.459 0.0,,
|
||||
117.666 -4647.45 2310.13,301 302 312 314,stand,35.9515 18.4546 0.0,,
|
||||
195.205 -4515.8 2310.13,313 315,stand,20.7245 -105.065 0.0,,
|
||||
374.639 -4456.05 2310.13,314 316 317,stand,29.2334 75.3418 0.0,,
|
||||
379.828 -4320.62 2310.13,315,stand,30.1288 -126.087 0.0,,
|
||||
405.198 -4536.21 2310.13,315 318,stand,37.8577 100.121 0.0,,
|
||||
641.479 -4519.66 2310.13,304 317,stand,34.1608 -75.6982 0.0,,
|
||||
-2.99647 -5158.21 2302.13,312 419 420,stand,23.3008 -156.7 0.0,,
|
||||
221.971 -5374.84 2310.13,311,stand,22.1802 99.7479 0.0,,
|
||||
558.708 -4286.67 2310.13,306,stand,13.891 36.2469 0.0,,
|
||||
1000.88 -4268.03 2310.13,306,stand,15.907 8.80859 0.0,,
|
||||
122.874 -5225.4 2308.13,324 415 419,stand,14.4568 18.2404 0.0,,
|
||||
-1449.28 -1422.54 2310.13,85 172 173 323 325,stand,21.0651 74.9133 0.0,,
|
||||
-1384.06 -1109.45 2311.13,324 326 327 331 332 333,stand,14.4568 74.1278 0.0,,
|
||||
-1326.21 -810.762 2310.13,91 116 325 327,stand,18.8239 94.8425 0.0,,
|
||||
-1525.97 -535.681 2310.13,87 88 89 325 326 328 331,stand,18.269 128.219 0.0,,
|
||||
-1134.7 -497.224 2310.13,92 116 327 329,stand,14.9072 -7.17102 0.0,,
|
||||
-804.125 -413.079 2310.13,92 94 328 330,stand,21.2903 2.01355 0.0,,
|
||||
-452.934 -650.265 2310.13,96 107 109 114 115 329,stand,13.0011 -30.8026 0.0,,
|
||||
-1624.52 -1042.26 2311.13,85 87 325 327,stand,8.52417 59.4226 0.0,,
|
||||
-1176.49 -1212.03 2318.13,117 128 325,stand,37.3029 142.93 0.0,,
|
||||
-1173.25 -1107.43 2318.13,116 117 325,stand,33.7213 -123.033 0.0,,
|
||||
-2369.82 -2606.04 2368.64,197 335,stand,22.8613 171.494 0.0,,
|
||||
-2370.67 -2849.88 2358.13,334 336 375 376,stand,24.762 118.529 0.0,,
|
||||
-2781.99 -2859.84 2358.13,335 337,stand,12.7814 -168.901 0.0,,
|
||||
-3042.15 -3014.17 2358.13,336 338,stand,9.76013 -103.84 0.0,,
|
||||
-3150.17 -3271.58 2358.13,337 339 346 347,stand,10.6555 -88.5028 0.0,,
|
||||
-3082.4 -3540.18 2358.13,338 340 345 346,stand,14.1272 -78.5437 0.0,,
|
||||
-3129.25 -3888.99 2358.13,339 341 345 348,stand,19.7247 -106.762 0.0,,
|
||||
-3056.2 -4196.46 2358.13,340 342 364,stand,15.4675 -62.4158 0.0,,
|
||||
-2754.69 -4405.35 2358.13,341 343 364 400,stand,12.5562 -21.5411 0.0,,
|
||||
-2371.1 -4491.2 2358.13,342 344,stand,13.1165 -0.826416 0.0,,
|
||||
-2099.58 -4483.19 2358.03,343 366 367,stand,12.6715 28.7378 0.0,,
|
||||
-3273.45 -3695.08 2358.13,202 339 340 346 347,stand,15.6927 107.806 0.0,,
|
||||
-3277.68 -3506.78 2358.13,338 339 345 347,stand,17.8186 64.696 0.0,,
|
||||
-3470.76 -3508.81 2359.9,200 201 203 338 345 346,stand,23.5315 -17.0422 0.0,,
|
||||
-2966.17 -3670.28 2358.13,340 349,stand,24.317 66.5582 0.0,,
|
||||
-2957.11 -3596.48 2366.13,348 350,stand,28.0139 -37.5867 0.0,,
|
||||
-2887.13 -3455.76 2371.39,349 351,climb,-85.0 -2.08435 0.0,,
|
||||
-2875.64 -3456.96 2594.13,350 353 359,climb,79.397 -178.679 0.0,,
|
||||
-2520.68 -3185.22 2594.13,353 354,stand,15.4565 38.9825 0.0,,
|
||||
-2933.51 -3193.96 2594.13,351 352,stand,7.50244 139.101 0.0,,
|
||||
-2516.45 -3551.26 2594.13,352 355 358,stand,15.1215 -15.213 0.0,,
|
||||
-2513.24 -3978.39 2594.13,354 356,stand,12.4298 -49.2596 0.0,,
|
||||
-2709.07 -3909.02 2594.13,355 357 358,stand,9.29871 90.6897 0.0,,
|
||||
-2898.29 -3973.68 2594.13,356 358 359,stand,17.2473 -133.14 0.0,,
|
||||
-2714.93 -3718.2 2594.13,354 356 357 359,stand,20.0488 52.8693 0.0,,
|
||||
-2890.13 -3611.61 2594.13,351 357 358,stand,20.3839 -65.448 0.0,,
|
||||
-2652.86 -4041.65 2366.13,363 364,stand,28.75 172.477 0.0,,
|
||||
-2390.93 -4079.71 2360.53,362 365 366 368,stand,25.9869 172.115 0.0,,
|
||||
-2819.42 -4065.4 2364.13,341 342,stand,17.3627 -99.2474 0.0,,
|
||||
-2516.12 -4190.7 2363.35,366,stand,35.0562 129.62 0.0,,
|
||||
-2248.05 -4256.38 2358.13,344 363 365 367,stand,16.4673 117.452 0.0,,
|
||||
-1636.2 -4483.23 2341.82,344 366 381 407,stand,6.61255 162.134 0.0,,
|
||||
-2392.58 -3683.15 2366.13,363 369,stand,18.1482 90.1624 0.0,,
|
||||
-2452.02 -3423.23 2366.13,368 370,stand,62.7197 -72.8473 0.0,,
|
||||
-2402.54 -3343.6 2366.13,369 371 377,stand,24.6411 67.58 0.0,,
|
||||
-2430.45 -3216.62 2366.13,370 372 377,stand,23.8556 86.8335 0.0,,
|
||||
-2441.1 -3111.05 2366.13,371 373,stand,21.0596 168.132 0.0,,
|
||||
-2853.87 -3126.76 2366.13,372,stand,40.3186 -138.683 0.0,,
|
||||
-2081.22 -3117.92 2358.13,375 376 377 378,stand,10.3094 81.9611 0.0,,
|
||||
-2141.51 -2835.54 2358.13,335 374 378,stand,23.6304 -173.669 0.0,,
|
||||
-2308.5 -3016.67 2358.13,335 377,stand,23.1854 85.3174 0.0,,
|
||||
-2334.47 -3243.09 2366.13,370 371 374 376,stand,22.0648 176.328 0.0,,
|
||||
-1686.15 -2949.4 2358.13,374 375 379,stand,22.5153 -167.269 0.0,,
|
||||
-1386.48 -3287.8 2358.13,378 380,stand,19.7137 -58.7628 0.0,,
|
||||
-1395.78 -3734.83 2351.37,379 381,stand,19.3787 -103.889 0.0,,
|
||||
-1593.4 -4093.91 2358.13,367 380 382,stand,19.494 -123.373 0.0,,
|
||||
-1340.14 -4340.35 2337.22,381 383 408,stand,18.2581 -8.69812 0.0,,
|
||||
-910.06 -4372.15 2305.9,382 384 408,stand,14.6765 12.8021 0.0,,
|
||||
-795.648 -4724.29 2316.05,383 385 409,stand,15.7971 -75.105 0.0,,
|
||||
-950.124 -5093.28 2312.6,384 386 408 409 410,stand,17.8131 -135.914 0.0,,
|
||||
-833.773 -5261.01 2310.13,385 387,stand,16.0223 -69.6173 0.0,,
|
||||
-811.303 -5681.83 2310.13,386 388 410,stand,15.6818 -93.7982 0.0,,
|
||||
-856.859 -5955.05 2310.13,48 387,stand,17.478 -124.598 0.0,,
|
||||
-1449.49 -4886.96 2310.13,390 407 410 411,stand,19.3787 -81.3287 0.0,,
|
||||
-1978.75 -5302.58 2310.13,389 391 394,stand,16.4673 -141.907 0.0,,
|
||||
-2379.25 -5224.23 2310.13,390 392 394 399,stand,17.1375 152.466 0.0,,
|
||||
-2831.2 -5097.87 2310.13,391 393 399 400,stand,15.0116 -166.989 0.0,,
|
||||
-3186.83 -5127.95 2310.13,55 208 392 401,stand,18.9337 -155.684 0.0,,
|
||||
-2153.6 -5502.95 2318.13,390 391 395 399,stand,19.3787 -124.999 0.0,,
|
||||
-2155.23 -5795.79 2318.13,394 396 398,stand,21.7297 77.6544 0.0,,
|
||||
-2256.08 -5951.58 2318.13,395 397,stand,19.3787 61.5649 0.0,,
|
||||
-2203.47 -6099.74 2310.13,50 51 396,stand,28.7885 -49.9738 0.0,,
|
||||
-2505.92 -5790.45 2318.13,51 53 395 399,stand,23.3008 168.731 0.0,,
|
||||
-2757.47 -5518.09 2318.13,54 391 392 394 398,stand,22.6251 115.096 0.0,,
|
||||
-2828.88 -4684.67 2332.82,342 392 401 402,stand,11.9904 126.708 0.0,,
|
||||
-3254.52 -4644.31 2350.88,206 207 393 400,stand,20.4993 -86.1407 0.0,,
|
||||
-2606.04 -4715.76 2308.62,403,stand,10.0842 18.2623 0.0,,
|
||||
-2426.14 -4698.11 2305.45,402 404,stand,11.2048 0.00854492 0.0,,
|
||||
-2255.11 -4696.82 2306.54,403 405,stand,11.2048 -0.667114 0.0,,
|
||||
-2065.87 -4700.23 2297.69,404 406 411,stand,10.6445 57.4561 0.0,,
|
||||
-1876.08 -4686.77 2304.5,405 407,stand,14.1162 2.81006 0.0,,
|
||||
-1508.26 -4670.83 2307.3,367 389 406 408,stand,16.0223 -5.8197 0.0,,
|
||||
-1177.65 -4699.14 2317.57,382 383 385 407 409 410,stand,17.8131 -3.35327 0.0,,
|
||||
-1002.08 -4797.57 2322.91,384 385 408,stand,22.0703 -108.921 0.0,,
|
||||
-1217.9 -5299.48 2310.13,385 387 389 411 412 414,stand,21.8451 -174.531 0.0,,
|
||||
-1687.28 -5070.94 2310.13,389 405 410,stand,13.4515 -37.9822 0.0,,
|
||||
-1345.15 -5475.38 2324.0,413,stand,22.9657 39.2902 0.0,,
|
||||
-1478.01 -5589.35 2351.67,412,stand,23.3008 -165.533 0.0,,
|
||||
-1083.83 -5615.87 2318.13,410,stand,23.4161 -163.287 0.0,,
|
||||
117.097 -5673.37 2308.13,293 323 417,stand,28.3435 78.6926 0.0,,
|
||||
162.461 -5982.94 2305.53,45 46 293 417,stand,20.3949 -19.5142 0.0,,
|
||||
103.908 -5779.35 2308.13,293 416 418,stand,21.2848 -79.4281 0.0,,
|
||||
-95.5989 -5789.82 2302.13,46 417 419,stand,19.0491 79.2529 0.0,,
|
||||
-6.29767 -5234.39 2302.13,319 323 418,stand,25.3168 40.2679 0.0,,
|
||||
-34.6349 -5120.76 2303.11,319 421,stand,30.8044 -22.3267 0.0,,
|
||||
-124.957 -4849.31 2308.13,420,stand,21.4001 165.589 0.0,,
|
||||
-28.8898 -4445.12 2308.13,421,stand,24.4214 5.672 0.0,,
|
||||
118.874 -4451.81 2308.13,420,stand,23.3008 74.765 0.0,,
|
||||
|
@@ -0,0 +1,388 @@
|
||||
387
|
||||
1896.29 1372.49 -63.875,1 109 238 260 261 262 384,stand,,,
|
||||
2410.13 1389.51 -63.875,0 2 253 260 265 272,stand,,,
|
||||
2611.81 1826.16 -48.419,1 251 252 253,stand,,,
|
||||
2177.11 2130.8 -63.875,4 18 127 249 250 252 259,stand,,,
|
||||
1953.2 2279.31 -63.875,3 5 127 248 249,stand,,,
|
||||
1616.33 2232.19 -3.875,4 6 10,stand,,,
|
||||
1366.59 2478.79 -3.875,5 7,stand,,,
|
||||
1106.62 2352.79 -3.875,6 8,stand,,,
|
||||
1033.62 2124.98 -3.875,7 9 11,stand,,,
|
||||
1240.5 1904.95 -3.875,8 10,stand,,,
|
||||
1533.25 1960.07 -3.875,9 5,stand,,,
|
||||
891.122 2103.49 -3.875,8 12,stand,,,
|
||||
920.505 1852.73 -3.875,11 13 17,stand,,,
|
||||
454.062 1790.85 8.71387,12 232 231,stand,,,
|
||||
107.625 1317.98 -31.875,15 221 225 228 232,stand,,,
|
||||
337.67 1096.27 -63.875,14 16 102 223 227,stand,,,
|
||||
664.742 1396.8 -63.875,15 17 113 227 228,stand,,,
|
||||
971.498 1512.76 -63.875,16 12 111 239 243,stand,,,
|
||||
1840.58 1863.01 -63.875,3 246 245 127 259 262 383,stand,,,
|
||||
2661.23 1128.84 -62.8848,20 272 273 274,stand,,,
|
||||
3035.08 778.014 -55.2716,19 21 275 301 302 304,stand,,,
|
||||
2812.8 585.39 -51.875,20 22 42 130 275 369,stand,,,
|
||||
2450.11 724.785 -63.875,21 23 369,stand,,,
|
||||
2143.43 954.41 -63.875,22 24 276,stand,,,
|
||||
1944.81 746.156 -63.875,23 25 28 277,stand,,,
|
||||
1923.21 571.454 -39.875,24 26 269,stand,,,
|
||||
2030.82 385.415 -63.875,25 27 368,stand,,,
|
||||
2306.85 194.756 -63.875,26 35 278 368,stand,,,
|
||||
2272.95 507.299 -63.875,24 29 368,stand,,,
|
||||
2421.51 548.867 -66.8462,28 30,stand,,,
|
||||
2543.77 454.032 -27.9903,29 31,stand,,,
|
||||
2251 84.2754 126.125,30 32 279,stand,,,
|
||||
1974.42 290.231 126.125,31 33 281,stand,,,
|
||||
2038.11 367.141 128.125,32 34 286,stand,,,
|
||||
1965.85 814.585 128.125,33 36 284 283 285 288,stand,,,
|
||||
2510 500.759 128.125,36 27 292,stand,,,
|
||||
2308.37 602.376 128.125,35 34 288 289 290,stand,,,
|
||||
2912.3 178.256 100.467,38 129 292,stand,,,
|
||||
3074.3 47.4363 42.5222,37 39 131,stand,,,
|
||||
2773.63 -206.986 -45.4839,38 40 62 295,stand,,,
|
||||
2961.44 -323.943 -53.7632,39 41 44 56 306 308,stand,,,
|
||||
3274.32 171.371 -60.8485,40 42 43 307,stand,,,
|
||||
2985.63 464.971 -53.7425,41 21 304,stand,,,
|
||||
3451.16 429.082 -47.0662,41 299 296 302 303 304,stand,,,
|
||||
2813.58 -878.7 -43.2767,40 308 56 309 313 310,stand,,,
|
||||
2443.66 -1346.05 -25.4662,58 313 316 317 314,stand,,,
|
||||
2124.14 -1844.61 -50.6304,47 64 317 318 314 320,stand,,,
|
||||
1752.99 -2107.98 -17.7433,46 48 51 63 320 322,stand,,,
|
||||
1882.16 -1864.84 57.1378,47 49,stand,,,
|
||||
2223.91 -1410.75 121.911,48 50,stand,,,
|
||||
2531.96 -999.769 244.065,49 326,stand,,,
|
||||
1801.13 -2632 42.694,47 52 321 322 324 325,stand,,,
|
||||
2366.95 -2503.72 -35.1275,51 53 323,stand,,,
|
||||
2803.87 -2234.76 -53.0336,52 54,stand,,,
|
||||
3245.54 -1918.44 -62.3579,53 55 312,stand,,,
|
||||
2765.4 -1695.82 9.55535,54 315 316,stand,,,
|
||||
2629.45 -661.84 -32.5459,40 57 44,stand,,,
|
||||
2472.88 -849.104 -34.2909,56 58 313 360,stand,,,
|
||||
2220.79 -1180.11 -17.6757,57 45,stand,,,
|
||||
2225.98 -704.74 -17.875,60 360,stand,,,
|
||||
2307.66 -587.213 -17.875,59 359 361 364,stand,,,
|
||||
2582.16 -270.854 -17.875,62 364,stand,,,
|
||||
2684.59 -344.943 -45.875,61 39 361,stand,,,
|
||||
1503.84 -2078.76 -28.0403,47 75 322 329 328 332,stand,,,
|
||||
1849.59 -1669.6 -47.8914,46 329,stand,,,
|
||||
1050.01 -1751.13 -56.4737,66 74 137 146 147 328 334,stand,,,
|
||||
1199.85 -1555.74 48.125,65 152 153,stand,,,
|
||||
764.237 -1232.65 102.125,68 151 152 150 154,stand,,,
|
||||
459.292 -1020.85 80.125,67 154 159 162,stand,,,
|
||||
222.024 -1291.55 80.125,70 157 158 159 160 161,stand,,,
|
||||
5.71331 -1569.45 48.125,69 71,stand,,,
|
||||
265.294 -1769.14 -57.5248,70 72 79 136 163,stand,,,
|
||||
157.275 -1904.62 -57.875,71 73 132 133,stand,,,
|
||||
539.41 -2227.1 -57.875,72 74 134,stand,,,
|
||||
693.936 -2017.14 -59.5458,73 75 65 135 137 334,stand,,,
|
||||
1014.23 -2134.61 -59.5283,74 63 328 331 330,stand,,,
|
||||
746.349 -1365.62 -62.8987,139 145 144 142 146 143 381,stand,,,
|
||||
400.018 -1078.31 -57.875,139 140 141 164,stand,,,
|
||||
119.528 -1424.9 -57.8354,79 165,stand,,,
|
||||
318.895 -1564.23 -55.875,78 71 138 170 379 136,stand,,,
|
||||
-173.908 -1094.7 -63.875,81 167 172 173,stand,,,
|
||||
-397.647 -1381.58 -63.875,80 82 186 185,stand,,,
|
||||
-717.826 -1172.05 -63.875,81 86 180 185 186,stand,,,
|
||||
-106.316 -413.158 -63.875,84 93 176 177 175,stand,,,
|
||||
171.667 -667.76 -63.875,83 172,stand,,,
|
||||
-782.047 -637.027 -63.875,189 188 179,stand,,,
|
||||
-1039.95 -990.766 -63.875,82 87 188,stand,,,
|
||||
-1182.04 -859.729 -63.875,86 88 187,stand,,,
|
||||
-843.247 -427.621 -63.875,87 199,stand,,,
|
||||
-533.541 -40.4135 -62.9204,93 199 200,stand,,,
|
||||
-769.326 123.57 -61.5092,198 200 203,stand,,,
|
||||
-549.532 368.162 -67.875,97 98 191 193 194 195 196 203,stand,,,
|
||||
-213.36 110.961 -67.8813,94 96 190 191 194 204 192,stand,,,
|
||||
-427.537 -185.917 -63.875,83 89 189 204,stand,,,
|
||||
251.611 -256.407 -62.875,92 95 205,stand,,,
|
||||
402.389 -54.0425 -62.875,94 96 104 374,stand,,,
|
||||
-16.9708 309.764 -67.875,92 103 95 197 192 373,stand,,,
|
||||
-180.902 714 -63.875,91 193 101 102 103 197 211 210,stand,,,
|
||||
-831.028 871.364 -63.875,91 99 193 207,stand,,,
|
||||
-737.272 1265.61 -63.875,98 100 217 208,stand,,,
|
||||
-340.755 1332.3 -63.875,99 209 224,stand,,,
|
||||
106.751 946.458 -61.875,102 97 216 210 220 224,stand,,,
|
||||
214.838 862.154 -67.875,101 15 103 97 219 222 197,stand,,,
|
||||
361.074 673.532 -61.875,102 96 97 197 219,stand,,,
|
||||
640.75 224.262 -64.0781,95 105 106 375,stand,,,
|
||||
489.04 366.609 -63.875,104 376,stand,,,
|
||||
925.097 421.354 -67.875,104 107 375 376 377,stand,,,
|
||||
1338.47 584.911 -68.468,106 115 268 269 377,stand,,,
|
||||
1531.46 899.336 -63.875,109 266 268,stand,,,
|
||||
1778.54 930.083 -63.3491,108 0 110 238 261 266,stand,,,
|
||||
1485.38 1097.43 -49.1369,109 111 236 238,stand,,,
|
||||
1084.09 993.811 22.125,110 112 113 236 239 17,stand,,,
|
||||
964.786 830.18 66.125,111 128,climb,,,
|
||||
825.823 1116.73 19.484,111 16 372,stand,,,
|
||||
700.96 903.39 24.125,233 372 226,stand,,,
|
||||
1432.68 454.547 -66.8475,107 116 117 269 377,stand,,,
|
||||
1766.57 230.486 -67.875,115 120 118 367 119,stand,,,
|
||||
1285.56 179.563 -67.875,115 118 378 377,stand,,,
|
||||
1555.35 -20.2444 -67.875,117 119 124 116 120,stand,,,
|
||||
1911.16 -299.728 -67.875,118 120 121 359 357 116,stand,,,
|
||||
2174.32 -39.4204 -67.875,116 119 358 366 118,stand,,,
|
||||
1950.02 -567.864 -61.875,119 122 355 356 359,stand,,,
|
||||
1672.7 -714.63 -67.875,121 123 351 354,stand,,,
|
||||
1407.39 -518.506 -67.875,122 124 353 354,stand,,,
|
||||
1319.96 -302.975 -67.875,123 118,stand,,,
|
||||
1232.69 -736.088 -67.875,126 340 342 353 352,stand,,,
|
||||
940.486 -1098.08 -55.875,125 144 336 335,stand,,,
|
||||
1979.34 2106.92 -63.875,3 246 18 4,stand,,,
|
||||
963.146 819.38 267.51,112 241,climb,61.0358 -125.963 0,,
|
||||
2851.99 365.493 125.855,37 130,climb,59.5032 141.499 0,,
|
||||
2781.1 408.48 -19.875,129 21,climb,31.2573 74.5704 0,,
|
||||
3357.47 72.5815 151.04,38,stand,6.79627 -9.42556 0,,
|
||||
33.0258 -1892.23 -57.875,72,crouch,3.27942 0.264401 0,,
|
||||
226.238 -2063 -57.875,72,crouch,2.93335 91.2587 0,,
|
||||
692.168 -2282.16 -57.875,73,crouch,3.97156 116.121 0,,
|
||||
573.491 -1951.78 -58.6951,136 74 137,stand,7.25098 126.481 0,,
|
||||
464.902 -1782.35 -55.875,71 135 163 379 79,stand,9.49768 149.272 0,,
|
||||
723.223 -1837.41 9.09919,135 74 65 147 382 379,stand,32.2888 -147.875 0,,
|
||||
390.514 -1355.71 -58.4042,79 170 171 139,stand,10.7062 -111.544 0,,
|
||||
526.377 -1180.08 -57.7011,76 77 141 140 142 138 171,stand,10.5304 -18.6597 0,,
|
||||
479.085 -944.055 -57.875,77 141 139,crouch,4.48792 -65.9778 0,,
|
||||
604.19 -1039.2 -57.875,140 139 77 142,crouch,5.69641 -125.892 0,,
|
||||
647.763 -1156.9 -58.0609,143 144 139 141 76,stand,13.1232 -19.1925 0,,
|
||||
769.935 -1117.15 -57.875,144 142 76,stand,4.83398 49.7028 0,,
|
||||
859.885 -1218.24 -63.875,76 145 143 142 146 126,stand,11.5686 -27.4762 0,,
|
||||
968.4 -1315.74 -57.875,76 144 146,stand,4.6637 60.4089 0,,
|
||||
821.164 -1453.53 -63.015,76 65 147 148 145 144 381,stand,15.8862 -45.0928 0,,
|
||||
828.422 -1617.8 -65.875,146 137 65 148 382 381,stand,10.1898 75.9381 0,,
|
||||
1040.53 -1536.97 -58.1612,147 146,crouch,3.27942 -160.251 0,,
|
||||
1035.93 -1215.82 102.125,150 152,crouch,11.3983 54.3445 0,,
|
||||
924.756 -1139.93 102.125,151 149 67 152,crouch,10.1898 51.2353 0,,
|
||||
810.711 -1045.33 102.125,150 67,crouch,11.7389 53.136 0,,
|
||||
902.839 -1329.36 102.125,67 66 149 150 153,stand,22.9669 -50.119 0,,
|
||||
1018.04 -1476.23 78.125,152 66,crouch,20.0281 -133 0,,
|
||||
539.748 -1101.25 80.125,67 68,crouch,15.0238 -94.6741 0,,
|
||||
-14.9219 -1016.62 82.125,156 157 158,crouch,23.8293 138.077 0,,
|
||||
-91.0886 -1116.55 82.125,155 158 157,crouch,25.9003 140.323 0,,
|
||||
143.609 -1087.48 80.125,155 69 156 159,stand,8.97583 -33.8922 0,,
|
||||
26.7053 -1236.88 80.125,156 69 155 160,stand,11.0522 156.721 0,,
|
||||
298.165 -1204.22 80.125,69 68 157 161 162,stand,8.63525 50.8838 0,,
|
||||
222.929 -1403.33 80.125,69 158,crouch,15.7104 -33.0298 0,,
|
||||
355.414 -1232.95 80.125,69 159,crouch,14.502 -39.7644 0,,
|
||||
454.284 -1104.57 80.125,68 159,crouch,22.2748 -62.215 0,,
|
||||
379.127 -1904.84 19.125,136 71,crouch,7.25098 55.8826 0,,
|
||||
289.871 -1207.57 -57.7716,77 165 171 169,stand,15.7104 48.8184 0,,
|
||||
182.854 -1353.85 -57.6507,164 78 170 166,stand,22.099 144.636 0,,
|
||||
38.5148 -1237.06 -59.875,165 167 169,stand,16.4026 57.7887 0,,
|
||||
-27.6682 -1195.49 -59.875,166 80 168,stand,15.1941 53.8171 0,,
|
||||
55.7632 -1056.56 -59.875,172 169 167,stand,14.3317 -117.636 0,,
|
||||
138.121 -1103.18 -59.875,168 164 166,stand,11.3983 -35.2765 0,,
|
||||
303.71 -1438.57 -58.9472,138 165 79,stand,21.5826 59.3433 0,,
|
||||
376.156 -1279.17 -56.8536,138 139 164,stand,24.516 140.664 0,,
|
||||
-63.3616 -964.289 -63.875,84 80 168 174 175,stand,13.0011 -122.634 0,,
|
||||
-410.768 -1026.75 -71.875,174 80 181 182 184,stand,6.61255 53.3063 0,,
|
||||
-223.141 -851.703 -71.875,173 175 172 182,stand,10.238 49.1589 0,,
|
||||
-133.921 -701.132 -71.875,83 174 176 172,stand,5.40405 89.7369 0,,
|
||||
-228.591 -564.789 -71.875,83 177 175 183,stand,11.6168 143.262 0,,
|
||||
-360.684 -470.827 -71.875,83 178 176 183,stand,10.4083 -144.393 0,,
|
||||
-489.909 -628.36 -71.875,179 177 183 189,stand,8.68347 -126.436 0,,
|
||||
-581.583 -788.939 -71.875,180 178 182 181 85,stand,8.3374 -131.44 0,,
|
||||
-755.239 -892.982 -71.875,181 179 82 188,stand,7.12891 -84.9951 0,,
|
||||
-571.533 -988.881 -71.875,173 180 179 182 185,stand,2.29492 44.6765 0,,
|
||||
-443.306 -853.36 -71.875,183 173 174 179 181,stand,6.78284 51.4111 0,,
|
||||
-317.84 -686.733 -71.875,178 176 177 182,stand,8.85376 46.2311 0,,
|
||||
-389.725 -1218.41 -71.875,173,prone,2.29492 91.6321 0,,
|
||||
-447.452 -1306.19 -63.875,181 82 81,crouch,0.0482178 100.608 0,,
|
||||
-532.294 -1448.56 -63.875,81 82,crouch,6.61255 110.963 0,,
|
||||
-1243.62 -938.436 -58.0126,87,crouch,3.50342 48.4558 0,,
|
||||
-870.443 -745.142 -63.875,85 86 180,stand,15.072 -34.7711 0,,
|
||||
-647.218 -464.916 -63.875,93 85 178,stand,11.2708 -38.2208 0,,
|
||||
-229.176 -108.721 -62.875,92 204,crouch,1.60278 99.2181 0,,
|
||||
-441.619 123.397 -61.875,91 194 92 203 204,stand,5.05798 142.037 0,,
|
||||
-357.664 382.601 -67.9895,193 194 96 92,stand,19.906 138.582 0,,
|
||||
-512.018 493.454 -67.9849,91 192 196 98 97 211 218,stand,16.2805 -74.3109 0,,
|
||||
-370.921 255.631 -67.875,192 191 92 91,stand,13.0011 -142.855 0,,
|
||||
-837.294 290.782 -61.875,91 206,crouch,1.25671 27.2082 0,,
|
||||
-878.577 461.152 -61.875,91 193 206,crouch,2.81128 -9.91454 0,,
|
||||
28.5873 537.439 -67.875,103 97 96 102 373,stand,6.78284 -40.473 0,,
|
||||
-856.688 28.082 -62.3648,90 199,crouch,3.84949 12.5415 0,,
|
||||
-612.971 -129.449 -62.875,88 89 198,stand,17.6593 69.3408 0,,
|
||||
-653.265 44.3173 -62.875,202 201 90 89,stand,13.1714 -39.6051 0,,
|
||||
-645.193 -35.9465 -62.875,200,crouch,3.50342 89.3744 0,,
|
||||
-740.337 36.7409 -62.875,200,crouch,6.0907 28.598 0,,
|
||||
-663.529 240.385 -62.0977,91 90 191,stand,16.4508 -123.348 0,,
|
||||
-319.669 -33.1474 -62.875,93 190 191 92,stand,11.1005 123.042 0,,
|
||||
224.78 -350.376 -62.875,94,crouch,3.32764 103.333 0,,
|
||||
-809.501 383.497 -61.875,196 195,prone,-0.638428 8.71276 0,,
|
||||
-720.966 910.064 -38.875,212 98 213 208,stand,19.3896 83.6505 0,,
|
||||
-688.508 1127.01 -38.875,217 99 207,stand,16.7969 31.85 0,,
|
||||
-301.654 1164.9 -38.875,100 216 217,stand,14.3799 -43.9502 0,,
|
||||
-237.066 846.847 -38.875,97 215 101,stand,12.655 -153.759 0,,
|
||||
-437.974 701.094 -38.875,193 97,stand,10.7544 155.995 0,,
|
||||
-545.089 876.989 -39.4486,215 207 218,stand,11.7926 109.029 0,,
|
||||
-546.806 1058.75 -43.5192,207 214 217,stand,9.89197 52.9108 0,,
|
||||
-395.086 1057.4 -46.2231,213 215 216,stand,8.85376 -22.5378 0,,
|
||||
-363.917 895.435 -37.875,210 212 214,stand,14.2096 -118.536 0,,
|
||||
-238.976 984.139 -38.875,209 101 214,stand,8.3374 99.3555 0,,
|
||||
-518.101 1205.07 -38.875,213 99 209 208,stand,11.9629 -90.9112 0,,
|
||||
-602.942 736.252 -38.8972,212 193,stand,12.309 -105.237 0,,
|
||||
419.757 769.541 -63.875,103 102 222,prone,2.46521 -164.454 0,,
|
||||
80.7617 1052.2 -63.875,221 101 224,stand,14.3799 53.2733 0,,
|
||||
143.233 1118.49 -57.0138,220 14,stand,21.8066 -135.444 0,,
|
||||
389.662 846.424 -63.875,223 219 102,stand,16.4508 55.8551 0,,
|
||||
436.748 907.797 -58.5895,222 226 227 15,stand,23.1854 -131.654 0,,
|
||||
29.9254 1047 -63.875,220 101 100,stand,17.8351 18.3862 0,,
|
||||
15.7984 1198.61 12.0149,14,stand,7.2992 -125.26 0,,
|
||||
496.007 870.021 24.125,223 114,stand,16.1102 -34.0735 0,,
|
||||
546.003 1089.07 -39.4511,16 223 15 228,stand,11.7926 58.2996 0,,
|
||||
328.317 1338.26 -39.2836,14 227 16 229,stand,6.95862 164.153 0,,
|
||||
456.501 1598.61 -11.0271,228,crouch,6.26648 -106.407 0,,
|
||||
99.3523 1839.32 18.9156,231 232,crouch,3.50342 -35.9796 0,,
|
||||
219.462 2040.84 14.0099,230 13,crouch,2.36877 -29.245 0,,
|
||||
359.594 1629.56 1.80518,14 13 230,stand,3.57727 -57.0514 0,,
|
||||
750.17 690.486 26.125,114 234,crouch,1.50635 88.3636 0,,
|
||||
948.53 774.777 20.125,233 235 372,prone,1.85242 64.0234 0,,
|
||||
1061.96 711.07 20.125,234 236,stand,4.09912 47.6603 0,,
|
||||
1240.98 798.746 24.125,235 237 111 110,stand,11.8664 54.9113 0,,
|
||||
1306.06 755.406 26.125,236,stand,11.004 -41.3253 0,,
|
||||
1645.86 1313.41 -63.875,0 110 109 262 384,stand,10.6579 96.7948 0,,
|
||||
1248.58 1221.65 -35.875,240 111 17,stand,14.2834 60.7102 0,,
|
||||
1434.41 1440.99 -63.875,239 384 385,stand,11.1743 51.7289 0,,
|
||||
934.533 783.355 284.125,128,crouch,12.8992 -128.507 0,,
|
||||
1038.71 1904.44 -12.7628,243 244,prone,5.47241 -60.9964 0,,
|
||||
1142.88 1551.94 -63.875,17 242 244 386,stand,6.85669 168.47 0,,
|
||||
1250.18 1697.42 -42.1604,243 385 245 242 386,stand,6.85669 9.61827 0,,
|
||||
1533.79 1752.97 -37.3609,246 18 383 244 385,stand,10.6524 20.3244 0,,
|
||||
1787.71 2022.92 -63.875,127 18 245,stand,6.68091 52.9593 0,,
|
||||
1914.64 2714.08 -63.875,248,crouch,0.638428 -45.7803 0,,
|
||||
2064.96 2536.26 -63.875,249 247 4,stand,7.71912 -65.4623 0,,
|
||||
2285.81 2386.5 -63.875,250 248 4 3,stand,3.57727 -36.6232 0,,
|
||||
2500.36 2185.37 -61.3303,251 249 3,stand,5.47241 -48.3621 0,,
|
||||
2615.5 1989.91 -45.7856,2 250 252,stand,12.207 -140.219 0,,
|
||||
2412.18 1965.25 -61.5817,3 251 2 253 259,stand,10.9985 -179.22 0,,
|
||||
2472.87 1749.27 -58.6399,254 2 1 252,stand,5.99426 -153.144 0,,
|
||||
2294.83 1718.76 -63.9117,253 255 258,stand,14.624 -95.4715 0,,
|
||||
2235.6 1609.89 -63.875,254 256 265,stand,14.7998 -179.731 0,,
|
||||
2125.26 1650.06 -63.875,255 257 263,stand,10.4822 132.786 0,,
|
||||
2126.92 1770.91 -63.875,256 258 263 264,stand,13.4155 32.8104 0,,
|
||||
2243.84 1787.88 -63.875,257 254 264,stand,18.0792 -35.2169 0,,
|
||||
2129.29 1932.44 -61.7734,18 252 3 264,stand,11.1743 -176.622 0,,
|
||||
2128.17 1218.4 -63.6934,261 1 0 265,stand,7.8894 -157.808 0,,
|
||||
1906.35 1054.6 -62.8108,109 260 0,stand,7.71912 -129.666 0,,
|
||||
1889.74 1616.57 -63.875,18 0 238 263 384 383,stand,8.41125 103.255 0,,
|
||||
2050.81 1696.61 -27.875,256 257 262,stand,39.6619 7.94835 0,,
|
||||
2217.64 1862.35 -27.875,259 258 257,stand,24.292 94.8063 0,,
|
||||
2215.75 1557.92 -27.875,1 260 255,stand,14.624 -83.0404 0,,
|
||||
1796.6 804.448 -61.875,109 108,crouch,1.50085 125.205 0,,
|
||||
1704.51 748.812 -63.875,268,crouch,5.81848 176.149 0,,
|
||||
1478.06 792.322 -63.875,108 267 107,stand,13.4155 -156.918 0,,
|
||||
1586.31 551.166 -60.5443,107 25 115,stand,4.95605 0.208483 0,,
|
||||
2629.14 1537.2 -42.144,271 272,crouch,2.02271 -85.5947 0,,
|
||||
2777.46 1427.06 -52.2083,270 272,crouch,2.70935 -152.249 0,,
|
||||
2541.65 1264.81 -63.7845,1 19 270 271 273 370,stand,6.51062 -91.9888 0,,
|
||||
2316.9 1041.57 -63.0143,272 19 274,crouch,2.70935 4.35582 0,,
|
||||
2495.59 938.844 -57.3156,275 273 19,stand,6.16455 -31.9046 0,,
|
||||
2756.83 748.728 -57.848,21 274 20,stand,5.47241 -76.976 0,,
|
||||
2152.34 1044.16 -61.875,23,crouch,-0.223999 -79.0689 0,,
|
||||
2266.55 724.565 -63.875,24,crouch,0.638428 -159.357 0,,
|
||||
2350.08 133.698 -63.875,27,crouch,6.16455 133.83 0,,
|
||||
2219.61 76.3636 126.125,280 31,crouch,15.4865 -130.172 0,,
|
||||
2135.87 146.572 126.125,281 279,crouch,15.3161 -151.76 0,,
|
||||
2042.97 220.313 126.125,32 280,crouch,13.0694 -151.073 0,,
|
||||
1902.51 952.685 128.125,284 283,crouch,14.4537 130.023 0,,
|
||||
1981.3 903.708 130.125,282 34,stand,21.1884 -174.551 0,,
|
||||
1887.85 842.336 130.125,34 282 285,stand,24.1217 -49.8837 0,,
|
||||
1901.88 710.465 128.125,34 284 286,stand,13.7616 -90.632 0,,
|
||||
1934.88 508.664 128.125,287 285 33,stand,10.1361 -156.418 0,,
|
||||
1773.89 509.186 136.125,286,crouch,9.44395 -0.346327 0,,
|
||||
2055.76 667.258 128.125,34 36,stand,14.1076 -1.37904 0,,
|
||||
2186.79 399.784 128.125,36 290,prone,1.33057 29.531 0,,
|
||||
2327.7 438.289 128.125,289 36,stand,16.0083 51.4542 0,,
|
||||
2514.46 291.015 128.125,292 293,crouch,6.16455 28.6686 0,,
|
||||
2666.58 356.93 128.125,35 37 291 293,stand,17.041 -15.5294 0,,
|
||||
2632.25 193.435 128.125,291 292,crouch,4.60999 85.6492 0,,
|
||||
2794.25 38.9283 -59.1377,295,stand,8.75181 -130.172 0,,
|
||||
2681.53 -119.025 -56.3885,39 294,stand,4.95605 -80.7827 0,,
|
||||
3456.76 161.365 -63.1011,297 43 299 298 307,stand,4.78577 -27.4276 0,,
|
||||
3628.9 27.0646 -45.0913,298 296 299,stand,7.71912 33.5245 0,,
|
||||
3855.57 243.975 -27.9903,299 297 296,crouch,6.68091 -167.965 0,,
|
||||
3641.85 309.787 -45.1891,43 298 296 297,stand,8.75181 149.551 0,,
|
||||
3555.99 715.828 -45.56,302 301 303,stand,7.02698 144.684 0,,
|
||||
3259.58 927.508 -54.8972,302 20 300,stand,9.9658 -143.317 0,,
|
||||
3293.61 685.881 -55.2099,300 301 20 43 303 304,stand,0.814209 -17.9629 0,,
|
||||
3449.58 583.113 -45.6243,300 43 302,stand,9.79002 -61.4633 0,,
|
||||
3200.89 604.2 -54.6585,302 42 43 20,stand,9.09788 34.3705 0,,
|
||||
3496.98 -138.114 -19.9118,306,crouch,11.1743 158.686 0,,
|
||||
3314.08 -68.5472 -50.52,307 305 40,stand,7.37305 73.2181 0,,
|
||||
3390.1 179.066 -64.3427,41 296 306,stand,7.54334 0.356798 0,,
|
||||
3016.58 -614.108 -60.2678,44 40 309,stand,18.4253 -101.86 0,,
|
||||
2978.94 -921.894 -48.9759,310 308 44 313,stand,10.3064 -120.839 0,,
|
||||
2785.2 -1192.71 -28.5045,311 309 313 44,stand,5.64819 -98.9157 0,,
|
||||
2905.86 -1454.15 -5.68631,312 310,stand,11.3446 -46.0769 0,,
|
||||
3151.36 -1667.52 -27.0813,54 311,stand,10.4822 -51.4328 0,,
|
||||
2611.06 -1100.02 -26.9254,44 45 57 310 309,stand,7.20276 144.02 0,,
|
||||
2506.79 -1654.96 -2.61583,315 316 317 45 46,stand,11.8609 -35.195 0,,
|
||||
2725.9 -1817.04 -11.7326,55 314 319,stand,11.1743 58.7381 0,,
|
||||
2635.03 -1545.43 14.7383,314 55 45 317,stand,11.5149 135.401 0,,
|
||||
2318.81 -1555.35 -39.9324,45 46 314 316 318,stand,9.61973 -125.157 0,,
|
||||
2293.05 -1969.57 -42.4956,319 46 317 320,stand,10.1361 -28.4603 0,,
|
||||
2467.72 -2104.72 -42.8532,315 318,stand,9.44395 43.3683 0,,
|
||||
2149.58 -2100.01 -36.7275,321 318 46 47,stand,2.19299 -126.87 0,,
|
||||
1919.68 -2443.61 7.32396,51 320 322,stand,7.37305 -147.42 0,,
|
||||
1585.86 -2360.26 -26.9083,51 47 63 325 321,stand,0.12207 -52.9763 0,,
|
||||
2078.04 -2710.61 10.95,324 52,stand,11.6907 -154.336 0,,
|
||||
1838.57 -2789.89 45.8098,325 323 51,stand,11.5149 129.342 0,,
|
||||
1600.28 -2668.94 22.2069,322 324 51,stand,13.2452 52.5089 0,,
|
||||
2698.21 -800.762 293.084,50,prone,17.2168 55.8158 0,,
|
||||
1400.21 -1716.29 -47.4596,328 329 333,stand,10.9985 -122.19 0,,
|
||||
1238.64 -1888.53 -48.1096,65 327 63 75,stand,10.4822 -133.583 0,,
|
||||
1651.19 -1870.76 -35.1614,327 64 63,stand,6.68091 28.1961 0,,
|
||||
993.999 -2331.14 -53.6903,75,crouch,5.30212 82.2434 0,,
|
||||
810.004 -2219.74 -60.9311,75,crouch,2.36328 29.0641 0,,
|
||||
1447.63 -2393.97 -10.6604,63,crouch,3.74756 114.692 0,,
|
||||
1366.16 -1610.86 -51.5479,327,crouch,-0.570068 -79.3875 0,,
|
||||
999.072 -1898.43 -24.586,65 74,crouch,8.23547 139.916 0,,
|
||||
808.762 -1051.95 -63.875,339 126,stand,14.9701 -36.2002 0,,
|
||||
1051.58 -1227.56 -59.875,337 126 345,stand,16.1786 -17.7212 0,,
|
||||
1256.09 -1219.23 -135.875,344 336 338 345 348 349,stand,4.78577 120.756 0,,
|
||||
1040.93 -1032.05 -135.583,339 337,stand,-0.223999 144.063 0,,
|
||||
808.73 -859.246 -135.875,335 340 338 346 347 350,stand,-0.394287 143.717 0,,
|
||||
1002.72 -721.342 -67.875,339 125 350,stand,8.23547 0.582018 0,,
|
||||
1229.23 -842.252 7.625,342,crouch,6.51062 -128.749 0,,
|
||||
1305.15 -771.309 -67.875,341 125 343 352,stand,29.6478 123.854 0,,
|
||||
1390.05 -897.696 -67.875,342 344 351 352,stand,6.51062 -68.4835 0,,
|
||||
1408.21 -1005.12 -67.875,343 337 349,stand,15.3161 -133.753 0,,
|
||||
1204.5 -1382.55 -60.735,337 336 348,crouch,-0.570068 93.812 0,,
|
||||
619.993 -932.413 -60.7351,339 347,crouch,7.54334 21.6538 0,,
|
||||
669.056 -876.8 -127.875,339 350 346,crouch,-1.08643 5.93236 0,,
|
||||
1251.85 -1319.97 -127.875,349 337 345,crouch,-0.570068 111.78 0,,
|
||||
1361.52 -1168.32 -127.875,348 337 344,crouch,-1.77856 -171.211 0,,
|
||||
778.845 -727.381 -127.875,339 347 340,crouch,1.15479 -73.312 0,,
|
||||
1494.69 -721.495 -67.875,352 122 343 354,stand,21.0126 -142.207 0,,
|
||||
1383.9 -713.3 -67.875,353 351 342 125 343,stand,19.458 109.528 0,,
|
||||
1360.38 -599.668 -67.875,125 123 352,stand,20.1501 86.215 0,,
|
||||
1581.69 -459.143 -31.875,123 122 351,crouch,4.60999 -130.644 0,,
|
||||
2158.97 -602.043 -63.875,356 121,crouch,-0.394287 174.979 0,,
|
||||
2048.38 -744.998 -63.875,355 121,crouch,2.02271 109.193 0,,
|
||||
2179.03 -311.027 -63.875,358 359 119 363,stand,12.3828 52.5693 0,,
|
||||
2304.99 -119.824 -63.875,120 357 365,stand,10.1361 31.5085 0,,
|
||||
2085.07 -442.296 -47.875,357 119 60 121,stand,9.61973 26.669 0,,
|
||||
2353.04 -776.058 -45.875,57 59 361,stand,6.68091 153.248 0,,
|
||||
2544.57 -529.212 -45.875,360 62 60 364,stand,7.20276 51.8937 0,,
|
||||
2322.46 -373.859 -17.875,363 364,stand,20.1501 148.744 0,,
|
||||
2246.86 -324.166 -23.875,357 362,stand,45.188 147.359 0,,
|
||||
2417.13 -461.677 -17.875,362 60 61 361,stand,10.1361 23.3896 0,,
|
||||
2467.26 -80.4492 -50.8817,358,crouch,3.2312 -174.309 0,,
|
||||
2213.24 121.055 -63.875,120,crouch,2.19299 -125.964 0,,
|
||||
1830.37 407.013 -63.875,116,crouch,-0.570068 -136.84 0,,
|
||||
2212.24 372.178 -63.875,28 26 27,stand,4.09363 43.0826 0,,
|
||||
2626.23 530.494 -51.875,22 21,stand,1.84692 -39.4412 0,,
|
||||
2357.93 1232.96 -38.8593,272,crouch,1.67664 -11.6348 0,,
|
||||
667.46 1105.16 24.125,372,stand,17.2168 -158.72 0,,
|
||||
770.916 1003.51 24.125,113 371 114 234,stand,14.9701 -92.9281 0,,
|
||||
242.96 281.531 -63.875,96 197,crouch,3.74756 -175.696 0,,
|
||||
90.0308 -47.1886 -61.875,95,crouch,0.46814 20.0855 0,,
|
||||
890.054 244.899 -62.875,104 106,crouch,4.26392 136.288 0,,
|
||||
697.734 631.427 -63.6457,106 105,crouch,2.88513 -72.2766 0,,
|
||||
1120.39 302.549 -68.8729,378 106 107 115 117,stand,5.12634 -50.6939 0,,
|
||||
1180.45 120.281 -62.875,377 117,crouch,3.91785 96.5833 0,,
|
||||
591.031 -1705.07 -63.875,382 136 380 137 79,stand,23.3075 122.773 0,,
|
||||
573.133 -1540.21 -63.875,379 381,stand,21.5826 50.5982 0,,
|
||||
684.247 -1541.26 -63.9828,380 147 382 76 146,stand,16.4026 -20.5437 0,,
|
||||
703.695 -1695.7 -65.7267,147 379 381 137,stand,19.5117 -89.2632 0,,
|
||||
1555.62 1610.42 -63.875,385 384 245 262 18,stand,17.6111 -73.8988 0,,
|
||||
1616.19 1455.9 -60.5225,383 240 238 262 0,stand,20.8905 150.903 0,,
|
||||
1418.17 1609 -61.6436,244 383 240 245 386,stand,18.9954 135.534 0,,
|
||||
1312.56 1560.59 -63.875,243 385 244,stand,12.2607 168.844 0,,
|
||||
|
@@ -0,0 +1,293 @@
|
||||
292
|
||||
-496.312 -732.865 -142.346,1 194,stand,,,
|
||||
-17.2528 -459.032 -53.1686,0 2 5 217,stand,,,
|
||||
427.623 -326.794 -22.5228,1 3 66 217 226,stand,,,
|
||||
420.225 -271.977 -13.8064,2 4,stand,,,
|
||||
383.669 93.1845 -5.28357,3 5 65 193,stand,,,
|
||||
30.5647 -0.0282056 -1.18442,4 1 101,stand,,,
|
||||
-481.41 243.585 71.5882,7 101,stand,,,
|
||||
-576.958 803.125 187.082,6 103 152 196 199 261 274,stand,,,
|
||||
-1210.9 1152.94 81.5377,9 10 102 103 151,stand,,,
|
||||
-1286.62 874.244 65.5222,8 228,stand,,,
|
||||
-1248.34 1651.74 56.7686,8 151,stand,,,
|
||||
-444.158 2090.19 64.125,13 149 158,stand,,,
|
||||
-73.2721 1520.26 196.912,83 82 145 143 146 213 231,stand,,,
|
||||
-148.298 2242.25 174.192,11 14,stand,,,
|
||||
55.9953 2213.98 188.874,13 15 162,stand,,,
|
||||
169.483 2627.81 202.973,14 16 162 236,stand,,,
|
||||
436.097 2503.9 242.337,15 17 108 160 263,stand,,,
|
||||
587.116 1940.12 151.758,16 18,stand,,,
|
||||
572.231 1664.76 144.832,17 81 82 141 142 211 235,stand,,,
|
||||
570.426 3209.61 224.125,20 100 108,stand,,,
|
||||
32.0897 3206.73 104.125,19 21,stand,,,
|
||||
-4.1521 3020.94 40.125,20 22 237,stand,,,
|
||||
-442.777 2861.53 -23.875,21 23,stand,,,
|
||||
-486.986 2558.32 -55.875,22 158 159,stand,,,
|
||||
919.876 3203.52 243.923,25 33 100,stand,,,
|
||||
950.717 3486.24 236.32,24 26 38 100 34 163 165 240,stand,,,
|
||||
958.611 3808.82 256.276,25 27,stand,,,
|
||||
1478.71 3996.01 263.489,26 28 168 37 38 241,stand,,,
|
||||
1970.95 4118.43 251.691,27 166 167 168 169,stand,,,
|
||||
2122.99 3659.42 215.041,30 37 169 170 177 242,stand,,,
|
||||
2086.8 3262.31 250.264,29 31 36 170 173 171 268,stand,,,
|
||||
1879.36 2855.37 312.356,30 32 99 172 173 264 267 277 276,stand,,,
|
||||
1469.65 2916.41 264.774,31 33 36 171 172 264,stand,,,
|
||||
1127.98 3047.84 263.683,32 24 34 164 239,stand,,,
|
||||
1300.23 3305.06 261.784,33 35 38 25 165 164,stand,,,
|
||||
1337.66 3237.1 261.556,34 36,stand,,,
|
||||
1644.63 3240.44 257.477,35 32 30 37 171 174,stand,,,
|
||||
1679.16 3605.4 225.505,36 29 38 27,stand,,,
|
||||
1276.88 3615.43 239.576,37 34 25 164 165 27,stand,,,
|
||||
2864.6 3056.73 118.861,97 178 245 278,stand,,,
|
||||
3494.3 3196.57 135.081,41 98,stand,,,
|
||||
3494.53 2819.69 128.125,40 42 97 280 279 281 282 283 284,stand,,,
|
||||
3935.81 2871.96 128.125,41 43 126,stand,,,
|
||||
3971.5 2543.27 -13.4301,42 44 125 126,stand,,,
|
||||
3408.04 2471.49 -39.6766,43 45 46 123 124,stand,,,
|
||||
2828.55 2464.86 3.20407,44 77 78 97 127,stand,,,
|
||||
3482.35 1921.72 42.5354,44 122 123 124 181,stand,,,
|
||||
3611.34 1513.02 82.1061,182 183 185,stand,,,
|
||||
2949.5 1203.68 64.0708,49 50 106 188 189 270,stand,,,
|
||||
2494.24 1271.95 25.4285,48 76 87 88,stand,,,
|
||||
3060.2 834.908 74.0837,48 52 189 269,stand,,,
|
||||
2708.69 824.855 200.125,189 209 221 286 287,stand,,,
|
||||
3112.49 425.318 79.9015,50 55 89 105,stand,,,
|
||||
3362.68 -7.56945 142.391,54 55 89 119 120 121 190 272 271,stand,,,
|
||||
3365.63 266.065 144.125,53 192 222 289,stand,,,
|
||||
3637.05 395.554 76.6413,53 52 56 61 62 105 121,stand,,,
|
||||
3671.49 837.357 78.2406,55 62 59 104,stand,,,
|
||||
3565.97 1248.22 93.4757,58 104 106 184,stand,,,
|
||||
3935.86 1144.14 119.745,57 59,stand,,,
|
||||
3931.06 956.327 87.653,58 60 56 62,stand,,,
|
||||
4364.57 836.858 72.2672,59 61,stand,,,
|
||||
4210.86 328.576 76.3363,60 55,stand,,,
|
||||
4020.58 641.397 75.3822,56 55 59,stand,,,
|
||||
1219.72 -292.936 39.3015,64 66 110 112 273,stand,,,
|
||||
1116.2 39.6321 -20.555,63 65 67 68 110 138 257 258,stand,,,
|
||||
726.623 -38.2303 22.2781,64 4 66 225,stand,,,
|
||||
669.221 -432.278 21.5103,65 2 63 218,stand,,,
|
||||
1629.67 227.23 -20.1615,64 71 72 110 138,stand,,,
|
||||
1390.18 518.06 18.268,64 69 138 256,stand,,,
|
||||
1493.13 785.232 42.7987,68 84 85 153 156 256,stand,,,
|
||||
1705.42 716.213 44.7554,137 156 248,stand,,,
|
||||
2018.5 585.112 -4.0642,67 72 87 137,stand,,,
|
||||
2195.53 375.576 43.8192,67 71 88,stand,,,
|
||||
1846.05 1042.09 48.0116,84 86 87 94 153 154 155 157,stand,,,
|
||||
2041.24 1575.02 -11.8253,75 76 86 93 96,stand,,,
|
||||
2005.11 1909.44 -12.9515,74,stand,,,
|
||||
2382.4 1670.16 19.921,74 49 77 96,stand,,,
|
||||
2551.85 2186.3 0.124998,76 45 95 128 251 252,stand,,,
|
||||
2341.71 2494.09 -4.98104,45 79 127 128 129 253,stand,,,
|
||||
1856.14 2360.8 0.354582,78 93 132 246 254 255,stand,,,
|
||||
1305.32 1771.3 74.6347,92 93 134 133,stand,,,
|
||||
498.107 1331.73 136.327,18 82 83 92 141 214 233,stand,,,
|
||||
246.105 1603.02 179.242,18 81 12 142 144 145 234,stand,,,
|
||||
124.631 1263.14 167.17,81 12 145 213,stand,,,
|
||||
1406.26 1182.69 56.4975,73 69 94 109 139 153 85,stand,,,
|
||||
1044.19 914.706 167.246,69 92 139 84,stand,,,
|
||||
1988.82 1222.99 59.4681,74 73,stand,10.7062 -107.655 0,,
|
||||
2129.75 746.84 26.5527,71 73 49,stand,10.8765 58.4528 0,,
|
||||
2402.57 496.043 65.1585,72 49,stand,5.35034 81.9305 0,,
|
||||
3050.62 50.8044 130.07,52 53 90 191 260 288,stand,11.5686 175.902 0,,
|
||||
2735.46 74.8598 134.197,89 91 118 260,stand,17.4408 -153.182 0,,
|
||||
2467.36 -86.7349 123.809,90 107 117 118,stand,13.4692 -175.111 0,,
|
||||
1088.25 1472.42 111.156,85 80 81 109 139 140 141,stand,13.2935 177.649 0,,
|
||||
1692.81 1745.13 -5.74618,79 74 80 94 109 255,stand,0.516357 175.933 0,,
|
||||
1806.41 1332.19 109.839,84 73 93 109,stand,16.5784 177.664 0,,
|
||||
2235.18 2075.6 11.7167,77 96 129,stand,5.35034 -112.897 0,,
|
||||
2189.02 1773.37 44.4605,95 76 74,stand,26.4166 72.8979 0,,
|
||||
2890.11 2844.62 123.835,39 45 41 127,stand,19.682 97.0899 0,,
|
||||
3394.15 3611.84 128.125,40 179,stand,10.5304 -76.2524 0,,
|
||||
1910.67 2663.17 380.514,31,crouch,13.2935 -80.7403 0,,
|
||||
733.339 3155.82 228.219,19 24 25 108 163,stand,12.085 40.4828 0,,
|
||||
-215.782 35.8419 9.61632,6 5 227,stand,7.59705 143.621 0,,
|
||||
-742.36 1550.71 179.766,8 148 150 151 198,stand,19.5117 -35.2258 0,,
|
||||
-1043.1 1016.45 139.229,8 7 152 199 261,stand,1.72485 -32.6275 0,,
|
||||
3657.77 1024.37 87.0326,56 57,stand,17.7869 -87.8119 0,,
|
||||
3384.57 513.747 69.5176,55 52 106,stand,10.5304 -73.656 0,,
|
||||
3327.3 1095.54 67.7583,105 48 57,stand,16.2323 -79.1601 0,,
|
||||
2011.49 -21.9876 136.125,91 114 113 116 117 203,stand,14.6777 -177.321 0,,
|
||||
562.528 2678.22 251.56,19 16 100,stand,6.73462 77.7155 0,,
|
||||
1516.07 1501.29 45.9654,84 93 92 94 139,stand,5.00977 -152.999 0,,
|
||||
1350.18 -84.7698 43.0637,64 63 67 112,stand,29.0094 114.451 0,,
|
||||
1735.41 -161.942 136.125,112 113 115 207 208 224 259,stand,24.1754 -176.484 0,,
|
||||
1426.11 -192.619 107.624,111 63 110 259,stand,7.25098 4.81261 0,,
|
||||
1751.83 -15.582 136.125,107 111 115 116 205 291,stand,25.2081 -69.6087 0,,
|
||||
2106.9 -217.494 136.125,107 117 201 200,stand,24.516 -97.0636 0,,
|
||||
1824.18 -104.599 136.125,111 113 204,stand,19.682 147.602 0,,
|
||||
1848 115.719 136.125,113 107 206 290,stand,20.0281 90.6268 0,,
|
||||
2265.75 -96.5292 136.125,114 107 91 202 223,stand,12.9474 22.605 0,,
|
||||
2565.56 89.399 129.964,91 90,stand,25.5542 -84.9676 0,,
|
||||
3512.96 -151.743 172.459,120 53,stand,18.6493 58.1732 0,,
|
||||
3623.35 -23.4116 173.918,119 53 121,stand,20.2039 145.542 0,,
|
||||
3588.76 105.862 143.301,55 120 53,stand,24.3457 62.8369 0,,
|
||||
3549.96 1725.93 61.2797,46 181 182,stand,16.9189 -133.829 0,,
|
||||
3307.77 2283.55 -18.106,44 46 220,stand,20.0281 98.3997 0,,
|
||||
3553.45 2302.26 -8.7671,44 46 219,stand,24.8621 94.6039 0,,
|
||||
4199.43 2507.02 -15.9713,43,stand,5.87219 157.457 0,,
|
||||
4065.76 2887.46 134.676,42 43,stand,18.8196 178.523 0,,
|
||||
2660 2628.37 38.9734,45 97 78,stand,22.2748 -97.3932 0,,
|
||||
2447.94 2336.96 11.7742,77 78,stand,17.0947 -58.8861 0,,
|
||||
2061.24 2215.43 51.2774,130 95 78,stand,15.3699 -96.5198 0,,
|
||||
1997.87 1849.99 184.26,129 131,stand,36.0846 88.5669 0,,
|
||||
1965.56 1834.05 169.619,130 132,stand,34.0137 80.459 0,,
|
||||
1915.48 2189.45 33.0319,79 131,stand,39.1937 96.6913 0,,
|
||||
1349.98 1931.86 69.2725,80 134,stand,15.3699 -178.544 0,,
|
||||
1054.55 1790.01 144.401,80 133 140,stand,21.9287 -77.5354 0,,
|
||||
1642.29 578.183 108.18,136 249 250,stand,46.1041 42.9901 0,,
|
||||
1718 624.189 90.98,137 135,stand,52.663 72.1698 0,,
|
||||
1754.25 705.454 46.7966,70 71 136 155,stand,53.0573 -20.5493 0,,
|
||||
1398.18 266.103 6.98703,67 68 64 257 258,stand,23.0151 -35.3918 0,,
|
||||
1255.92 1264.36 77.4309,84 92 85 109,stand,26.2946 -38.6768 0,,
|
||||
1106.03 1627.73 126.806,134 92,stand,19.5599 96.8671 0,,
|
||||
759.256 1491.34 139.249,92 81 18 210,stand,17.3132 -157.812 0,,
|
||||
367.904 1769.02 184.59,143 18 82 144,stand,15.5884 179.391 0,,
|
||||
-39.3028 1722.47 199.899,142 144 12 212 232,stand,21.6309 -78.9032 0,,
|
||||
156.416 1688.5 200.626,143 82 142,stand,17.8351 148.668 0,,
|
||||
100.289 1470.12 190.037,83 82 12,stand,22.6691 -103.249 0,,
|
||||
-321.965 1492.63 202.855,12 148 147 215 216,stand,15.072 -18.808 0,,
|
||||
-456.335 1358.51 190.123,146 150 198 195 197 229,stand,26.2946 63.3698 0,,
|
||||
-450.16 1647.65 202.27,146 102 149 150 230 262,stand,25.4321 -40.7477 0,,
|
||||
-440.137 1922.09 200.121,11 148 262,stand,35.6165 87.5452 0,,
|
||||
-552.728 1528.97 192.566,148 147 102 198,stand,34.408 -178.192 0,,
|
||||
-1098.32 1434.29 116.283,8 102 10,stand,15.072 -156.78 0,,
|
||||
-935.576 775.961 198.805,103 7,stand,28.0194 116.192 0,,
|
||||
1602.74 1015.01 48.2733,69 73 84,stand,11.9147 -83.7854 0,,
|
||||
1694.01 816.332 46.8733,156 73 157,stand,42.8192 -115.393 0,,
|
||||
1765.05 770.69 49.0457,137 73 157,stand,46.1041 -113.492 0,,
|
||||
1660.73 723.339 42.8147,70 69 154,stand,42.6489 71.0779 0,,
|
||||
1765.79 873.643 51.8182,154 155 73 247,stand,40.4559 -149.753 0,,
|
||||
-511.246 2394.3 -39.875,23 11,stand,31.991 85.2448 0,,
|
||||
-219.57 2595.87 -55.875,23 238,stand,23.8776 -168.907 0,,
|
||||
102.395 2909.7 147.51,16,stand,60.484 138.43 0,,
|
||||
-280.874 2537.36 133.956,162,stand,44.5978 -178.059 0,,
|
||||
-16.2528 2528.1 168.101,161 15 14,stand,15.072 -15.758 0,,
|
||||
777.09 3315.36 240.176,25 100,stand,20.2521 41.3873 0,,
|
||||
1105.7 3252.12 260.837,33 38 165 34,stand,16.9727 -96.0516 0,,
|
||||
1154.41 3461.85 248.586,164 25 38 34,stand,12.4847 -124.188 0,,
|
||||
1871.16 4284.87 251.876,28,stand,12.309 -48.7335 0,,
|
||||
2052.8 4299.58 252.589,28 244,stand,22.8394 88.3649 0,,
|
||||
1889.28 3897.18 258.856,28 27 169,stand,15.7642 -124.006 0,,
|
||||
2018.79 3901.57 257.872,168 29 28 243,stand,15.4181 -50.4529 0,,
|
||||
2005.52 3471.6 243.19,30 29,stand,19.7357 -79.638 0,,
|
||||
1798.08 3154.23 265.779,36 32 172 30 268,stand,13.3472 -161.656 0,,
|
||||
1706.83 2982.44 268.45,171 31 173 32,stand,11.4465 13.4271 0,,
|
||||
1907.78 3017.62 275.316,30 172 31,stand,24.5697 45.7159 0,,
|
||||
1887.89 3426.54 246.346,36,crouch,11.6168 -139.376 0,,
|
||||
2632.21 3778.26 144.372,177 176,stand,17.6593 -1.76695 0,,
|
||||
2912.03 3583.09 120.211,178 175 179,stand,16.7969 -159.926 0,,
|
||||
2422.07 3616.12 149.054,178 29 175,stand,7.64526 -176.675 0,,
|
||||
2717.89 3520.79 129.39,177 176 39,stand,24.0533 143.275 0,,
|
||||
3152.9 3634.6 120.303,98 176,stand,18.0054 -14.5441 0,,
|
||||
3358.52 1619.01 43.9856,184 181 183 187,stand,35.744 28.6212 0,,
|
||||
3452.15 1719.12 50.0274,180 122 46,stand,36.9525 -12.8192 0,,
|
||||
3543.11 1563.61 59.3213,122 47 183 186,stand,27.9712 -177.197 0,,
|
||||
3439.01 1529.3 66.1882,182 180 47 184 285,stand,15.0238 -144.045 0,,
|
||||
3361.5 1422.18 64.5308,180 57 183 188,stand,24.516 -168.221 0,,
|
||||
3621.86 1446.29 93.4431,47,prone,8.98132 131.1 0,,
|
||||
3739.37 1725.46 91.6423,182,prone,3.97156 -147.92 0,,
|
||||
3252.99 1683.14 41.1005,180,prone,2.07092 -29.8168 0,,
|
||||
3174.3 1450.07 62.3616,48 184,stand,16.5784 -143.437 0,,
|
||||
2886.01 818.538 152.125,51 50 48,stand,13.1232 161.829 0,,
|
||||
3296.03 136.892 144.125,53,prone,-2.2467 -68.0353 0,,
|
||||
3201.91 148.846 141.796,89,crouch,9.15161 178.361 0,,
|
||||
3373.81 333.934 144.125,54,crouch,13.1232 88.5748 0,,
|
||||
393.99 353.067 32.125,4,crouch,8.80554 -91.6779 0,,
|
||||
-291.526 -821.179 -105.728,0,crouch,-1.72485 55.2533 0,,
|
||||
-450.763 1187.04 188.601,196 147 198,stand,28.3173 -115.156 0,,
|
||||
-553.606 1058.1 191.931,197 7 195,stand,24.516 123.11 0,,
|
||||
-588.29 1183.12 203.095,198 196 147 199,stand,25.5542 82.016 0,,
|
||||
-562.297 1337.05 190.373,147 197 195 150 102,stand,23.9996 106.021 0,,
|
||||
-714.619 1058.51 217.285,197 103 7 274,stand,23.9996 15.2081 0,,
|
||||
2030.02 -263.336 136.125,114,crouch,9.19983 35.1345 0,,
|
||||
2132.88 -294.573 136.125,114,crouch,10.2325 105.579 0,,
|
||||
2249.49 51.4548 136.125,117,crouch,11.6168 -129.924 0,,
|
||||
1971.3 76.1531 136.125,107,crouch,10.0623 -58.4415 0,,
|
||||
1850.41 -243.343 136.125,115,crouch,8.50769 88.8357 0,,
|
||||
1612.33 -89.9019 136.125,113,crouch,9.5459 124.058 0,,
|
||||
1894.04 130.907 136.125,116,crouch,20.7684 -125.782 0,,
|
||||
1611.13 -252.875 136.125,111,crouch,10.5786 55.8657 0,,
|
||||
1767.99 -282.875 136.125,111,crouch,12.4792 99.8934 0,,
|
||||
2737.68 964.813 200.125,51,crouch,10.0623 -99.5194 0,,
|
||||
782.446 1243.75 141.863,141,crouch,5.74463 90.9396 0,,
|
||||
749.848 1719.51 142.12,18,crouch,9.71619 -107.622 0,,
|
||||
-95.2411 1765.25 205.537,143,crouch,11.095 -30.9592 0,,
|
||||
-3.95726 1249.4 189.49,83 12,crouch,6.78284 49.6749 0,,
|
||||
471.461 1151.73 157.6,81,prone,0.218506 104.233 0,,
|
||||
-172.848 1391.13 204.125,146,crouch,10.5786 137.56 0,,
|
||||
-180.949 1616.88 204.125,146,crouch,10.0623 -121.607 0,,
|
||||
187.424 -717.3 28.6264,1 2 218,crouch,6.04248 74.5331 0,,
|
||||
507.637 -524.684 0.763947,66 217,stand,11.9147 -2.1295 0,,
|
||||
3475.17 2289.08 -23.0365,124,claymore,7.82105 117.834 0,,
|
||||
3267.01 2363.19 -27.2467,123,claymore,17.3132 61.7157 0,,
|
||||
2756.19 878.06 200.125,51,claymore,13.8635 -69.8621 0,,
|
||||
3372.65 225.005 144.125,54,claymore,10.0623 -91.0931 0,,
|
||||
2318.37 -117.813 136.125,117,claymore,16.7969 31.4923 0,,
|
||||
1647.88 -129.836 136.125,111,claymore,15.4181 -154.633 0,,
|
||||
631.694 -30.2527 -5.88102,65,claymore,3.84949 -20.3082 0,,
|
||||
488.056 -401.959 -3.73999,2,crouch,-1.50085 11.8048 0,,
|
||||
-219.364 94.9132 14.2371,101,claymore,-2.53906 160.296 0,,
|
||||
-1316.45 780.186 62.9556,9,crouch,6.78284 75.8496 0,,
|
||||
-446.06 1430.48 194.533,147,claymore,9.54589 -107.693 0,,
|
||||
-444.026 1576.56 203.295,148,claymore,9.02954 91.7358 0,,
|
||||
-14.0886 1433.53 190.131,12,claymore,8.85375 149.744 0,,
|
||||
-31.3223 1663.37 200.125,143,claymore,12.4847 -115.291 0,,
|
||||
344.886 1486.19 180.127,81,claymore,19.5599 -48.1366 0,,
|
||||
326.277 1512.95 181.317,82,claymore,15.7587 131.259 0,,
|
||||
553.585 1783.28 145.007,18,claymore,16.6266 61.507 0,,
|
||||
213.864 2608.73 203.782,15,claymore,3.32764 -14.1339 0,,
|
||||
-8.61835 3075.34 40.125,21,claymore,29.4037 -153.303 0,,
|
||||
-167.125 2576.8 -55.875,159,crouch,4.19006 173.54 0,,
|
||||
1076.91 3111.34 266.999,33,claymore,13.5175 147.118 0,,
|
||||
1004.7 3455.39 236.244,25,claymore,8.50769 -145.371 0,,
|
||||
1396.24 3914.17 251.65,27,claymore,8.3374 -156.077 0,,
|
||||
2136.64 3558.53 213.349,29,claymore,13.5175 13.6505 0,,
|
||||
2001.81 3862.6 255.907,169,claymore,54.6118 -23.1372 0,,
|
||||
2033.14 4427.43 252.125,167,crouch,3.15735 -101.184 0,,
|
||||
2830.97 3020.79 120.018,39,claymore,11.4465 87.8851 0,,
|
||||
1948.29 2440.28 9.22887,79,claymore,-1.50635 101.014 0,,
|
||||
1748.17 833.242 49.9044,157,claymore,10.238 67.1704 0,,
|
||||
1710.17 739.174 45.5919,70,claymore,31.6449 -109.638 0,,
|
||||
1603.92 581.356 106.436,135,crouch,11.6168 -132.94 0,,
|
||||
1678.63 558.569 109.391,135,crouch,8.3374 -74.2346 0,,
|
||||
2586.12 2127.43 0.125,77,grenade,-31.0803 -124.574 0,,
|
||||
2428.99 2151.85 0.124998,77,grenade,-29.1797 -157.725 0,,
|
||||
2168.73 2368.03 4.0746,78,grenade,-51.1084 135.45 0,,
|
||||
1862.79 2276.1 1.54328,79,grenade,-53.3551 81.2329 0,,
|
||||
1702.58 1952.9 -4.62086,79 93,grenade,-31.4264 -149.101 0,,
|
||||
1411.48 795.692 36.1009,69 68,grenade,-28.1415 129.227 0,,
|
||||
1361.08 133.656 -7.30795,138 64,grenade,-24.6918 38.7488 0,,
|
||||
1323.55 315.162 -1.11714,138 64,grenade,-38.3313 36.6779 0,,
|
||||
1469.05 -187.614 122.121,112 111,grenade,-42.8192 3.87268 0,,
|
||||
2776.1 30.4765 145.343,90 89,grenade,-37.2931 -177.764 0,,
|
||||
-848.754 910.477 163.034,103 7,grenade,-22.6208 -52.2345 0,,
|
||||
-443.162 1843.65 200.125,149 148,grenade,-26.7627 40.6494 0,,
|
||||
319.355 2516.99 244.166,16,grenade,-24.6918 -137.357 0,,
|
||||
1702.31 2783.91 313.044,31 32 265 266 275,stand,38.8531 -15.1172 0,,
|
||||
1810.83 2774.46 338.065,264,grenade,-24.8621 -66.0553 0,,
|
||||
1763.73 2709.52 353.203,264,grenade,-10.7062 -22.3682 0,,
|
||||
1963.71 2803.39 344.858,31,grenade,-12.6013 -106.633 0,,
|
||||
1949.84 3271.99 250.595,30 171,grenade,-29.1797 18.3801 0,,
|
||||
3094.52 993.385 64.1289,270 50,grenade,-49.8999 -146.865 0,,
|
||||
3073.13 1047.59 64.125,48 269,grenade,-52.1466 -169.656 0,,
|
||||
3293.02 -77.3962 138.517,53,grenade,-38.5016 93.1421 0,,
|
||||
3408.12 -97.798 149.874,53,grenade,-29.35 81.9196 0,,
|
||||
1274.5 -164.038 47.4525,63,javelin,1.3623 79.6564 0,1559.54 1350.5 81.4397,
|
||||
-686.368 747.146 220.29,7 199,javelin,11.8817 -54.1791 0,152.563 -512.872 -35.7789,
|
||||
1876.98 2659.02 374.743,264,javelin,14.9908 -67.511 0,2430.68 1231.43 19.5088,
|
||||
1947.81 2684.54 383.757,31,javelin,14.3756 -112.692 0,1389.67 1362.26 74.3719,
|
||||
1930.47 2715.33 377.396,31,javelin,8.42651 -105.309 0,1096.53 -224.926 -0.120511,
|
||||
2898.73 3044.99 125.084,39,javelin,3.47717 -107.095 0,2173.33 707.685 57.1169,
|
||||
3447.99 2849.19 128.125,41,javelin,2.97729 -90.4395 0,3438.98 478.621 69.5023,
|
||||
3539.33 2840.86 128.662,41,javelin,5.9491 -95.235 0,3404.82 1523.4 63.9357,
|
||||
3641.07 2865.21 128.125,41,javelin,1.01624 -101.591 0,3054.65 48.226 130.67,
|
||||
3574.3 2792.06 129.901,41,crouch,3.70239 -99.7064 0,,
|
||||
3383.54 2823.6 130.228,41,crouch,0.939331 -90.3845 0,,
|
||||
3280.37 2846.08 128.654,41,crouch,4.91089 -146.157 0,,
|
||||
3409.55 1478.23 66.7579,183,javelin,3.1311 -159.587 0,1906.89 930.793 40.6238,
|
||||
2648.19 823.72 200.125,51,javelin,4.98779 159.972 0,1071.87 1397.33 112.877,
|
||||
2667.32 883.77 200.125,51,javelin,8.65173 -151.721 0,1047.63 11.8432 -19.1357,
|
||||
3127.59 164.801 130.299,89,javelin,0.131836 79.0906 0,3669.21 2947.04 164.284,
|
||||
3436.84 297.479 144.125,54,javelin,1.4502 87.3962 0,3548.82 2760 141.719,
|
||||
1832.21 144.153 136.125,116,javelin,7.22351 61.4136 0,2494.56 1343.97 22.4178,
|
||||
1647.08 -27.2065 136.125,113,javelin,5.95459 178.281 0,-203.137 12.1259 10.8132,
|
||||
|
@@ -0,0 +1,239 @@
|
||||
238
|
||||
-1602 1436 -142.728,1 42 41 156,stand,,,
|
||||
-1189.48 1540.37 -140.532,0 2 42,stand,,,
|
||||
-838.592 1549.15 -140.758,1 3 40 4,stand,,,
|
||||
-475.163 1420.65 -82.5541,2 4 40 158,stand,,,
|
||||
-474.49 1148.94 -81.6161,3 5 40 2,stand,,,
|
||||
1.7197 1138.06 -70.9783,4 6,stand,,,
|
||||
320.282 1139.66 -71.875,5 7 8,stand,,,
|
||||
471.149 1131.97 -71.875,6 34,stand,,,
|
||||
328.996 1375.58 -71.875,6 13 95 169,stand,,,
|
||||
635.512 1219.34 -119.875,10 33 170,stand,,,
|
||||
842.891 1233.12 -71.875,9 11 176,stand,,,
|
||||
857.962 1635.15 -71.875,10 12 177,stand,,,
|
||||
706.497 1551.23 -71.875,11 13 174,stand,,,
|
||||
376.865 1505.26 -71.875,12 8 95 163,stand,,,
|
||||
1186.59 1567.96 -73.4892,15 32 177,stand,,,
|
||||
1764.55 1505.55 -81.5711,14 16 179,stand,,,
|
||||
1789.57 916.273 -149.625,15 231 235 237,stand,,,
|
||||
2322.31 624.038 -151.875,18 184 195,stand,,,
|
||||
2310.91 752.838 -151.875,17 19,stand,,,
|
||||
2015.18 735.306 -17.875,18 186 190,stand,,,
|
||||
2026.71 345.598 -17.875,21 190 192,stand,,,
|
||||
2277.68 352.407 -17.875,20 193,stand,,,
|
||||
2091.63 335.371 -151.875,28 109 195 110 184,stand,,,
|
||||
2095.13 -186.302 -195.911,24 112 113,stand,,,
|
||||
1882.31 -176.857 -194.478,23 25 26 89 200,stand,,,
|
||||
1921.53 -560.936 -176.501,24 92 199,stand,,,
|
||||
1716.45 217.444 -200.123,24 27 29 83 96 219,stand,,,
|
||||
1946.21 216.162 -151.875,26 28,stand,,,
|
||||
1914.38 336.926 -151.875,27 22 221,stand,,,
|
||||
1590.48 593.568 -175.342,26 30 88 84 219 236,stand,,,
|
||||
1544.68 879.233 -127.493,29 31 236 235,stand,,,
|
||||
1180.85 906.882 -127.38,30 32 33,stand,,,
|
||||
1184.1 1211.75 -54.6946,31 14,stand,,,
|
||||
662.28 907.972 -136.02,31 9 34 87,stand,,,
|
||||
452.779 818.663 -136.862,33 7 35 38 218,stand,,,
|
||||
-132.388 807.29 -126.894,34 36,stand,,,
|
||||
-507.431 933.453 -136.01,35 37 39,stand,,,
|
||||
-75.1428 1029.5 -135.875,36 38,stand,,,
|
||||
292.354 1001.69 -135.875,37 34,stand,,,
|
||||
-872.467 866.129 -135.886,36 40 44 41,stand,,,
|
||||
-840.551 1212.47 -136.457,39 3 41 43 2 4,stand,,,
|
||||
-1162.76 1089.42 -139.69,40 42 43 44 39 0,stand,,,
|
||||
-1485.67 1055.61 -129.875,41 0 45 157 1,stand,,,
|
||||
-1158.22 673.125 -137.875,41 44 45 153 40,stand,,,
|
||||
-798.525 635.906 -122.076,39 43 59 99 41,stand,,,
|
||||
-1486.44 680.002 -127.875,43 42 46 100 130 131 132,stand,,,
|
||||
-1585.84 209.056 -127.875,45 47 48 131 132 134,stand,,,
|
||||
-1457.84 195.324 -127.875,46 132 137,stand,,,
|
||||
-1601.77 -99.7759 6.125,46 49,stand,,,
|
||||
-1330.39 -71.0397 6.125,48 50,stand,,,
|
||||
-1336.46 416.821 6.125,49,stand,,,
|
||||
-1464.1 -232.026 -127.875,52 138 142 151 232,stand,,,
|
||||
-1634.92 -432.979 -127.875,51 140 141 143 233,stand,,,
|
||||
-1228.84 -669.555 -127.875,142 143 144 150 233,stand,,,
|
||||
-763.557 -710.855 -132.562,148 147 150,stand,,,
|
||||
-678.781 -389.124 -139.875,56 74 145,stand,,,
|
||||
-658.257 -128.441 -139.92,55 57 73 146,stand,,,
|
||||
-952.672 -109.98 -139.875,56 58 146 145 151 152,stand,,,
|
||||
-905.728 107.123 -125.764,57 59 60 151 152 153,stand,,,
|
||||
-875.829 414.734 -115.624,58 44 61 152 154,stand,,,
|
||||
-498.772 101.683 -84.7208,58 63 106 210,stand,,,
|
||||
-504.656 399.463 -124.651,62 59 69 105,stand,,,
|
||||
-504.696 651.212 -67.375,61 68 98,stand,,,
|
||||
31.29 104.07 -87.4462,60 64 229,stand,,,
|
||||
427.144 107.489 -112.853,63 65 69 70 71,stand,,,
|
||||
411.628 429.725 -69.375,64 66 108 117,stand,,,
|
||||
431.344 703.556 -69.375,65 67 211,stand,,,
|
||||
58.7908 655.105 -67.375,66 212 213 214 217 230,stand,,,
|
||||
-217.423 615.519 -67.375,62 215 230,stand,,,
|
||||
88.5694 453.072 -87.7618,64 61 116,stand,,,
|
||||
729.786 115.024 -139.875,64 80 86 115,stand,,,
|
||||
362.031 -173.569 -138.607,64 72 80,stand,,,
|
||||
5.79534 -153.508 -138.897,71 73 75,stand,,,
|
||||
-341.083 -119.735 -139.875,72 56 93,stand,,,
|
||||
-352.543 -401.156 -140.547,55 75 209 208,stand,,,
|
||||
37.5556 -423.648 -139.875,74 72 76 107 94,stand,,,
|
||||
255.141 -466.15 -135.875,75 77 79 205,stand,,,
|
||||
368.646 -593.411 -135.875,76 78 204,stand,,,
|
||||
649.453 -497.446 -135.875,77 79 80 202 203 234,stand,,,
|
||||
429.677 -347.731 -135.875,78 76 234,stand,,,
|
||||
705.537 -148.276 -139.875,78 71 70 81 234,stand,,,
|
||||
1043.04 -153.289 -139.875,80 82 89 90,stand,,,
|
||||
1088.63 108.952 -127.655,81 114 222 227,stand,,,
|
||||
1522.83 121.386 -188.848,26 84 89 97 222,stand,,,
|
||||
1501.2 271.371 -187.101,83 85 29,stand,,,
|
||||
1104.38 350.169 -160.919,84 86,stand,,,
|
||||
778.307 369.764 -119.478,85 70 87 108,stand,,,
|
||||
828.597 640.188 -131.314,86 33 88,stand,,,
|
||||
1139.18 614.43 -154.27,87 29,stand,,,
|
||||
1444.18 -167.716 -162.245,83 24 81 200,stand,,,
|
||||
941.959 -562.382 -139.692,81 91 202,stand,,,
|
||||
1085.23 -624.875 -138.491,90 92 201,stand,,,
|
||||
1570.06 -592.937 -152.538,91 25 200,stand,,,
|
||||
-195.868 -79.6483 -139.378,73 94,stand,,,
|
||||
-189.02 -127.42 -139.875,93 75,stand,,,
|
||||
221.61 1410.82 -71.875,8 163 164 13,stand,,,
|
||||
1615.77 217.438 -196.597,26 97,stand,,,
|
||||
1658.09 211.492 -197.384,96 83,stand,,,
|
||||
-698.341 649.666 -67.375,62 99,climb,45.1318 -173.875 0,,
|
||||
-749.544 648.274 -124.751,98 44,climb,-42.572 2.93884 0,,
|
||||
-1593.5 766.875 -127.875,45 101,climb,-67.3999 97.7069 0,,
|
||||
-1587.78 766.875 127.277,100 102,climb,76.076 87.6764 0,,
|
||||
-1584.32 833.476 142.125,101 103 104,stand,26.7529 -132.759 0,,
|
||||
-1303.06 820.774 142.125,102 119 124,stand,26.0333 -89.5715 0,,
|
||||
-1714.05 814.595 142.125,102 118,stand,23.9899 -171.601 0,,
|
||||
-495.738 223.45 -129.961,61 106,climb,7.30713 -87.7368 0,,
|
||||
-500.298 189.302 -72.0113,105 60,climb,9.6637 -88.6542 0,,
|
||||
49.119 -644.53 -139.875,75 206 207,stand,12.9376 -83.0511 0,,
|
||||
476.234 379.92 -69.375,65 86,stand,22.4518 0.55481 0,,
|
||||
2098.26 50.5204 -151.875,22 110 111 195,stand,12.63 -1.03271 0,,
|
||||
2278.92 53.4398 -151.875,109 195 196 22,stand,22.9681 -5.43823 0,,
|
||||
2097.12 -63.0843 -151.875,109 112 194,climb,32.6856 -89.1486 0,,
|
||||
2100.06 -109.516 -192.057,111 23,climb,-25.6464 96.5698 0,,
|
||||
2203.29 -180.325 -198.311,23 197 198,stand,11.8115 4.79553 0,,
|
||||
880.221 111.545 -97.2519,82 115 228,climb,32.7899 178.566 0,,
|
||||
828.875 113.916 -139.875,114 70,climb,-17.2528 6.22925 0,,
|
||||
300.706 451.748 -115.326,69 117,climb,1.98425 -5.00427 0,,
|
||||
335.755 448.525 -69.375,116 65,climb,24.1931 -0.911865 0,,
|
||||
-1750.88 834.875 142.125,104,crouch,19.1656 -43.8574 0,,
|
||||
-1297.25 748.307 142.125,103,crouch,11.7389 -0.692139 0,,
|
||||
-1328.41 33.5764 144.125,121 125 126,stand,30.0421 87.5391 0,,
|
||||
-1327.85 162.171 144.125,122 120,stand,32.2888 89.0936 0,,
|
||||
-1327.74 317.203 144.125,121 123 127,stand,32.4591 87.3688 0,,
|
||||
-1327.89 422.154 144.125,124 122 128,stand,32.981 88.5773 0,,
|
||||
-1327.7 611.168 144.125,103 123 129,stand,33.6676 87.0227 0,,
|
||||
-1300.3 -36.4514 142.125,120,crouch,15.1941 0.516357 0,,
|
||||
-1304.67 103.711 142.125,120,crouch,13.6395 -1.2085 0,,
|
||||
-1301.94 237.143 142.125,122,crouch,15.0238 0.516357 0,,
|
||||
-1303.56 479.675 142.125,123,crouch,11.2225 -3.97156 0,,
|
||||
-1285.87 613.991 142.125,124,crouch,11.9147 -0.692139 0,,
|
||||
-1311.8 824.33 -127.875,45,crouch,7.08069 -130.018 0,,
|
||||
-1668.6 433.668 -127.875,46 45,stand,8.28918 80.6287 0,,
|
||||
-1377.28 461.325 -127.875,45 47 46 133,stand,24.0533 -98.2562 0,,
|
||||
-1294.21 458.262 -127.875,132,crouch,7.12891 122.574 0,,
|
||||
-1667.22 140.995 -127.875,46 135,stand,18.8733 -90.4834 0,,
|
||||
-1664.84 -44.3911 -127.875,134 136 137,stand,43.219 -90.3131 0,,
|
||||
-1741.32 -98.9715 -127.875,135,crouch,4.53613 42.1216 0,,
|
||||
-1481.59 -64.8509 -127.875,135 47 138 139,stand,18.3459 82.5293 0,,
|
||||
-1457.72 -145.299 -127.875,137 51,stand,54.6063 -90.1373 0,,
|
||||
-1304.22 -86.1232 -127.875,137,crouch,4.53613 152.452 0,,
|
||||
-1695.19 -580.952 -127.875,52,crouch,2.81128 45.0604 0,,
|
||||
-1671.67 -256.434 -127.875,52,crouch,4.53613 -39.0289 0,,
|
||||
-1270.78 -442.709 -127.748,51 53 232,stand,39.9341 -90.3131 0,,
|
||||
-1435.21 -520.496 -127.875,53 52,stand,17.1375 167.816 0,,
|
||||
-1406.22 -706.765 -127.875,53,crouch,6.0907 37.4414 0,,
|
||||
-684.609 -441.057 -139.875,146 55 148 57,stand,30.9528 -178.737 0,,
|
||||
-856.219 -441.337 -138.091,147 145 57 56,stand,31.8152 -155.078 0,,
|
||||
-863.148 -586.378 -137.571,54 146 150,stand,30.6067 -31.1078 0,,
|
||||
-678.314 -576.86 -139.951,54 145 149,stand,25.0806 -37.3206 0,,
|
||||
-571.037 -695.37 -129.409,148,crouch,6.0907 133.956 0,,
|
||||
-932.611 -654.784 -128.115,147 53 54,stand,64.9664 178.682 0,,
|
||||
-1114.65 -141.274 -139.12,57 51 58 152 232,stand,27.1515 -161.823 0,,
|
||||
-1149.45 75.6298 -134.476,151 58 57 153 59,stand,22.8394 -93.4497 0,,
|
||||
-1102.57 318.452 -135.286,152 43 58 154 155,stand,10.4083 25.1642 0,,
|
||||
-925.673 358.789 -110.43,59 153,stand,82.0612 -176.182 0,,
|
||||
-1228.4 342.392 -135.318,153,crouch,5.39856 -32.7008 0,,
|
||||
-1746.66 1653.15 -103.344,0,crouch,6.60706 -45.1373 0,,
|
||||
-1680.35 889.412 -129.393,42,crouch,3.49792 36.7108 0,,
|
||||
-272.601 1435.44 -75.875,3 159 160,stand,69.4598 -70.8728 0,,
|
||||
-139.836 1435.93 -71.875,158 165 162,stand,82.2369 -8.54187 0,,
|
||||
-254.079 1634.17 -68.5114,158 161,stand,54.9524 -64.4897 0,,
|
||||
-175.316 1662.68 -67.4006,160,crouch,5.22827 -147.892 0,,
|
||||
-115.607 1521.8 -71.875,159 163 168,stand,38.3795 -12.1838 0,,
|
||||
41.6227 1518.3 -71.875,162 164 95 167 13,stand,36.3086 -91.0931 0,,
|
||||
38.7711 1363.92 -71.875,163 165 95 166,stand,34.408 -174.139 0,,
|
||||
-104.343 1373.68 -71.875,159 164,stand,40.9668 118.18 0,,
|
||||
-42.793 1271.32 -71.875,164,crouch,4.19006 38.7488 0,,
|
||||
78.0932 1656.11 -71.875,163,crouch,2.6355 -107.49 0,,
|
||||
-117.903 1605.9 -71.875,162,crouch,4.01978 -41.7096 0,,
|
||||
463.444 1345.56 -71.875,8 171 173,stand,35.4407 -4.422 0,,
|
||||
632.422 1334.64 -119.875,9 172 175,stand,32.8589 -68.302 0,,
|
||||
548.438 1330.29 -71.875,169 172,stand,82.9291 -55.025 0,,
|
||||
567.125 1337.86 -119.875,171 170,climb,4.01978 176.858 0,,
|
||||
440.698 1209.17 -71.875,169,climb,6.0907 66.0004 0,,
|
||||
683.588 1434.46 -71.875,12 175,stand,70.498 70.329 0,,
|
||||
682.796 1416.87 -119.875,174 170,climb,5.22827 87.5885 0,,
|
||||
793.199 1316.93 -71.875,10,crouch,11.9629 -150.859 0,,
|
||||
1000.21 1599.69 -83.9826,14 11 178,stand,18.0054 -163.636 0,,
|
||||
936.489 1334.7 -86.7496,177,crouch,2.6355 52.7124 0,,
|
||||
1958.99 1652.74 -98.9451,15,crouch,5.22827 -139.636 0,,
|
||||
1833.06 696.474 -151.875,181 182 237,stand,22.323 98.465 0,,
|
||||
1946.87 646.076 -151.875,180 183 184,stand,72.915 4.35608 0,,
|
||||
1740.35 665.841 -127.875,180,crouch,10.7544 32.1515 0,,
|
||||
1966.16 758.848 -151.875,181,crouch,7.12891 -139.999 0,,
|
||||
2065.26 633.851 -151.875,17 181 185 22,stand,41.6589 140.751 0,,
|
||||
2118.45 760.402 -151.875,184,crouch,4.71191 -91.1426 0,,
|
||||
1915.77 735.431 -17.875,19 187 189,stand,53.5736 -159.692 0,,
|
||||
1787.54 734.533 -17.875,186 188,stand,35.9625 -164.009 0,,
|
||||
1785.38 634.268 -17.875,187,crouch,14.2041 -112.033 0,,
|
||||
1898.49 638.613 -17.875,186,crouch,15.7587 -103.222 0,,
|
||||
2028.2 493.811 -17.875,20 19 191,stand,79.8199 100.355 0,,
|
||||
2013.11 491.214 -17.875,190,crouch,11.6168 177.885 0,,
|
||||
2016.37 331.038 -17.875,20,crouch,18.692 174.952 0,,
|
||||
2306.03 281.49 -17.875,21,crouch,5.57434 138.691 0,,
|
||||
2092.79 -50.3303 -151.875,111,crouch,21.4606 -88.5333 0,,
|
||||
2234.62 206.229 -151.875,110 22 17 109,stand,35.6165 102.09 0,,
|
||||
2308.29 -27.096 -151.875,110,crouch,3.84949 129.54 0,,
|
||||
2220.16 -255.72 -194.235,113,crouch,4.01978 157.852 0,,
|
||||
2208.73 -113.767 -199.055,113,crouch,1.60278 -168.827 0,,
|
||||
1960.19 -614.837 -176.074,25,crouch,3.67371 123.316 0,,
|
||||
1574.65 -337.581 -155.575,92 89 24,stand,21.1145 98.2947 0,,
|
||||
931.17 -624.875 -139.962,91,crouch,3.32764 48.7244 0,,
|
||||
795.806 -517.942 -135.875,78 90,stand,68.4216 2.64771 0,,
|
||||
763.301 -610.419 -135.875,78,crouch,6.43677 131.276 0,,
|
||||
201.748 -613.881 -135.875,77,crouch,5.39856 48.23 0,,
|
||||
189.127 -338.021 -135.875,76,crouch,7.2992 -53.1189 0,,
|
||||
144.016 -706.495 -138.652,107,crouch,3.49792 136.296 0,,
|
||||
-170.77 -701.491 -130.32,107,crouch,3.32764 53.7671 0,,
|
||||
-413.385 -389.037 -140.704,74,claymore,15.4126 -1.65344 0,,
|
||||
-288.656 -398.019 -139.478,74,claymore,18.692 177.391 0,,
|
||||
-315.096 29.0081 -68.2489,60,crouch,6.77734 -7.70142 0,,
|
||||
490.408 737.373 -69.375,66,crouch,4.19006 -134.604 0,,
|
||||
-5.41109 723.942 -67.375,67,crouch,7.64526 -36.0022 0,,
|
||||
297.624 586.071 -67.375,67,crouch,5.22827 154.094 0,,
|
||||
164.827 587.441 -67.375,67,crouch,8.16162 -84.1718 0,,
|
||||
-235.775 674.783 -67.375,68 216,stand,59.7864 -54.6515 0,,
|
||||
-206.583 725.153 -67.375,215,crouch,7.12341 -139.938 0,,
|
||||
166.792 728.954 -67.375,67,crouch,7.2992 85.2264 0,,
|
||||
418.776 702.113 -125.857,34,crouch,6.43677 83.3423 0,,
|
||||
1760.87 515.37 -181.369,220 29 26,climb,5.22827 -0.384521 0,,
|
||||
1768.76 514.718 -119.875,219 221,climb,85 -178.566 0,,
|
||||
1886.37 505.246 -151.875,220 28,stand,39.9341 -69.6259 0,,
|
||||
1276.03 107.148 -152.574,82 83 223 224 225 226,stand,54.6118 9.646 0,,
|
||||
1319.14 188.258 -161.302,222,crouch,10.0623 84.7595 0,,
|
||||
1325.22 47.4864 -158.943,222,crouch,4.36584 -90.6647 0,,
|
||||
1230.22 60.0725 -147.329,222,crouch,7.99133 -93.252 0,,
|
||||
1228.88 173.44 -148.132,222,crouch,8.50769 93.9166 0,,
|
||||
1008.08 168.013 -115.919,82,crouch,10.238 93.2245 0,,
|
||||
917.934 173.522 -102.769,114,crouch,8.85376 98.4155 0,,
|
||||
-223.468 192.099 -59.6219,63,crouch,10.238 164.196 0,,
|
||||
-29.5941 603.464 -67.375,68 67,stand,44.422 7.08069 0,,
|
||||
1954.78 811.733 -153.955,16,crouch,0.564575 140.537 0,,
|
||||
-1201.81 -261.257 -128.164,142 151 51,stand,25.4321 69.9335 0,,
|
||||
-1552.58 -628.494 -127.875,52 53,stand,20.0763 34.7168 0,,
|
||||
633.751 -301.321 -135.875,80 78 79,stand,56.3367 82.5403 0,,
|
||||
1624.91 928.901 -136.785,16 236 30,stand,45.0659 -112.571 0,,
|
||||
1621.34 807.802 -139.875,235 237 29 30,stand,33.4973 -10.5249 0,,
|
||||
1816.99 812.693 -151.375,236 16 180,stand,58.1891 -25.719 0,,
|
||||
|
@@ -0,0 +1,324 @@
|
||||
323
|
||||
-3674.85 1503.76 39.8551,1,stand,,,
|
||||
-3380.39 1504.83 43.9447,0 2 61 310,stand,,,
|
||||
-3379.71 1006.01 36.375,1 3 4,stand,,,
|
||||
-3735.62 993.715 43.1702,2,stand,,,
|
||||
-3351.84 738.919 32.1251,2 5 8,stand,,,
|
||||
-3296.41 170.423 32.125,4 6,stand,,,
|
||||
-2750.32 14.2762 30.9112,5 7 9,stand,,,
|
||||
-2716.43 331.935 33.2392,6 8 159,stand,,,
|
||||
-2806.84 805.132 32.1138,4 7 157,stand,,,
|
||||
-2719.87 -364.475 39.1956,6 10 160 161,stand,,,
|
||||
-2617.16 -941.703 20.0858,9 11 161,stand,,,
|
||||
-2586.51 -1364.0 46.5738,10 12 28,stand,,,
|
||||
-2427.5 -1197.59 34.2243,11 13 314,stand,,,
|
||||
-2274.75 -1356.55 30.8526,12 14 313,stand,,,
|
||||
-1959.93 -1038.11 20.45,13 15 136 161 312,stand,,,
|
||||
-1769.63 -656.638 29.7148,14 16 138 312,stand,,,
|
||||
-1481.6 -647.304 -13.7406,15 17,stand,,,
|
||||
-1426.2 -653.372 -19.2785,16 18 229 231,stand,,,
|
||||
-1379.82 -896.29 -22.7607,17 19,stand,,,
|
||||
-1034.34 -1147.67 -35.5943,18 233 234,stand,,,
|
||||
-687.131 -1361.0 -0.85619,84 85 230 234 235 236,stand,,,
|
||||
-1003.3 -1537.72 -38.7649,236 237,stand,,,
|
||||
-1068.42 -1800.64 -33.9859,237 238,stand,,,
|
||||
-975.398 -2126.34 -19.3149,24 83 238 243,stand,,,
|
||||
-1072.66 -2518.51 -24.2726,23 25 246,stand,,,
|
||||
-1262.69 -2486.97 -20.3654,24 26 245,stand,,,
|
||||
-1593.46 -2709.12 42.0033,25 27 29,stand,,,
|
||||
-1998.84 -2306.68 44.1286,26 28 134 135,stand,,,
|
||||
-2281.83 -1805.77 -6.42795,11 27 134 135,stand,,,
|
||||
-1127.25 -3027.59 70.9804,26 30,stand,,,
|
||||
-633.189 -3259.66 32.1256,29 31 246 247,stand,,,
|
||||
-106.875 -3536.36 43.4875,30 32 122,stand,,,
|
||||
464.106 -3541.85 57.7952,31 33 123,stand,,,
|
||||
1024.98 -3576.04 68.8623,32 34 125,stand,,,
|
||||
1610.21 -3631.07 53.6488,33 35 175 176,stand,,,
|
||||
2126.35 -3360.59 34.6497,34 173 174 176,stand,,,
|
||||
2607.52 -3108.85 39.6414,37 173,stand,,,
|
||||
3166.59 -2986.61 40.1826,36 167 169,stand,,,
|
||||
3617.04 -2617.99 34.1805,39 165 167,stand,,,
|
||||
3763.5 -2041.06 0.35288,38 40 77 105 165,stand,,,
|
||||
3884.48 -1466.09 -34.0375,39 41 77 104,stand,,,
|
||||
3982.64 -902.546 -26.1634,40 42 103 104,stand,,,
|
||||
4008.92 -328.589 -43.7259,41 43 103,stand,,,
|
||||
3913.51 230.243 -64.371,42 44 102,stand,,,
|
||||
3738.32 773.233 -54.6229,43 45,stand,,,
|
||||
3345.25 1203.2 -47.0126,44 46 72 73,stand,,,
|
||||
2944.11 1583.9 -50.9204,45 47 100,stand,,,
|
||||
2383.02 1737.09 -64.8507,46 48 71,stand,,,
|
||||
1794.49 1826.78 -48.1362,47 49,stand,,,
|
||||
1204.4 1844.86 -56.076,48 50 69,stand,,,
|
||||
766.327 2207.8 -5.90736,49 51 68,stand,,,
|
||||
353.805 2441.15 41.3859,50 52,stand,,,
|
||||
54.8014 2466.89 44.5042,51 53 148,stand,,,
|
||||
-506.251 2494.93 48.108,52 54 151,stand,,,
|
||||
-1040.39 2516.49 46.9139,53 55 152,stand,,,
|
||||
-1611.91 2401.39 34.2677,54 56 155,stand,,,
|
||||
-2137.27 2175.47 103.273,55 57,stand,,,
|
||||
-1943.87 1667.9 58.5987,56 58 299,stand,,,
|
||||
-2266.45 1403.54 36.812,57 59 62,stand,,,
|
||||
-2619.33 1708.15 48.7874,58 60 61,stand,,,
|
||||
-2687.33 2191.31 70.2822,59 304,stand,,,
|
||||
-2968.75 1710.97 33.4403,1 59 156 306 307,stand,,,
|
||||
-1976.68 1128.72 -20.6108,58 63 158 299,stand,,,
|
||||
-1697.72 630.144 -44.1885,62 64 140 159,stand,,,
|
||||
-1116.64 637.49 -61.3039,63 65 297 298,stand,,,
|
||||
-560.325 708.428 -60.8995,64 66 142 298 322,stand,,,
|
||||
6.95272 826.593 -83.3442,65 67 144 281 322,stand,,,
|
||||
337.642 1270.75 -102.562,66 68 92,stand,,,
|
||||
714.991 1696.01 -81.203,50 67 69 92 279,stand,,,
|
||||
1273.34 1605.59 -88.7674,49 68 70 273,stand,,,
|
||||
1692.44 1618.52 -100.209,69 71,stand,,,
|
||||
2209.82 1393.62 -46.4861,47 70 72 147,stand,,,
|
||||
2587.12 993.021 -125.949,45 71 73 94 95 100,stand,,,
|
||||
2936.97 560.67 -101.476,45 72 74 101,stand,,,
|
||||
3151.96 50.1807 -7.32156,73 75 96 102 103 272,stand,,,
|
||||
3137.57 -489.94 32.1245,74 119 268 271 272,stand,,,
|
||||
3015.75 -1397.6 -13.3417,77 78 104 258 269,stand,,,
|
||||
3440.93 -1736.18 -36.0328,39 40 76,stand,,,
|
||||
2630.34 -1773.9 36.9809,76 79 258 259,stand,,,
|
||||
2267.84 -2190.2 47.5481,78 80 171 172 259,stand,,,
|
||||
1775.82 -2468.09 34.8469,79 127 171 172 185,stand,,,
|
||||
652.927 -2284.02 38.4947,82 129 179 182 183,stand,,,
|
||||
93.9023 -2191.9 43.3319,81 83 84 120 121 182,stand,,,
|
||||
-465.675 -2115.0 5.48709,23 82 84 247,stand,,,
|
||||
-340.565 -1579.07 3.0257,20 82 83 85 163,stand,,,
|
||||
-418.511 -986.696 -7.13375,20 84 86 162 163 230,stand,,,
|
||||
-413.442 -747.073 -58.8259,85 196 222,stand,,,
|
||||
-1190.98 -462.129 -18.7827,225 231,stand,,,
|
||||
687.753 -826.504 -38.3338,89 110 111 202,stand,,,
|
||||
845.337 -434.345 -42.7535,88 110 111 206 209 210,stand,,,
|
||||
711.995 124.606 10.1922,99 209 315 320,stand,,,
|
||||
926.154 1176.64 -27.6615,92,stand,,,
|
||||
878.815 1222.89 -29.3466,67 68 91 93 316,stand,,,
|
||||
1458.26 1128.88 -92.0428,92 94 145 273 318,stand,,,
|
||||
1917.96 788.991 -72.1122,72 93 95 147 318,stand,,,
|
||||
2424.43 516.201 -64.7289,72 94 96 97,stand,,,
|
||||
2744.87 92.9372 -21.2099,74 95 97 272,stand,,,
|
||||
2179.3 65.6046 36.1333,95 96 98,stand,,,
|
||||
1641.99 59.9088 58.899,97 99 146,stand,,,
|
||||
1136.84 58.6523 78.0674,90 98 146 319,stand,,,
|
||||
2625.37 1447.52 -119.996,46 72,stand,,,
|
||||
3428.3 561.749 -116.811,73 102,stand,,,
|
||||
3646.01 63.6447 -102.62,43 74 101 103,stand,,,
|
||||
3717.45 -471.242 -67.8401,41 42 74 102 104 268 271,stand,,,
|
||||
3720.09 -974.014 -32.2592,40 41 76 103 105,stand,,,
|
||||
3197.74 -1025.64 17.7745,39 104 269 271,stand,,,
|
||||
2508.99 -916.234 -45.4543,107 265,stand,,,
|
||||
1992.63 -909.4 -32.853,106 108,stand,,,
|
||||
1701.46 -898.296 -23.875,107 116 215 249,stand,,,
|
||||
1146.97 -890.78 -62.5494,212 213 215 216 217,stand,,,
|
||||
948.535 -694.379 -49.9222,88 89 111 212 220,stand,,,
|
||||
838.483 -988.248 -50.9082,88 89 110 211 213,stand,,,
|
||||
405.976 -1165.14 43.6188,113 132 163 164 203 221,stand,,,
|
||||
656.591 -1498.41 6.85281,112 114 120 186,stand,,,
|
||||
889.894 -1884.78 6.75567,113 115 120 183 186,stand,,,
|
||||
1471.52 -1798.5 32.403,114 116 184 257 259,stand,,,
|
||||
1669.4 -1367.94 3.23722,108 115 253 258 259,stand,,,
|
||||
1761.18 -415.582 45.8502,118 249,stand,,,
|
||||
2332.85 -497.417 71.3972,117 119 267,stand,,,
|
||||
2729.31 -561.248 52.5694,75 118 267,stand,,,
|
||||
253.97 -1811.08 62.6674,82 113 114 164,stand,,,
|
||||
35.4648 -2710.24 36.9269,82 122,stand,,,
|
||||
-88.2174 -3099.57 31.7446,31 121 123,stand,,,
|
||||
406.383 -3089.81 46.4821,32 122 124 182,stand,,,
|
||||
867.345 -2962.5 -9.94767,123 125 129,stand,,,
|
||||
871.036 -3195.19 37.3691,33 124 126,stand,,,
|
||||
1452.31 -3168.2 32.1245,125 127 174 175,stand,,,
|
||||
1508.79 -2618.46 34.4241,80 126 128 174 185,stand,,,
|
||||
1090.99 -2665.59 38.0953,127 129,stand,,,
|
||||
828.322 -2646.21 25.1528,81 124 128 182,stand,,,
|
||||
151.214 -339.389 62.01,131 133 198 200,stand,,,
|
||||
681.789 -483.375 104.824,130 132 189 190 199 200 205,stand,,,
|
||||
767.57 -1039.83 81.8029,112 131 187 188 203,stand,,,
|
||||
-289.677 -427.379 59.9318,130,stand,,,
|
||||
-1617.42 -2115.38 -16.3841,27 28 135 245 248,stand,,,
|
||||
-1959.07 -1681.62 4.31085,27 28 134 136 248,stand,,,
|
||||
-1585.49 -1401.36 44.476,14 135 137,stand,,,
|
||||
-1406.08 -1648.2 45.3356,136 241 248,stand,,,
|
||||
-2106.97 -391.883 33.9498,15 139 160 161,stand,,,
|
||||
-1814.35 46.3852 58.3838,138 140 160,stand,,,
|
||||
-1355.42 137.461 56.974,63 139 141,stand,,,
|
||||
-821.677 54.8036 90.9316,140 142,stand,,,
|
||||
-308.679 20.5796 69.0395,65 141 143,stand,,,
|
||||
218.923 106.799 53.3278,142 320 322,stand,,,
|
||||
339.725 758.977 -78.1823,66 316,stand,,,
|
||||
1254.13 648.417 -47.8096,93 146 317 318,stand,,,
|
||||
1539.74 394.979 -30.4035,98 99 145,stand,,,
|
||||
2064.97 1035.88 -34.5769,71 94 273,stand,,,
|
||||
-26.1038 2429.41 39.5887,52 151 274,stand,,,
|
||||
-41.3369 2050.8 11.7897,286 287 288 289,stand,,,
|
||||
-275.584 1826.37 -87.8542,151 280 281 282 297,stand,,,
|
||||
-326.686 2307.48 18.4174,53 148 150 152 283,stand,,,
|
||||
-822.784 2073.99 -0.436187,54 151 153,stand,,,
|
||||
-1010.4 1996.09 -10.125,152 154 282,stand,,,
|
||||
-1076.79 2259.93 58.925,153 155 300,stand,,,
|
||||
-1538.33 2135.48 42.925,55 154 301,stand,,,
|
||||
-2921.33 1334.2 22.8851,61 157,stand,,,
|
||||
-2667.02 1134.54 5.75434,8 156 158,stand,,,
|
||||
-2286.98 841.571 -24.2825,62 157 159,stand,,,
|
||||
-2177.06 346.521 -24.0607,7 63 158 160,stand,,,
|
||||
-2217.82 -59.6893 -3.97968,9 138 139 159,stand,,,
|
||||
-2260.44 -819.265 4.28806,9 10 14 138 312,stand,,,
|
||||
-882.673 -882.852 49.994,85 227 228 230,stand,,,
|
||||
-62.1084 -1067.87 33.6931,84 85 112 164 221,stand,,,
|
||||
102.373 -1482.92 51.1275,112 120 163,stand,,,
|
||||
3899.05 -2500.84 41.8377,38 39 166 270,stand,24.3457 21.5089 0.0,,
|
||||
3922.86 -2692.41 45.8145,165,crouch,4.36584 92.8212 0.0,,
|
||||
3407.36 -2790.74 31.9087,37 38 168,stand,15.2423 -42.8875 0.0,,
|
||||
3676.72 -2910.97 38.0198,167,crouch,4.53613 164.139 0.0,,
|
||||
2903.01 -2811.39 -12.7248,37 170,stand,14.8962 137.2 0.0,,
|
||||
2722.99 -2635.12 37.9563,169 171,stand,16.9672 133.751 0.0,,
|
||||
2517.36 -2393.25 36.3362,79 80 170 172,stand,11.4465 141.002 0.0,,
|
||||
2234.08 -2636.0 32.2853,79 80 171 173,stand,10.238 -84.3224 0.0,,
|
||||
2361.7 -3240.98 32.2454,35 36 172,stand,36.6547 38.4443 0.0,,
|
||||
1755.31 -3048.72 30.9859,35 126 127 176,stand,27.5031 173.126 0.0,,
|
||||
1422.28 -3458.94 32.7327,34 126,stand,14.0338 -69.9797 0.0,,
|
||||
1818.68 -3356.13 33.1906,34 35 174,stand,57.0288 65.5586 0.0,,
|
||||
1275.07 -2381.62 33.125,178 185,stand,61.8628 175.894 0.0,,
|
||||
1084.24 -2341.87 35.0005,177 179 180 181,stand,30.0903 171.923 0.0,,
|
||||
890.629 -2318.37 33.125,81 178 183,stand,69.2841 -178.239 0.0,,
|
||||
929.736 -2470.09 42.1552,178,crouch,12.4792 33.6213 0.0,,
|
||||
1234.12 -2286.51 39.2733,178,crouch,7.46948 -150.262 0.0,,
|
||||
477.076 -2656.68 38.2891,81 82 123 129,stand,31.2988 -115.562 0.0,,
|
||||
794.749 -2223.29 30.0944,81 114 179 184,stand,31.1285 -98.8298 0.0,,
|
||||
1384.65 -2147.65 43.2896,115 183 185,stand,21.2848 8.7428 0.0,,
|
||||
1359.82 -2399.28 32.8831,80 127 177 184,stand,37.8632 167.935 0.0,,
|
||||
917.461 -1595.1 56.9821,113 114 187,stand,32.337 130.296 0.0,,
|
||||
870.276 -1188.94 82.2895,132 186,stand,30.4364 109.229 0.0,,
|
||||
738.77 -827.486 87.8947,132,crouch,11.441 -175.663 0.0,,
|
||||
593.549 -290.206 125.403,131,crouch,9.71619 -121.445 0.0,,
|
||||
789.497 -615.916 91.1635,131,crouch,10.7544 -158.052 0.0,,
|
||||
128.014 -742.932 -29.5208,192 194 195,stand,53.4033 1.65662 0.0,,
|
||||
246.118 -744.614 -29.469,191 193 201 221,stand,36.9952 83.4993 0.0,,
|
||||
245.518 -593.951 -23.1857,192 194 199,stand,42.6971 171.044 0.0,,
|
||||
131.351 -588.717 -22.6374,191 193 197,stand,31.8152 -112.64 0.0,,
|
||||
-43.3392 -713.928 -42.4912,191 196,stand,27.157 171.741 0.0,,
|
||||
-182.404 -689.801 -54.7178,86 195,stand,32.337 -167.884 0.0,,
|
||||
144.989 -546.396 -20.0195,194 198,climb,5.22827 89.2067 0.0,,
|
||||
139.821 -514.333 31.125,130 197,climb,63.9337 -93.8201 0.0,,
|
||||
356.938 -565.595 22.8152,131 193 200,stand,59.0997 146.187 0.0,,
|
||||
373.322 -461.959 42.822,130 131 199,stand,27.6733 146.874 0.0,,
|
||||
380.576 -772.796 -29.5848,192 202,stand,21.2848 -14.5592 0.0,,
|
||||
554.551 -806.628 -29.2722,88 201 203 204,stand,50.4645 -22.8484 0.0,,
|
||||
537.047 -929.939 28.3807,112 132 202 221,stand,53.2275 75.5726 0.0,,
|
||||
541.913 -774.312 -24.3677,202 205,climb,-5.30762 92.4916 0.0,,
|
||||
532.995 -749.238 19.2836,131 204,stand,69.2841 -87.9424 0.0,,
|
||||
701.395 -410.103 -36.4421,89 207 208 209,stand,28.5358 -19.558 0.0,,
|
||||
706.703 -522.795 -4.5773,206,crouch,9.19983 -33.0327 0.0,,
|
||||
709.1 -500.15 -35.0139,206,crouch,6.0907 82.6533 0.0,,
|
||||
756.214 -118.727 -31.7256,89 90 206,stand,12.8253 88.6958 0.0,,
|
||||
1043.07 -475.394 -44.0079,89,crouch,7.81555 -149.757 0.0,,
|
||||
899.774 -1081.75 -57.7797,111,crouch,5.05249 116.667 0.0,,
|
||||
1032.03 -764.312 -59.8347,109 110 216,stand,58.924 143.084 0.0,,
|
||||
1030.85 -953.454 -54.8525,109 111 214,stand,33.3698 -158.211 0.0,,
|
||||
1001.99 -1085.53 -60.5841,213,crouch,5.22827 62.9658 0.0,,
|
||||
1326.05 -895.302 -56.5125,108 109 216,stand,28.5358 162.76 0.0,,
|
||||
1194.32 -690.352 -56.9604,109 212 215 218 219,stand,58.4076 -167.368 0.0,,
|
||||
1109.93 -1099.28 -57.359,109,crouch,7.46948 64.004 0.0,,
|
||||
1188.35 -555.103 -58.8067,216,crouch,7.46948 -88.2775 0.0,,
|
||||
1228.41 -608.061 -53.5651,216,crouch,5.57434 -107.619 0.0,,
|
||||
1062.6 -583.049 -50.1166,110,crouch,6.26099 -169.258 0.0,,
|
||||
206.366 -877.59 21.6258,112 163 192 203,stand,45.6305 65.9156 0.0,,
|
||||
-523.96 -710.41 -61.5863,86 223,stand,74.4641 122.38 0.0,,
|
||||
-625.41 -600.43 -57.4464,222 224,stand,65.3125 140.161 0.0,,
|
||||
-790.214 -518.677 -40.5659,223 225 226,stand,26.1188 157.086 0.0,,
|
||||
-969.884 -474.191 -26.4586,87 224,stand,23.5315 166.924 0.0,,
|
||||
-775.396 -565.269 -37.9822,224 227,climb,-1.85242 -116.76 0.0,,
|
||||
-794.312 -587.959 15.0273,162 226 228,stand,78.2654 141.716 0.0,,
|
||||
-1284.6 -681.288 29.3352,162 227 229,stand,38.7256 166.232 0.0,,
|
||||
-1363.6 -674.132 -17.3847,17 228,climb,4.8822 -6.59961 0.0,,
|
||||
-789.701 -1134.32 25.363,20 85 162,stand,70.4926 -80.4937 0.0,,
|
||||
-1330.78 -547.363 -18.4252,17 87 232,stand,76.1945 -144.555 0.0,,
|
||||
-1411.3 -536.171 -12.9944,231,crouch,10.7544 -40.9594 0.0,,
|
||||
-888.875 -1147.18 -40.5205,19,crouch,9.02405 -145.077 0.0,,
|
||||
-906.583 -1226.32 -39.8759,19 20 235,stand,40.9668 132.559 0.0,,
|
||||
-927.031 -1330.37 -42.1313,20 234 236,stand,32.8534 104.412 0.0,,
|
||||
-929.071 -1481.39 -37.5934,20 21 235,stand,43.2135 -136.799 0.0,,
|
||||
-1072.63 -1711.87 -39.0318,21 22 239,stand,52.8815 -110.036 0.0,,
|
||||
-986.827 -1930.04 -25.7004,22 23,stand,84.3079 -84.3114 0.0,,
|
||||
-1103.53 -1697.03 -36.4701,237 240,climb,15.072 152.576 0.0,,
|
||||
-1131.4 -1680.85 17.019,239 241,crouch,5.05798 152.922 0.0,,
|
||||
-1260.3 -1685.0 39.0364,137 240 242,stand,54.436 -171.85 0.0,,
|
||||
-1196.59 -1825.69 31.2452,241 243,stand,28.8818 -61.8663 0.0,,
|
||||
-1138.65 -2002.35 24.7874,23 242 244,stand,37.0007 -68.4252 0.0,,
|
||||
-1250.06 -2278.01 24.2421,243 245,stand,31.4746 -124.016 0.0,,
|
||||
-1412.01 -2293.03 8.40863,25 134 244,stand,35.6165 151.208 0.0,,
|
||||
-1063.99 -2688.23 25.8871,24 30 247,stand,35.7922 -86.7229 0.0,,
|
||||
-832.427 -2735.64 35.9711,30 83 246,stand,39.2419 -131.448 0.0,,
|
||||
-1641.03 -1788.72 15.0983,134 135 137,stand,83.0994 -153.547 0.0,,
|
||||
1731.55 -666.105 -19.875,108 117 250,stand,28.0194 86.4491 0.0,,
|
||||
1505.24 -594.594 37.9034,249 251 256,stand,30.6122 -26.9847 0.0,,
|
||||
1413.49 -721.438 57.3535,250 252,stand,72.569 -117.117 0.0,,
|
||||
1285.24 -887.487 110.096,251 253 254 255,stand,52.5409 -39.5861 0.0,,
|
||||
1350.31 -1067.93 89.9007,116 252 257,stand,41.3129 -21.6289 0.0,,
|
||||
1251.13 -827.26 114.783,252,crouch,13.1714 -7.45654 0.0,,
|
||||
1261.4 -980.79 109.535,252,crouch,14.8962 2.21143 0.0,,
|
||||
1338.69 -341.699 102.802,250,crouch,7.99133 -48.3861 0.0,,
|
||||
1339.96 -1282.76 79.4474,115 253,stand,22.323 -71.5233 0.0,,
|
||||
2285.58 -1367.22 88.8446,76 78 116,stand,9.02954 22.4153 0.0,,
|
||||
2126.23 -1744.47 41.2436,78 79 115 116,stand,20.0763 173.845 0.0,,
|
||||
3095.92 -775.356 -21.7667,261 263 268,stand,42.3511 -93.095 0.0,,
|
||||
3092.15 -918.814 -21.6659,260 262 269,stand,29.4037 164.342 0.0,,
|
||||
2952.27 -930.008 -15.2944,261 263 264 269,stand,40.7965 77.3195 0.0,,
|
||||
2953.21 -791.185 -18.5163,260 262 264,stand,31.8207 6.69934 0.0,,
|
||||
2918.51 -844.196 -20.8095,262 263 265,stand,85.0 -165.616 0.0,,
|
||||
2731.05 -858.772 -29.5706,106 264 266,stand,27.6733 -168.384 0.0,,
|
||||
2718.04 -818.614 -25.9469,265 267,climb,7.99133 107.362 0.0,,
|
||||
2704.04 -782.875 20.125,118 119 266,climb,74.986 -71.6936 0.0,,
|
||||
3089.55 -617.679 21.1232,75 103 260 271,stand,44.2462 -70.8257 0.0,,
|
||||
3064.42 -1027.73 -19.6126,76 105 261 262,stand,64.104 -35.2629 0.0,,
|
||||
4070.39 -2536.57 47.0248,165,crouch,7.99133 125.143 0.0,,
|
||||
3250.8 -660.371 28.1326,75 103 105 268,stand,25.7727 99.413 0.0,,
|
||||
2948.32 -176.625 55.2865,74 75 96,stand,69.8059 138.42 0.0,,
|
||||
1552.64 1299.49 -87.5187,69 93 147,stand,21.6309 -4.20459 0.0,,
|
||||
7.94539 2365.7 18.2566,148 275,stand,62.0331 -78.8182 0.0,,
|
||||
-0.247224 2249.75 8.125,274 276 284 285 286 290,stand,28.1952 -151.334 0.0,,
|
||||
139.309 2184.61 8.125,275 277,stand,64.2798 -50.6713 0.0,,
|
||||
152.516 2052.27 8.125,276 278 292,stand,34.9243 -98.8408 0.0,,
|
||||
127.061 1836.49 -3.875,277 279 280,stand,33.8916 -92.282 0.0,,
|
||||
437.586 1812.96 -60.0451,68 278,stand,19.5599 -7.84656 0.0,,
|
||||
-89.7203 1864.62 -56.1538,150 278 281,stand,18.3514 179.492 0.0,,
|
||||
-219.588 1181.61 -83.5598,66 150 280,stand,11.6168 -104.191 0.0,,
|
||||
-975.652 1834.86 -48.3906,150 153 297 299,stand,15.072 101.797 0.0,,
|
||||
-169.369 2257.87 4.50231,151 284,climb,14.2041 -5.41858 0.0,,
|
||||
-130.929 2256.27 8.125,275 283,climb,13.6877 175.32 0.0,,
|
||||
-125.145 2321.24 8.125,275,crouch,6.26648 -39.2118 0.0,,
|
||||
25.9651 2173.6 8.125,149 275,stand,76.5405 -101.878 0.0,,
|
||||
-155.756 1984.88 9.65364,149,crouch,11.1005 40.7412 0.0,,
|
||||
-58.7191 1976.52 15.1561,149,crouch,9.5459 -84.6073 0.0,,
|
||||
-144.47 2084.83 11.9849,149,crouch,8.50769 -158.523 0.0,,
|
||||
84.7889 2285.2 8.125,275 291,stand,54.436 7.74922 0.0,,
|
||||
181.296 2281.94 72.125,290,crouch,18.6975 -146.263 0.0,,
|
||||
323.934 1996.4 11.202,277 293 294 295 296,stand,6.60706 100.122 0.0,,
|
||||
370.186 2220.58 8.125,292,crouch,8.50769 -134.002 0.0,,
|
||||
365.302 1942.09 9.99396,292,crouch,5.22827 126.028 0.0,,
|
||||
377.153 1996.15 15.2821,292,crouch,9.89197 1.71224 0.0,,
|
||||
304.202 1943.07 14.5622,292,crouch,7.81555 -92.2209 0.0,,
|
||||
-896.292 1262.85 77.396,64 150 282 298,stand,21.4606 -68.3915 0.0,,
|
||||
-727.646 869.502 -16.515,64 65 297,stand,33.3698 -55.9605 0.0,,
|
||||
-1632.54 1618.32 -13.8615,57 62 282,stand,9.71619 -156.271 0.0,,
|
||||
-1065.86 2429.85 42.925,154,crouch,4.36584 -115.347 0.0,,
|
||||
-1696.01 2096.44 42.925,155 302 303,stand,14.2041 -165.939 0.0,,
|
||||
-1787.3 2230.45 42.925,301,crouch,6.43677 -28.8517 0.0,,
|
||||
-1698.57 1913.83 42.925,301,crouch,6.95313 55.754 0.0,,
|
||||
-2791.01 1977.09 34.125,60 305 307 308,stand,28.0194 -116.561 0.0,,
|
||||
-3094.57 1988.93 34.125,304 306 309,stand,65.4883 -95.8409 0.0,,
|
||||
-3090.95 1828.39 32.3117,61 305 310,stand,43.5596 -63.9036 0.0,,
|
||||
-2830.87 1855.44 32.2042,61 304,stand,39.4177 -117.083 0.0,,
|
||||
-2709.57 1905.82 34.125,304,crouch,8.50769 141.217 0.0,,
|
||||
-3135.57 2040.88 34.125,305,crouch,7.2992 -42.4967 0.0,,
|
||||
-3331.01 1779.0 37.6005,1 306 311,stand,73.2556 172.462 0.0,,
|
||||
-3445.19 1854.79 38.7975,310,crouch,6.60706 -45.6059 0.0,,
|
||||
-2060.27 -844.569 7.73885,14 15 161,stand,58.2373 35.8687 0.0,,
|
||||
-2278.5 -1465.44 29.1343,13,crouch,9.19983 82.8298 0.0,,
|
||||
-2390.79 -1103.18 25.0756,12,crouch,3.67371 -93.1163 0.0,,
|
||||
685.905 260.052 10.8195,90 316,stand,76.1945 71.7775 0.0,,
|
||||
803.817 610.669 -25.6352,92 144 315 317,stand,51.3269 -95.72 0.0,,
|
||||
968.247 523.763 21.959,145 316,stand,60.8246 -15.0914 0.0,,
|
||||
1710.3 872.998 -93.875,93 94 145,stand,80.5121 3.90401 0.0,,
|
||||
888.066 -10.2369 98.3298,99,crouch,39.7638 163.629 0.0,,
|
||||
522.528 122.393 57.0127,90 143 321,stand,81.7206 -94.1545 0.0,,
|
||||
659.64 0.539713 82.2345,320,crouch,42.005 13.2479 0.0,,
|
||||
-112.195 545.976 -0.300902,65 66 143,stand,44.9384 140.667 0.0,,
|
||||
|
@@ -0,0 +1,562 @@
|
||||
561
|
||||
645.845 2138.53 -6.39476,1 326 327 330 329,stand,,,
|
||||
347.193 2102.73 -0.288627,0 2 17 325 329 330 328,stand,,,
|
||||
-92.4052 2091 0.406958,1 3 324,stand,,,
|
||||
-358.495 2103.56 -0.637321,2 4 18 322,stand,,,
|
||||
-773.413 2220.74 0.16946,3 5 10 321,stand,,,
|
||||
-985.436 2220.76 5.41854,4 6 320,stand,,,
|
||||
-1025.32 2036.17 6.125,5 7,stand,,,
|
||||
-1340.13 2027.21 40.125,6 317 318 319,stand,,,
|
||||
-1348.14 1510 6.125,314 315 317,stand,,,
|
||||
-866.407 1508.02 -0.804249,10 13 314,stand,,,
|
||||
-812.379 1870.92 26.2964,9 4 11,stand,,,
|
||||
-680.355 1810.96 35.1363,10 12,stand,,,
|
||||
-658.478 1332.14 -1.6813,11 13 349 350,stand,,,
|
||||
-924.635 1340.18 8.125,12 14 9 312,stand,,,
|
||||
-902.777 1187.24 8.125,13 142 141 311,stand,,,
|
||||
-150.522 1473.09 49.7121,16 20 552 553,stand,,,
|
||||
-123.568 1625.21 56.125,15 17 19 552,stand,,,
|
||||
360.706 1623.09 13.4908,16 1,stand,,,
|
||||
-356.678 1776.14 23.125,3 19 332 333,stand,,,
|
||||
-137.856 1757.7 56.125,18 16 331,stand,,,
|
||||
-73.248 1144.07 48.125,15 351 353 553,stand,,,
|
||||
474.259 1147.67 -0.760699,353 356,stand,,,
|
||||
933.036 1135.11 -0.290147,23 53 356 357,stand,,,
|
||||
1316.66 1168.01 8.06596,22 24 54,stand,,,
|
||||
1319.36 1595.57 8.125,23 25 33 401,stand,,,
|
||||
1730.33 1541.59 40.125,24 26 56,stand,,,
|
||||
1717.26 1329.71 40.125,25 27 381 387 388 389,stand,,,
|
||||
1843.26 1309.29 40.125,26 28 389,stand,,,
|
||||
1854.85 1191.37 40.125,27 29 391,stand,,,
|
||||
1975.8 1183.66 40.125,28 30,stand,,,
|
||||
1971.79 1050.11 40.125,29 31,stand,,,
|
||||
2081.68 1051.33 40.125,30 398 399,stand,,,
|
||||
2071.86 1626.1 8.125,33 394 395 397 398,stand,,,
|
||||
1607.17 1637.02 8.125,32 24,stand,,,
|
||||
2094.65 791.154 8.125,35 37 396 399,stand,,,
|
||||
1773.74 822.639 40.125,34 36 379 381,stand,,,
|
||||
1775.54 626.081 0.125002,35 369 367 378,stand,,,
|
||||
2108.36 594.778 0.125002,34 367 366 368,stand,,,
|
||||
1799.56 381.118 0.124984,366 369 371 368 400,stand,,,
|
||||
1798.04 27.8741 8.125,40 371 406,stand,,,
|
||||
1442.9 18.9862 8.125,39 134 165 405,stand,,,
|
||||
1039.44 -63.6656 -7.875,42 57 58 165 361 402 403,stand,,,
|
||||
701.418 -36.6666 8.125,41 43 412 413 414,stand,,,
|
||||
587.05 301.458 8.125,42 166 415,stand,,,
|
||||
564.013 -180.136 144.125,45 166 417 418,stand,,,
|
||||
685.233 -59.5944 144.125,44 418 422 428,stand,,,
|
||||
1222.2 -57.1381 144.125,47 48 428 430,stand,,,
|
||||
1541.46 -91.4499 144.125,46 434 437 438,stand,,,
|
||||
1228.55 96.5971 144.125,46 431 433,stand,,,
|
||||
684.829 362.315 144.125,50 139 419 422 424,stand,,,
|
||||
776.56 536.608 144.125,49 51 424,stand,,,
|
||||
944.875 495.89 144.125,50 426 425,stand,,,
|
||||
406.125 671.495 8.125,53 137 308 138 534 535,stand,,,
|
||||
921.396 728.892 8.125,52 22 59 359 357 360 362,stand,,,
|
||||
1315.85 990.557 8.125,23 55 59 358,stand,,,
|
||||
1451.51 1006.56 8.125,54 56 380,stand,,,
|
||||
1507.25 1447 40.125,55 25,stand,,,
|
||||
908.687 72.156 8.125,41 364,stand,,,
|
||||
1215.82 407.629 0.125002,41 59 133 400 365 360 361,stand,,,
|
||||
1225.41 686.091 0.124999,58 54 53 359 358 360 373,stand,,,
|
||||
1504.31 -606.447 3.46104,64 165 411 410 61 450 452,stand,,,
|
||||
1452.24 -883.273 1.25366,60 450 453 455 458,stand,,,
|
||||
1934.43 -870.36 4.06127,63 68 453,stand,,,
|
||||
1911.25 -565.495 5.38606,62 451 452,stand,,,
|
||||
1006.06 -631.605 7.52351,60 65 440 442 450,stand,,,
|
||||
1018.52 -1091.04 0.125001,64 450 458 456 459 467,stand,,,
|
||||
1097.19 -1432.77 0.124998,67 459,stand,,,
|
||||
1471.02 -1409.62 0.124998,66 68 456 454,stand,,,
|
||||
1925.91 -1302.61 6.03126,67 62 454 457 453,stand,,,
|
||||
663.955 -1093.49 0.124998,463 467 550,stand,,,
|
||||
373.376 -1062.96 0.124998,224 466 550 551 556 557,stand,,,
|
||||
-173.018 -1183.2 0.124998,76 211 212 214 77 558 559,stand,,,
|
||||
331.276 -763.431 8.125,73 76 224 551,stand,,,
|
||||
372.526 -260.95 48.7985,72 75 135 530,stand,,,
|
||||
-279.084 296.965 40.125,119 151 497,stand,,,
|
||||
-217.1 -298.024 56.5312,73 497 509 511 512,stand,,,
|
||||
-59.9166 -775.374 8.125,72 71 180 224,stand,,,
|
||||
220.509 -1304.58 10.125,217 71 466 557 558,stand,,,
|
||||
239.733 -1651.26 10.125,79 80 218,stand,,,
|
||||
-59.6503 -1610.61 10.125,78 223 222,stand,,,
|
||||
361.167 -1656.29 10.125,78 81 220,stand,,,
|
||||
384.013 -1491.15 10.125,80 82 221,stand,,,
|
||||
707.208 -1522.39 8.125,81 83 463 468,stand,,,
|
||||
443.113 -1843.61 0.124998,82 90 198 468,stand,,,
|
||||
427.871 -2255.49 4.22827,157 154 198 471 197,stand,,,
|
||||
-158.416 -2680.56 0.127853,156 189 193 194 195,stand,,,
|
||||
-633.837 -2643.16 0.155431,87 201 203 204 205,stand,,,
|
||||
-622.229 -2180.86 0.19389,86 88 205 206 201,stand,,,
|
||||
-575.43 -1737.36 0.125001,87 207 206 208 209,stand,,,
|
||||
-251.772 -1767.72 0.125,90 158 207 210,stand,,,
|
||||
183.337 -1841.48 0.124997,89 83 472,stand,,,
|
||||
-480.99 -1150.17 -32.893,92 97 211 225,stand,,,
|
||||
-479.466 -1392.44 -23.875,91 93,stand,,,
|
||||
-666.675 -1390.63 96.125,92 94,stand,,,
|
||||
-670.287 -1082.74 228.551,93 95 230 231,stand,,,
|
||||
-442.647 -931.249 229.937,94 168 232,stand,,,
|
||||
-467.541 -619.138 227.23,159 168 235 234 169,stand,,,
|
||||
-868.77 -1147.97 -32.875,91 99 240 243,stand,,,
|
||||
-1424.77 -1103.88 -31.875,146 181 240 491,stand,,,
|
||||
-864.078 -756.487 -16.875,97 118 473 474,stand,,,
|
||||
-1229.88 -1039.73 136.125,243 244,stand,,,
|
||||
-1035.59 -673.117 136.125,102 246 250,stand,,,
|
||||
-1011.27 -467.067 136.125,101 103 251 252,stand,,,
|
||||
-1128.86 -458.827 136.125,102 178 253,stand,,,
|
||||
-1120.88 -165.742 168.125,164 178 255,stand,,,
|
||||
-1421.38 -75.3026 137.125,106 143,stand,,,
|
||||
-1559.97 -76.9288 152.125,105 109 177 262,stand,,,
|
||||
-1567.39 349.398 152.125,108 112 176 177 261 263 264,stand,,,
|
||||
-1819.41 332.943 152.125,107 110 175,stand,,,
|
||||
-1818.6 -65.8789 152.125,106 113 175,stand,,,
|
||||
-2083.33 342.485 152.125,108 111 267,stand,,,
|
||||
-2064.6 717.543 152.125,110 112 265,stand,,,
|
||||
-1557.76 711.722 152.125,111 107 264 263 266,stand,,,
|
||||
-2237.02 -58.4506 8.125,109 114 268,stand,,,
|
||||
-2201.27 135.624 0.124997,113 172 174 269,stand,,,
|
||||
-1152.19 364.287 6.15932,176 275 280,stand,,,
|
||||
-1223.54 -288.741 -0.875002,117 170 179 479,stand,,,
|
||||
-1394.31 -319.07 -0.312946,116 477 495,stand,,,
|
||||
-877.878 -325.831 -0.875,99 179 476,stand,,,
|
||||
-709.552 342.67 0.124999,74 120 140 281 287 496,stand,,,
|
||||
-833.53 27.8425 0.124997,119 272 273 276 279 496,stand,,,
|
||||
-661.993 775.344 -1.79401,122 140 142 286 310,stand,,,
|
||||
-469.502 776.121 8.125,121 123 288 309,stand,,,
|
||||
-456.311 471.677 8.125,122 289 290,stand,,,
|
||||
97.9476 466.295 8.125,125 162 297 308,stand,,,
|
||||
100.39 670.838 8.125,124 126 162 295 296 298 308,stand,,,
|
||||
109.879 807.794 8.125,125 127 298,stand,,,
|
||||
-345.646 802.664 200.125,126 128,stand,,,
|
||||
-356.969 659.276 200.125,127 129 132 299,stand,,,
|
||||
-475.104 668.262 200.125,128 130 302 303,stand,,,
|
||||
-523.686 468.142 200.125,129 131 304 305,stand,,,
|
||||
-608.875 457.275 200.125,130 306,stand,,,
|
||||
-349.75 512.339 200.125,128 301,stand,,,
|
||||
1289.66 191.334 8.125,134 58 400,crouch,,,
|
||||
1286.3 104.871 8.125,133 40 405,crouch,,,
|
||||
334.109 -96.9036 48.658,73 136 167 532 530,stand,17.0947 -86.2262 0,,
|
||||
218.598 -101.318 34.6412,135 513 514 515 521,stand,7.76733 107.501 0,,
|
||||
361.895 263.87 74.3033,138 52 151 167 533,stand,12.7771 54.8492 0,,
|
||||
488.875 282.193 86.4729,137 139 533 167 52,climb,5.69641 3.04871 0,,
|
||||
536.87 294.182 145.125,49 138 419 420 423,stand,10.8765 22.3901 0,,
|
||||
-614.027 563.046 8.125,121 119 287,stand,15.3699 92.8564 0,,
|
||||
-657.323 1061.59 -1.40977,310 142 14 349,stand,11.0522 89.9552 0,,
|
||||
-801.1 1021.19 -2.69328,121 14 286 310 141,stand,16.0565 124.315 0,,
|
||||
-1426.27 -126.103 137.125,105 163,climb,4.31763 -91.3137 0,,
|
||||
-1766.61 -407.046 0.125001,480 481 492,stand,12.2607 6.93151 0,,
|
||||
-1742.31 -719.926 0.125002,147 182 492,stand,17.9572 0.0266075 0,,
|
||||
-1609.99 -1044.28 0.124997,98 148 182,stand,16.1047 92.0756 0,,
|
||||
-1873.67 -730.816 0.124998,145 148 484 485,stand,13.5175 9.37048 0,,
|
||||
-1877.75 -1028.22 0.124998,147 146 487 486,stand,18.5217 92.7732 0,,
|
||||
110.736 165.691 41.7486,150 519 523,climb,5.18005 91.2063 0,,
|
||||
108.3 210.078 72.9825,149 151,stand,15.0238 90.5197 0,,
|
||||
96.9649 257.817 84.7899,150 74 137,stand,27.9712 -173.998 0,,
|
||||
503.953 -3063.82 0.150014,153 155 183,stand,15.1941 89.6649 0,,
|
||||
509.563 -2673.56 2.6847,154 152,stand,15.0238 91.3898 0,,
|
||||
499.083 -2423.22 1.06234,153 84 157 471,stand,15.0238 91.3898 0,,
|
||||
322.93 -3064.53 0.734597,152 156 184 186,stand,21.2366 88.6267 0,,
|
||||
330.485 -2821.29 1.54898,155 157 85,stand,22.4451 -90.412 0,,
|
||||
299.574 -2570.63 1.83567,156 84 195 154 471,stand,12.085 84.6606 0,,
|
||||
-248.372 -1446.73 0.891639,89 211 214,stand,14.3317 -100.256 0,,
|
||||
-271.64 -606.722 232.125,96 239 238 236 237,stand,26.5924 84.8419 0,,
|
||||
-238.397 656.803 8.125,161 293 294,stand,29.0094 -86.2482 0,,
|
||||
-250.335 471.872 8.125,160 162 290 292,stand,75.6299 -173.793 0,,
|
||||
-129.933 527.427 8.08763,125 161 124 296,stand,85 1.2854 0,,
|
||||
-1429.45 -146.266 192.125,143 164,climb,3.62549 -91.4404 0,,
|
||||
-1429.92 -168.446 192.125,163 104,stand,18.4735 0.592037 0,,
|
||||
1429.55 -204.604 -15.875,40 60 41 404 410 411,stand,18.4735 96.4203 0,,
|
||||
564.237 153.048 10.4793,43 44,stand,57.6727 89.6857 0,,
|
||||
347.418 84.7317 89.3726,135 137 533 138,stand,40.9723 87.1259 0,,
|
||||
-441.939 -793.618 234.9,95 169 96,stand,56.853 -87.6062 0,,
|
||||
-551.426 -729.017 230.554,168 233 234 96,stand,29.4037 134.438 0,,
|
||||
-1207.8 -119.32 7.37345,116 270 272 277 276,stand,22.6208 -91.0907 0,,
|
||||
-1417.72 37.6049 0.124999,172 173 270 277 278,stand,46.6205 -84.5209 0,,
|
||||
-1821.99 34.4786 0.124998,171 114 174,stand,15.1941 -0.0909386 0,,
|
||||
-1468.58 228.197 0.125001,174 171 278 277,stand,31.0803 -177.921 0,,
|
||||
-1732.16 221.133 0.124988,173 114 269 172,stand,74.4214 -178.602 0,,
|
||||
-1818.73 131.496 152.125,109 108,stand,43.6816 -90.5414 0,,
|
||||
-1341.85 357.286 88.125,107 115,stand,18.9954 179.843 0,,
|
||||
-1563.15 119.239 152.125,107 106 262 261,stand,21.2366 -89.1626 0,,
|
||||
-1124.22 -291.648 161.125,103 104,stand,81.8909 91.9196 0,,
|
||||
-1116.52 -300.933 -0.875003,118 116,stand,34.0619 -8.69873 0,,
|
||||
-231.422 -746.859 18.3046,76 213,stand,84.4836 -0.477905 0,,
|
||||
-1409.92 -732.086 -16.7662,98 182 474 495,stand,84.4836 88.4373 0,,
|
||||
-1614.35 -725.066 0.124999,145 181 146 494,stand,85 -92.5405 0,,
|
||||
502.326 -3373.7 0.125082,152 184 188,stand,18.1274 -173.655 0,,
|
||||
180.872 -3372.15 0.303034,183 155 187,stand,13.6395 84.3036 0,,
|
||||
103.125 -2903.73 8.45478,186,crouch,4.83398 -10.6622 0,,
|
||||
242.413 -2916.7 0.552809,185 155,stand,20.0281 -63.1549 0,,
|
||||
103.125 -3456.88 0.41866,184,crouch,5.18005 60.8258 0,,
|
||||
605.279 -3430.73 6.4503,183,crouch,4.83398 119.707 0,,
|
||||
-288.692 -2664.14 0.522686,85 190 194 204,stand,21.2366 12.3102 0,,
|
||||
-360.875 -2848.88 6.22025,189 192,crouch,5.18005 50.9875 0,,
|
||||
-101.703 -2848.88 2.66382,192 193,stand,23.8293 178.242 0,,
|
||||
-272.283 -2848.88 7.9825,190 191,stand,25.0378 153.896 0,,
|
||||
-104.537 -2747.7 0.194979,191 85,stand,66.4783 94.6692 0,,
|
||||
-325.952 -2543.13 7.03857,189 85,crouch,7.59705 -48.642 0,,
|
||||
78.0675 -2570.16 0.124999,157 85 196,stand,25.5542 -165.701 0,,
|
||||
100.083 -2338.84 0.125002,195 197 198 471,stand,17.6111 50.8118 0,,
|
||||
136.963 -2040.02 1.54171,196 198 199 84,stand,13.8153 4.71313 0,,
|
||||
432.441 -2066.58 8.78314,197 84 83 196,stand,22.6208 -84.2102 0,,
|
||||
71.125 -1975.13 17.9313,197,crouch,7.59705 -48.1256 0,,
|
||||
-739.925 -2840.88 28.7623,202 203,crouch,5.69641 64.9841 0,,
|
||||
-732.852 -2657.96 5.94481,86 202 87,stand,63.3691 -84.7101 0,,
|
||||
-727.649 -2766.68 52.225,201 200,stand,39.1937 -89.3738 0,,
|
||||
-399.125 -2840.88 5.09593,200 86,crouch,5.35034 136.126 0,,
|
||||
-435.477 -2664.95 0.125,86 189 205,stand,17.265 23.8898 0,,
|
||||
-435.828 -2381.83 30.6445,204 206 87 86,stand,23.1372 91.5765 0,,
|
||||
-427.543 -1999.29 30.2549,205 87 207 88,stand,17.265 -87.2974 0,,
|
||||
-414.98 -1755.46 5.59576,206 88 89 208,stand,28.147 176.528 0,,
|
||||
-407.125 -1503.13 2.43753,88 207,crouch,6.04248 -127.705 0,,
|
||||
-752.875 -1503.13 28.7624,88,crouch,4.48792 -51.7346 0,,
|
||||
-343.675 -1936.88 8.12841,89,crouch,3.80127 50.6415 0,,
|
||||
-339.668 -1179.83 0.125002,158 71 91 212 214,stand,30.7343 120.053 0,,
|
||||
-196.936 -975.743 0.124997,71 211 213 560,stand,20.2039 -75.3992 0,,
|
||||
-368.816 -743.125 20.6417,212 180,crouch,7.25098 -47.9498 0,,
|
||||
-200.095 -1358.27 0.125001,158 71 211 215,stand,23.6536 -120.289 0,,
|
||||
-59.2735 -1378.58 10.125,214 216 217,stand,47.829 -124.958 0,,
|
||||
-55.4001 -1533.35 10.125,215,crouch,7.94312 101.234 0,,
|
||||
255.276 -1411.53 10.125,215 77 218,stand,34.8761 161.658 0,,
|
||||
256.361 -1541.4 10.125,217 78 219,stand,35.2222 168.223 0,,
|
||||
34.0275 -1513.82 10.125,218,prone,4.14185 -7.02576 0,,
|
||||
401.41 -1702.73 10.125,80,crouch,6.90491 127.996 0,,
|
||||
434.014 -1358.5 10.125,81,crouch,3.4552 -102.502 0,,
|
||||
-97.5 -1568.09 10.125,79,crouch,6.21826 -16.5234 0,,
|
||||
-98.7742 -1628.04 10.125,79,crouch,6.21826 9.03076 0,,
|
||||
213.71 -964.423 0.119171,72 70 76 556 559 560,stand,50.592 -12.5464 0,,
|
||||
-490.413 -1021.87 -23.875,226 91 228,stand,15.0238 88.8135 0,,
|
||||
-482.792 -890.286 40.025,227 225,stand,47.1368 -90.7581 0,,
|
||||
-407.125 -863.125 72.025,226,crouch,25.3839 -131.677 0,,
|
||||
-651.51 -1030.43 -23.875,225 229,stand,25.2081 -173.639 0,,
|
||||
-744.875 -863.125 -23.875,228,crouch,6.90491 -39.9902 0,,
|
||||
-737.778 -863.498 238.654,94,crouch,10.7062 -63.3032 0,,
|
||||
-744.875 -1208.88 232.125,94,crouch,7.94312 35.4639 0,,
|
||||
-407.125 -968.717 232.457,95,crouch,21.4124 -9.94812 0,,
|
||||
-744.874 -824.875 242.14,169,crouch,9.84375 42.7148 0,,
|
||||
-744.875 -569.746 235.482,169 96,crouch,7.59705 -35.4968 0,,
|
||||
-428.053 -511.125 237.381,96,crouch,8.45947 -133.05 0,,
|
||||
-340.772 -717.716 232.125,237 159,prone,22.2748 -83.6774 0,,
|
||||
-196.688 -712.34 232.125,238 236 159,prone,21.9287 -93.0048 0,,
|
||||
-198.295 -514.45 232.125,239 159 237,prone,17.9572 90.0165 0,,
|
||||
-318.861 -527.685 232.125,238 159,prone,17.6111 83.6279 0,,
|
||||
-1074.42 -1152.42 -32.1875,98 97 242 241,stand,18.3032 0.0494385 0,,
|
||||
-975.125 -1256.88 -31.875,240 242,crouch,5.87219 140.246 0,,
|
||||
-1136.88 -1256.88 -31.875,240 241,crouch,6.38855 42.3468 0,,
|
||||
-1011.24 -1073.59 -30.3742,97 100,stand,36.0846 -84.5618 0,,
|
||||
-1228.37 -951.465 136.125,247 100 245 246,stand,23.9996 -31.0419 0,,
|
||||
-1075.12 -976.932 136.125,244 246 247 249,stand,19.5117 88.9618 0,,
|
||||
-1056.99 -785.231 136.125,245 101 247 244,stand,22.2748 130.226 0,,
|
||||
-1251.2 -750.504 136.125,244 246 248 245,stand,24.516 -25.6915 0,,
|
||||
-1235.66 -607.513 136.125,247,crouch,6.55884 -90.9558 0,,
|
||||
-1022.26 -996.949 136.125,245,crouch,-0.170288 119.861 0,,
|
||||
-1150.33 -633.158 136.125,101,crouch,6.21826 -67.1265 0,,
|
||||
-961.387 -419.537 168.125,102,crouch,8.80554 -132.391 0,,
|
||||
-973.124 -587.379 136.125,102,crouch,6.38855 135.236 0,,
|
||||
-1239.12 -568.351 185.525,103,crouch,20.0281 44.4177 0,,
|
||||
-928.992 -168.459 176.125,255 256 257,stand,32.981 173.216 0,,
|
||||
-1015.06 -159.658 176.125,104 254 257 256,stand,32.981 -179.879 0,,
|
||||
-917.024 -85.6159 137.125,254 255 257 258,stand,18.1274 -169.003 0,,
|
||||
-1009.09 -100.707 137.125,255 256 254 259,stand,19.3359 -176.078 0,,
|
||||
-637.351 -79.0789 137.125,256,prone,13.6395 95.5298 0,,
|
||||
-1077.72 -90.2228 137.125,260 257,prone,8.80554 72.5629 0,,
|
||||
-1114.17 -95.3709 137.125,259,prone,22.9669 168.397 0,,
|
||||
-1504.51 196.515 152.125,177 107 262,crouch,9.49768 3.66214 0,,
|
||||
-1503.13 74.1549 152.125,177 106 261,crouch,12.7771 6.07913 0,,
|
||||
-1632.48 416.203 152.125,264 107 112,stand,19.1656 91.723 0,,
|
||||
-1630.9 628.109 152.125,112 263 107,stand,18.6493 87.9272 0,,
|
||||
-2152.88 819.875 152.125,111,crouch,5.35034 -48.1384 0,,
|
||||
-1503.13 819.875 152.125,112,crouch,6.38855 -125.834 0,,
|
||||
-2152.88 306.125 152.125,110,crouch,8.80554 27.9969 0,,
|
||||
-2272.88 -128.875 8.125,113,crouch,5.00427 39.9115 0,,
|
||||
-2272.88 256.875 0.124999,114 174,crouch,5.00427 -36.0644 0,,
|
||||
-1422.19 -94.0057 8.125,171 170 271,stand,25.5542 -12.0648 0,,
|
||||
-1444.65 -120.329 40.125,270,crouch,10.3601 12.7918 0,,
|
||||
-930.472 -107.291 8.125,170 120 273 276,stand,56.1182 53.3698 0,,
|
||||
-817.647 -102.827 8.01386,272 120 274,stand,35.0519 40.4279 0,,
|
||||
-591.125 -114.396 8.10157,273 496,crouch,6.04248 144.54 0,,
|
||||
-1115.25 182.902 0.124999,276 278 115 279,stand,36.4307 -168.153 0,,
|
||||
-1112.68 82.3742 0.124999,277 170 275 120 272 279,stand,33.8434 -179.205 0,,
|
||||
-1271.2 67.5172 0.124998,278 171 173 170 276,stand,40.2319 98.7817 0,,
|
||||
-1277.09 193.136 0.124998,173 277 171 275,stand,29.8718 168.885 0,,
|
||||
-962.859 134.478 0.124998,120 275 276,stand,19.3359 -25.8856 0,,
|
||||
-1032.42 344.254 6.71249,281 115 282,stand,15.5402 24.3604 0,,
|
||||
-885.293 357.413 1.68326,119 280 287,stand,16.9189 12.1051 0,,
|
||||
-1037.58 510.94 44.125,280 283 287,stand,14.848 82.0331 0,,
|
||||
-1040.34 648.335 8.125,282 284 286 287,stand,30.9045 89.8004 0,,
|
||||
-1023.38 748.773 44.125,283 285 286,stand,40.578 102.748 0,,
|
||||
-1072.88 800.875 44.125,284,crouch,9.15161 -42.1179 0,,
|
||||
-851.275 751.661 -3.90597,284 142 121 283 287,stand,20.5444 43.8666 0,,
|
||||
-836.661 583.99 -6.76644,286 119 281 283 282 140,stand,16.4026 -75.78 0,,
|
||||
-420.405 902.647 8.125,122 309,crouch,6.73462 -131.047 0,,
|
||||
-560.875 429.125 8.125,123,crouch,6.55884 47.8327 0,,
|
||||
-353.328 470.914 8.125,123 161 291,stand,50.0702 1.55826 0,,
|
||||
-327.125 744.875 8.125,290,crouch,5.52612 -124.482 0,,
|
||||
-288.875 407.125 8.125,161,stand,2.76306 54.0509 0,,
|
||||
-288.875 744.875 8.125,160 294,crouch,6.38855 -25.5505 0,,
|
||||
-185.074 744.875 8.125,160 293 295,stand,29.8718 -10.5267 0,,
|
||||
-68.3769 730.942 8.125,294 125 296,stand,24.1699 -14.1522 0,,
|
||||
-32.4735 640.945 8.125,295 162 125,stand,19.5117 -111.541 0,,
|
||||
208.875 407.128 8.125,124,crouch,3.79578 137.443 0,,
|
||||
288.875 796.999 8.125,126 125 308,crouch,5.69641 -146.411 0,,
|
||||
-327.331 667.043 200.125,128,crouch,28.8336 -0.512688 0,,
|
||||
24.8702 487.125 200.125,301,crouch,8.1134 139.173 0,,
|
||||
-195.176 487.125 200.125,300 132,crouch,4.48792 92.0361 0,,
|
||||
-415.125 744.875 200.125,129,crouch,3.27942 -121.203 0,,
|
||||
-536.875 744.875 232.125,129,crouch,17.9572 -54.5544 0,,
|
||||
-471.125 407.125 200.125,130,crouch,7.08069 136.064 0,,
|
||||
-510.16 395.693 228.125,130,crouch,21.0663 -138.814 0,,
|
||||
-608.858 828.021 200.125,307 131,stand,6.55884 -90.4632 0,,
|
||||
-575.125 904.875 200.125,306,crouch,8.63525 -121.198 0,,
|
||||
267.792 669.885 8.125,298 125 124 52,stand,45.9283 -34.8614 0,,
|
||||
-482.252 869.731 8.125,288 122 310,stand,35.0519 8.13357 0,,
|
||||
-647.112 895.438 8.125,309 121 141 142,stand,34.53 -62.8326 0,,
|
||||
-1072.88 1119.13 44.125,14 312,crouch,5.52612 48.0085 0,,
|
||||
-1036.64 1283.23 8.125,13 311 313,stand,19.682 -166.269 0,,
|
||||
-1013.44 1392.94 44.125,312 314,prone,0.862427 -2.58361 0,,
|
||||
-1014.1 1508.38 6.125,313 8 9,stand,50.0702 -104.8 0,,
|
||||
-1456.88 1487.13 7.66677,8,crouch,3.27942 12.4237 0,,
|
||||
-1451.87 1774.11 40.125,317,crouch,5.52612 1.2012 0,,
|
||||
-1355.1 1776.65 40.125,7 8 316,stand,23.9996 -78.7408 0,,
|
||||
-1456.88 2096.88 40.125,7,crouch,6.04248 -26.9403 0,,
|
||||
-1456.88 1975.13 40.125,7,crouch,5.69641 28.1397 0,,
|
||||
-1072.88 2320.88 8.45738,5,crouch,3.97156 -43.3429 0,,
|
||||
-708.946 2307.45 0.766963,4 322,stand,13.8153 -1.04003 0,,
|
||||
-402.289 2298.84 1.50408,321 323 3,stand,21.2366 -49.9017 0,,
|
||||
-207.125 2320.88 0.701253,322,crouch,3.4552 -147.631 0,,
|
||||
-93.6029 2248.87 8.125,2,crouch,3.79578 -93.9349 0,,
|
||||
15.125 2328.88 0.932355,1 329,crouch,2.76306 -30.3955 0,,
|
||||
792.875 2328.88 -2.36249,0 328 327,crouch,5.00427 -144.005 0,,
|
||||
792.875 1975.13 -5.39512,0 330 326,crouch,3.4552 141.233 0,,
|
||||
549.011 2264.44 -1.44797,329 326 1,stand,6.90491 -178.535 0,,
|
||||
282.206 2272.71 1.49625,1 325 328 0,stand,10.5304 -59.5697 0,,
|
||||
504.374 2025.53 -8.12831,0 327 1,stand,13.2935 0.860624 0,,
|
||||
-95.125 1816.88 56.0732,19,crouch,6.90491 -127.081 0,,
|
||||
-616.875 1710.56 24.125,18,crouch,5.35034 16.2305 0,,
|
||||
-595.375 1936.88 24.125,18,crouch,7.08069 -36.0864 0,,
|
||||
-281.916 1311.13 49.9451,335 553 554,climb,-85 -90.3039 0,,
|
||||
-279.125 1308.04 264.125,334 336,climb,85 91.1627 0,,
|
||||
-270.857 1221.05 224.125,335 337 339 344 343,stand,36.1383 -82.5366 0,,
|
||||
-231.125 1145.15 224.125,338 336,crouch,20.9442 0.684843 0,,
|
||||
-234.803 1078.36 224.125,337 339,crouch,20.9442 1.71756 0,,
|
||||
-288.706 1007.9 224.125,336 338 341 343 345,stand,33.1995 177.488 0,,
|
||||
-560.875 1032.54 224.125,341 342,crouch,18.3514 -113.628 0,,
|
||||
-548.397 993.239 224.125,339 340,stand,32.1667 -24.3585 0,,
|
||||
-557.221 1136.88 224.125,340 343,stand,36.825 -12.6196 0,,
|
||||
-398.348 1125.29 224.125,342 344 336 339,stand,41.1426 80.4456 0,,
|
||||
-400.24 1229.42 224.125,343 336,stand,30.0958 13.4564 0,,
|
||||
-152.832 987.329 200.125,339 346,stand,23.3612 -0.00731707 0,,
|
||||
193.737 991.348 200.125,345,stand,16.6266 1.37698 0,,
|
||||
-560.875 1648.87 54.4143,555,crouch,3.33313 -44.2053 0,,
|
||||
-463.125 1167.13 -7.875,349 350,crouch,4.71191 144.683 0,,
|
||||
-649.447 1208.63 2.94257,141 12 348 350,stand,24.0479 89.4324 0,,
|
||||
-554.274 1409.45 0.773388,348 12 349 554 555,stand,17.3187 -56.6418 0,,
|
||||
-209.83 994.642 60.125,20,crouch,7.2992 49.0247 0,,
|
||||
296.875 975.125 52.5079,353,crouch,3.67371 140.535 0,,
|
||||
217.38 1148.08 44.125,21 20 352,stand,15.7642 170.918 0,,
|
||||
632.149 1288.88 12.125,355 356,crouch,2.29492 -131.069 0,,
|
||||
669.359 1278.96 12.125,354 356,crouch,2.64099 -33.6859 0,,
|
||||
644.118 1156.57 -0.292452,22 21 355 354,stand,21.8066 -99.2963 0,,
|
||||
1039.14 901.507 0.124999,358 359 22 53,stand,21.4606 8.4357 0,,
|
||||
1190.93 892.228 0.124999,359 54 357 59,stand,19.0436 -99.9939 0,,
|
||||
1085.08 792.158 0.124997,53 59 358 357 360,stand,17.489 -134.529 0,,
|
||||
1041.22 520.078 0.124997,59 53 365 362 58 359,stand,18.1812 -87.5574 0,,
|
||||
1035.14 212.202 8.125,365 41 364 58,stand,15.5884 139.838 0,,
|
||||
901.866 526.413 8.125,363 53 360,stand,24.2236 -96.5332 0,,
|
||||
893.764 368.93 8.125,364 362 365,stand,20.4224 -11.7572 0,,
|
||||
893.116 226.828 8.125,57 363 361,stand,23.1854 -1.2268 0,,
|
||||
1044.33 374.915 0.125,360 361 363 58,stand,21.8066 96.156 0,,
|
||||
2152.88 327.125 8.125,38 37 368,crouch,5.92041 146.743 0,,
|
||||
1921.9 620.908 0.125001,368 36 370 37,stand,30.9583 -84.6185 0,,
|
||||
1926.95 487.787 0.125001,369 367 366 37 38,stand,27.5031 -131.415 0,,
|
||||
1785.02 460.878 0.125001,36 38 368,stand,25.6024 -87.2113 0,,
|
||||
1990.88 700.875 8.125,367,crouch,3.84949 -131.404 0,,
|
||||
1796.11 226.208 8.125,38 39 407,stand,22.8394 -3.28674 0,,
|
||||
1547.95 642.475 0.0214478,373 376 378,stand,44.4275 90.8167 0,,
|
||||
1305.59 652.1 0.125002,372 59 374,stand,41.6644 -89.6173 0,,
|
||||
1312.83 544.906 36.125,373 375,stand,50.2942 -3.29223 0,,
|
||||
1384.06 533.155 36.125,374 376,stand,62.901 1.54178 0,,
|
||||
1548.97 533.08 36.125,375 372 377,stand,48.2233 91.3275 0,,
|
||||
1688.88 535.049 36.125,376,crouch,3.50342 -179.749 0,,
|
||||
1643.66 630.171 0.124999,36 372 379,stand,24.2236 173.17 0,,
|
||||
1646.16 813.416 8.125,378 35 380,stand,19.0436 65.0812 0,,
|
||||
1518.42 863.679 8.125,379 55,stand,17.3187 137.08 0,,
|
||||
1768.77 924.174 40.125,26 35 384 383 385,stand,16.7969 -17.4536 0,,
|
||||
1967.66 879.126 40.125,384 383,crouch,12.4792 -98.9502 0,,
|
||||
1903.81 879.125 40.125,382 381,crouch,12.309 -93.5998 0,,
|
||||
1972.61 976.875 58.125,381 382,crouch,8.51318 -150.064 0,,
|
||||
1625.47 971.16 40.125,381 386 393 392,stand,17.3187 126.539 0,,
|
||||
1588.23 1120.33 40.125,385 387,crouch,5.57434 -178.546 0,,
|
||||
1588.13 1187.07 40.125,386 26,crouch,5.57434 -178.546 0,,
|
||||
1579.13 1392.88 64.125,26,crouch,11.2708 -43.3484 0,,
|
||||
1840.1 1376.86 40.125,26 27 390,stand,15.4181 4.48062 0,,
|
||||
1972.88 1383 40.125,389,crouch,7.82105 -176.129 0,,
|
||||
1852.8 1039.47 40.125,28,crouch,4.01978 89.7675 0,,
|
||||
1576.76 990.023 40.125,385,crouch,6.78284 -152.13 0,,
|
||||
1638.01 923.9 40.125,385,crouch,3.15735 -112.073 0,,
|
||||
2152.88 1648.88 8.125,32 397,crouch,8.16711 -143.489 0,,
|
||||
1907.13 1439.13 8.125,32,crouch,3.50342 42.1143 0,,
|
||||
2152.88 974.545 8.125,34 397 399,stand,16.2805 88.905 0,,
|
||||
2149.61 1202.77 8.125,396 394 32 398,stand,20.2521 90.1135 0,,
|
||||
2067.86 1216.9 8.125,32 397 31,stand,19.3896 -92.2101 0,,
|
||||
2070.92 975.429 8.125,396 34 31,stand,35.4462 2.05813 0,,
|
||||
1354.45 391.879 0.124998,58 38 133,stand,17.8351 -12.2736 0,,
|
||||
1287.12 1648.88 0.125,24,crouch,0.224018 -46.6553 0,,
|
||||
876.125 -240.875 8.125,41,crouch,1.6028 56.9348 0,,
|
||||
1192.88 114.897 8.125,41,crouch,3.15735 -138.688 0,,
|
||||
1648.88 -79.125 8.125,165 410,crouch,4.19556 -136.095 0,,
|
||||
1253.61 -22.9256 34.125,40 134,crouch,8.85376 32.9407 0,,
|
||||
1840.88 -40.8687 8.125,39,crouch,1.94887 133.262 0,,
|
||||
1923.49 229.152 8.125,371 408,stand,14.5557 67.8278 0,,
|
||||
1905.69 89.3362 8.125,407 409,stand,27.6788 -91.3751 0,,
|
||||
1879.13 -32.8715 8.125,408,crouch,6.61255 77.32 0,,
|
||||
1548.78 -281.373 -15.875,411 404 165 60,stand,10.0623 -74.1101 0,,
|
||||
1567.2 -473.236 8.125,60 410 165,stand,16.2805 -108.64 0,,
|
||||
615.125 -204.936 8.125,42,crouch,5.87219 56.7114 0,,
|
||||
807.709 -232.875 8.125,42,crouch,5.18005 118.872 0,,
|
||||
816.875 200.875 44.125,42,crouch,7.42676 -123.717 0,,
|
||||
636.796 429.888 8.125,43 416,stand,15.7104 142.18 0,,
|
||||
688.875 592.875 8.125,415,crouch,6.38855 -133.731 0,,
|
||||
535.125 -232.875 144.125,44,crouch,6.04248 53.4375 0,,
|
||||
736.875 -232.867 180.125,44 45,crouch,9.66797 125.958 0,,
|
||||
542.821 404.406 145.125,49 139,crouch,6.55884 -104.024 0,,
|
||||
570.433 173.449 145.125,139 421 423,stand,6.21826 -92.2852 0,,
|
||||
567.302 104.85 176.125,420 422,stand,67.8571 -23.0438 0,,
|
||||
684.962 100.48 144.125,421 45 49,stand,36.0846 -158.758 0,,
|
||||
535.126 188.328 145.125,420 139,crouch,7.94312 171.887 0,,
|
||||
656.164 592.378 144.125,50 49,crouch,8.45947 90.39 0,,
|
||||
944.857 438.332 144.125,51,crouch,12.6068 -0.258179 0,,
|
||||
944.875 572.711 144.125,51,crouch,10.014 3.71338 0,,
|
||||
1160.88 -144.875 144.125,428,crouch,8.1134 149.095 0,,
|
||||
1133.44 -68.5028 144.125,45 427 429 46,stand,17.265 106.447 0,,
|
||||
983.125 8.87497 144.125,428,crouch,4.31763 -31.3385 0,,
|
||||
1344.88 -144.875 144.125,46,crouch,5.18005 142.883 0,,
|
||||
1330.47 136.875 144.125,48 432,crouch,11.7389 94.1858 0,,
|
||||
1400.88 23.125 172.125,431,crouch,9.15161 130.446 0,,
|
||||
1167.13 136.875 144.125,48,crouch,5.87219 -46.181 0,,
|
||||
1504.69 1.76172 144.125,47 435 436,stand,19.682 -43.2477 0,,
|
||||
1439.13 136.875 144.125,434,crouch,10.3601 -68.4558 0,,
|
||||
1640.88 136.875 172.125,434,crouch,8.98132 -123.536 0,,
|
||||
1640.88 -232.875 144.125,47,crouch,7.25098 129.93 0,,
|
||||
1530.56 -287.313 144.125,47 439 449,stand,23.1372 -91.9391 0,,
|
||||
1599.05 -280.743 144.125,438,stand,53.1793 -137.692 0,,
|
||||
868.804 -588.157 7.125,64 441,stand,12.431 -29.9597 0,,
|
||||
775.125 -692.875 8.44427,440,crouch,5.35583 33.5852 0,,
|
||||
1031.93 -575.125 8.68342,64 443,climb,-85 89.6979 0,,
|
||||
1030.99 -572.002 152.125,442 444,climb,85 -90.39 0,,
|
||||
1033.38 -495.313 136.125,443 445 446,stand,63.2416 -132.693 0,,
|
||||
975.125 -479.125 136.125,444,crouch,5.92043 -34.4476 0,,
|
||||
1370.3 -506.583 136.125,444 447,stand,57.0288 3.54309 0,,
|
||||
1372.44 -287.183 136.125,446 448,stand,39.588 0.950317 0,,
|
||||
1407.87 -286.665 168.125,447 449,climb,20.7685 176.891 0,,
|
||||
1442.25 -286.615 176.125,448 438,climb,12.9956 -0.785522 0,,
|
||||
1189.17 -732.299 44.13,60 61 64 65,stand,24.0479 -135.456 0,,
|
||||
1968.66 -503.552 17.125,63,crouch,5.22829 -136.324 0,,
|
||||
1804.97 -568.095 5.21269,63 60 453,stand,13.1714 -85.9076 0,,
|
||||
1822.18 -869.226 10.8513,452 62 61 454 68,stand,21.4606 -175.864 0,,
|
||||
1711.91 -1129.77 15.0452,453 455 68 67,stand,85 -130.292 0,,
|
||||
1514.86 -1144.97 23.6206,454 61 456 458,stand,25.7727 97.6245 0,,
|
||||
1363.3 -1250.1 7.68839,455 67 65,stand,85 -147.733 0,,
|
||||
1968.88 -1324.88 17.125,68,crouch,1.94885 148.376 0,,
|
||||
1254.02 -971.029 11.8466,455 61 65,stand,85 169.25 0,,
|
||||
1047.84 -1271.92 0.124998,65 66 460,stand,26.6351 -175.897 0,,
|
||||
873.045 -1265.81 7.66249,459 462 463 467,stand,9.71619 -177.979 0,,
|
||||
946.875 -1372.88 11.125,462,crouch,7.64526 152.496 0,,
|
||||
868.934 -1354.83 7.32738,461 460 463,stand,33.7158 75.4926 0,,
|
||||
693.048 -1317.12 5.125,460 462 69 82 464 465,stand,18.3514 -96.1304 0,,
|
||||
493.189 -1384.88 12.125,463 465,crouch,3.32764 59.7766 0,,
|
||||
560.468 -1287.59 6.62741,464 463 466,crouch,11.9629 47.8619 0,,
|
||||
371.184 -1219.36 0.124999,465 70 77 557 556,stand,17.8296 152.672 0,,
|
||||
878.497 -1097.54 0.125,460 65 69,stand,37.171 -15.8478 0,,
|
||||
641.843 -1817.39 0.124999,83 82 469 470,stand,9.88647 2.62573 0,,
|
||||
757.696 -1938.87 11.4307,468,crouch,1.60278 145.756 0,,
|
||||
800.875 -1711.13 11.5413,468,crouch,7.46948 -150.529 0,,
|
||||
206.295 -2376.28 0.234926,157 196 84 154,stand,19.7302 124.689 0,,
|
||||
147.922 -1714.55 8.2968,90,crouch,5.56885 -149.337 0,,
|
||||
-783.125 -623.206 -13.9403,99,crouch,3.67371 -142.427 0,,
|
||||
-1027.09 -752.924 -17.875,99 181 475,stand,20.5927 -175.743 0,,
|
||||
-1097.07 -665.172 -15.875,474,crouch,6.43677 -44.8682 0,,
|
||||
-783.125 -207.125 0.97736,118,crouch,10.5786 -131.193 0,,
|
||||
-1502.13 -348.916 0.125,117 478 480 495,stand,30.4364 29.7455 0,,
|
||||
-1523.68 -223.408 0.125001,477 479,crouch,5.39856 -34.3103 0,,
|
||||
-1322.98 -225.241 0.855269,478 116,stand,21.8011 -27.5757 0,,
|
||||
-1634.7 -390.127 0.124998,477 144 495,stand,57.2046 144.569 0,,
|
||||
-1862.38 -308.386 0.124998,144 482 483 484,stand,26.6406 135.071 0,,
|
||||
-1936.88 -207.125 0.124998,481 483,crouch,4.8877 -58.4802 0,,
|
||||
-1809.43 -207.125 0.124998,482 481,crouch,7.99133 -109.935 0,,
|
||||
-1899.57 -522.37 0.124998,481 147 492,stand,15.5884 -3.92761 0,,
|
||||
-1936.88 -771.875 0.124998,147,crouch,4.19556 24.3951 0,,
|
||||
-1848.49 -1101.79 0.124998,148 488,stand,49.6075 -168.129 0,,
|
||||
-1899.33 -1113.36 0.124998,148 488,stand,55.9961 107.792 0,,
|
||||
-1868.92 -1189.68 0.124998,486 487 489 490,stand,36.8304 22.6703 0,,
|
||||
-1901.01 -1208.88 0.124999,488,crouch,3.6792 26.8176 0,,
|
||||
-1773.1 -1164.06 0.124999,488,crouch,3.15735 40.1111 0,,
|
||||
-1386.63 -1208.88 -31.875,98,crouch,4.71191 120.229 0,,
|
||||
-1751.39 -520.74 0.125,144 484 145,stand,31.3043 -170.184 0,,
|
||||
-1611.05 -529.505 0.125,494,crouch,6.95862 34.2499 0,,
|
||||
-1613.84 -569.106 0.125,182 493,crouch,6.09619 -54.3274 0,,
|
||||
-1394.93 -527.871 -6.86697,117 181 480 477,stand,32.1667 -178.984 0,,
|
||||
-662.001 17.2901 4.07039,274 120 119,stand,71.1902 120.927 0,,
|
||||
-240.252 37.4952 60.6333,75 74 498 529,stand,33.1995 -8.22876 0,,
|
||||
-312.875 -31.5845 70.6566,497 499,climb,-85 -178.132 0,,
|
||||
-316.143 -30.7835 264.125,498 500,climb,85 -1.32629 0,,
|
||||
-401.156 -30.9269 248.125,499 501 502 503,climb,65.8344 -95.2594 0,,
|
||||
-559.644 -107.53 248.125,500 502,prone,16.7969 164.6 0,,
|
||||
-558.453 -43.4882 248.125,501 500,prone,22.6636 167.09 0,,
|
||||
-429.69 70.984 240.125,500 504 505 508,stand,38.2037 118.915 0,,
|
||||
-547.844 93.8094 240.125,503 505,crouch,24.3939 177.791 0,,
|
||||
-515.384 141.953 240.125,503 504 506,stand,46.839 33.4413 0,,
|
||||
-522.337 204.347 240.125,505 507,crouch,20.0763 148.776 0,,
|
||||
-374.226 221.545 240.125,506 508,crouch,21.109 -18.5295 0,,
|
||||
-371.776 107.444 240.125,507 503,crouch,23.1854 -4.89545 0,,
|
||||
-238.998 -420.058 84.325,75 510 511,stand,70.1465 -51.1809 0,,
|
||||
-174.859 -480.446 78.7176,509,crouch,16.275 120.096 0,,
|
||||
-368.875 -480.875 81.6424,509 75,crouch,8.33191 47.0589 0,,
|
||||
-368.875 -159.125 61.0005,75,crouch,2.6355 -41.6887 0,,
|
||||
264.948 -180.001 40.4016,136,crouch,11.441 140.13 0,,
|
||||
65.2145 -43.852 36.8215,136 515,crouch,4.70642 -29.4224 0,,
|
||||
97.2904 -163.093 35.5797,136 514 516,stand,20.9387 159.817 0,,
|
||||
-20.0212 -155.521 34.9697,515 517 518,stand,23.8721 105.6 0,,
|
||||
-96.0695 -31.0718 28.0513,516,crouch,5.74463 -43.2377 0,,
|
||||
-83.9427 -204.398 36.3308,516,crouch,7.81555 41.0164 0,,
|
||||
210.916 158.394 40.7791,149 520,stand,32.1613 -81.2339 0,,
|
||||
237.649 28.7906 38.0402,519 521 525,stand,39.588 -97.2905 0,,
|
||||
188.872 25.9145 33.8745,520 136 522,stand,51.673 -87.2819 0,,
|
||||
90.5014 23.0419 32.125,521 523 524,stand,28.3655 122.15 0,,
|
||||
73.4525 117.273 36.1814,522 149 526,stand,53.0573 80.8913 0,,
|
||||
62.5464 -5.69511 40.4492,522,crouch,6.43677 53.0849 0,,
|
||||
251.834 7.54118 38.4612,520,crouch,10.5786 140.965 0,,
|
||||
-11.18 107.927 37.0683,523 527 528 529,stand,21.4551 -179.666 0,,
|
||||
-109.184 156.47 42.1267,526,crouch,6.26099 -42.9136 0,,
|
||||
22.7154 15.5783 38.5784,526,crouch,9.37012 151.33 0,,
|
||||
-122.129 43.2833 78.125,526 497,stand,38.2037 62.7529 0,,
|
||||
441.525 -205.608 82.5335,73 531 532 135,stand,54.7821 0.9328 0,,
|
||||
488.872 -244.875 82.4533,530,crouch,12.6495 147.523 0,,
|
||||
488.875 -57.2751 113.094,530 533 135,stand,52.8815 94.8659 0,,
|
||||
487.134 72.4092 112.178,532 167 138 137,stand,47.8772 116.097 0,,
|
||||
423.108 800.875 44.125,52,crouch,3.32764 -89.8967 0,,
|
||||
340.023 792.875 44.8597,52 536,climb,-85 90.367 0,,
|
||||
339.1 796.361 264.125,535 537,climb,85 -91.27 0,,
|
||||
350.903 864.872 248.125,536 538 539,stand,69.4598 -52.7629 0,,
|
||||
367.805 990.703 248.125,537 539 547,stand,28.5413 166.711 0,,
|
||||
531.386 949.99 248.125,538 537 540 548,stand,30.9583 -0.599792 0,,
|
||||
690.981 947.492 248.125,539 541 544,stand,33.7213 0.0923462 0,,
|
||||
799.668 1002.62 248.125,540 542,stand,62.7252 -3.70892 0,,
|
||||
863.848 939.915 248.125,541 543 545 546,stand,43.5596 -111.792 0,,
|
||||
819.979 858.399 248.125,542 544 545,stand,53.7494 102.298 0,,
|
||||
716.82 873.139 248.125,543 540,stand,36.825 132.516 0,,
|
||||
889.344 826.361 248.125,543 542,prone,23.1854 -35.3056 0,,
|
||||
886.424 1036.78 248.125,542,prone,19.906 -16.8058 0,,
|
||||
328.489 1038.17 248.125,538,prone,22.1472 163.628 0,,
|
||||
488.072 826.335 248.125,539,prone,17.489 -97.0774 0,,
|
||||
552.875 -851.125 28.599,550 551,crouch,6.0907 -129.478 0,,
|
||||
530.966 -1064.16 0.124997,549 70 69,stand,33.1995 -153.648 0,,
|
||||
356.68 -889.592 0.124997,549 72 70 560 556,stand,30.7825 50.4282 0,,
|
||||
-259.277 1522.02 48.7016,555 15 553 16,stand,40.578 -74.6741 0,,
|
||||
-247.605 1393.99 48.125,552 334 554 15 20,stand,33.327 -167.739 0,,
|
||||
-401.919 1387.75 49.5499,553 555 350 334,stand,30.3882 134.764 0,,
|
||||
-415.494 1514.59 48.8976,347 552 554 350,stand,25.5542 94.5319 0,,
|
||||
255.791 -1035.1 0.0137508,557 224 559 70 466 551,stand,26.7627 -117.68 0,,
|
||||
259.256 -1164.93 0.0383785,558 556 466 70 77,stand,28.147 -166.893 0,,
|
||||
96.2773 -1165.02 0.0302844,71 559 557 77,stand,24.8621 163.581 0,,
|
||||
91.0401 -1049.17 0.125,558 71 556 224 560,stand,21.5826 55.838 0,,
|
||||
64.9411 -966.503 0.125001,559 212 224 551,stand,70.152 168.041 0,,
|
||||
|
@@ -0,0 +1,334 @@
|
||||
333
|
||||
2454.19 3309.53 83.2694,1 3 317,stand,,,
|
||||
2226.55 3233.07 44.922,0 2 3 14 131,stand,,,
|
||||
2220.15 3041.45 40.9748,1 3 6 14 5,stand,,,
|
||||
2456.98 3094.29 49.7879,2 0 1 4 6,stand,,,
|
||||
2435.17 2793.7 26.5115,3 5 6 8 46 7,stand,,,
|
||||
2267.76 2802.6 33.2511,4 6 7 2 23,stand,,,
|
||||
2314.47 2946.94 33.6642,5 2 3 4,stand,,,
|
||||
2277.69 2522.92 11.5156,5 8 9 23 63 4 62,stand,,,
|
||||
2434.63 2475.08 10.2572,7 4 63,stand,,,
|
||||
1863.28 2486.19 0.378498,7 10 11 22 23,stand,,,
|
||||
1650.08 2552.6 37.8084,9 11 21 313,stand,,,
|
||||
1923.91 2703.84 34.1562,9 12 20 10,stand,,,
|
||||
1799.48 2918.6 33.9048,11 13 15 19 20,stand,,,
|
||||
1912.13 3094.42 47.5839,12 14 15 20,stand,,,
|
||||
2080.87 3139.83 44.7371,13 2 1 131,stand,,,
|
||||
1739.06 3089.97 50.2139,13 12 16 18,stand,,,
|
||||
1723.62 3305.95 71.7814,15 17,stand,,,
|
||||
1633.53 3265.08 64.0198,16 18,stand,,,
|
||||
1637.64 3050.9 52.9482,17 15 19,stand,,,
|
||||
1637.18 2877.83 27.3161,12 18 24,stand,,,
|
||||
1977.99 2866.73 47.8215,13 11 12,stand,,,
|
||||
1658.48 2422.87 0.125001,10 22 312,stand,,,
|
||||
1860.67 2427.43 0.125001,21 9 40,stand,,,
|
||||
2094.07 2616.67 29.1461,9 7 5,stand,,,
|
||||
1339.55 2887.19 48.125,19 25,stand,,,
|
||||
1034.44 2884.38 80.125,24 26 314,stand,,,
|
||||
1033.21 2510.84 80.125,25 27,stand,,,
|
||||
1055.78 2321.05 66.0449,26 28 68 202,stand,,,
|
||||
1065.78 2118.92 52.3605,27 29 199 200 202,stand,,,
|
||||
1338.44 2130.84 39.1663,28 30 37 31,stand,,,
|
||||
1474.39 2015.56 18.5348,29 31 66 37,stand,,,
|
||||
1563.46 2058.87 34.748,30 37 29 300,crouch,,,
|
||||
1662.25 2061.27 3.30389,33 38 300,crouch,,,
|
||||
1643.36 2339.46 136.125,32 306 307,stand,,,
|
||||
1798.3 2331.2 136.125,35 307,stand,,,
|
||||
1799.64 2095.82 136.125,34 36 309 310,stand,,,
|
||||
1679.53 2032.49 136.125,35 311,stand,,,
|
||||
1466.67 2187.56 70.0776,31 29 30,stand,,,
|
||||
1742.13 2037.96 0.125001,32 39 41 326,stand,,,
|
||||
1844.97 2208.45 0.125001,38 40 41 327,stand,,,
|
||||
1864.15 2324.98 0.125001,39 22 41 327,stand,,,
|
||||
1708.61 2291.76 0.125001,40 38 39 301,stand,,,
|
||||
1953.06 2126.62 0.125001,43 45 44 326,stand,,,
|
||||
2045.99 2209.58 0.125001,42 44 302 45 327,stand,,,
|
||||
2061.93 2039.26 0.125001,43 303 305 42,stand,,,
|
||||
1939.08 2038.47 0.125001,42 303 43 326,stand,,,
|
||||
2619.17 2795.17 24.1145,4 47 318 319,stand,,,
|
||||
2736.06 2773.84 32.9852,46 48,stand,,,
|
||||
2782.63 2705.6 42.4164,47 49,stand,,,
|
||||
3045.75 2735.42 24.6562,48 50 320,stand,,,
|
||||
3385.06 2764.23 20.8362,49 51,stand,,,
|
||||
3513.31 2729.46 9.57152,50 52 321,stand,,,
|
||||
3518.52 2420.64 0.125001,51 53,stand,,,
|
||||
3536.45 2059.35 0.372254,52 54 86,stand,,,
|
||||
3218.48 2068.08 -3.31724,53 55,stand,,,
|
||||
2946 2061.3 -5.58292,54 56 57 85 84,stand,,,
|
||||
2713.03 1867.27 1.59606,55 57 58 84 83,stand,,,
|
||||
2789.01 2050.68 -1.12176,56 55 58,stand,,,
|
||||
2442.46 1805.15 -12.1973,56 59 69 83 84 57,stand,,,
|
||||
2276.07 1910.02 -6.53652,58 60 64,stand,,,
|
||||
2266.72 2095.04 -1.50092,59 61 63,stand,,,
|
||||
2155.2 2129.33 0.125,60 62 328,stand,,,
|
||||
2154.56 2380.39 0.125,61 63 7,stand,,,
|
||||
2266.93 2396.58 -0.778389,62 60 7 8,stand,,,
|
||||
2029.99 1874.26 3.2441,59 65 67 71,stand,,,
|
||||
1847.01 1702.42 12.9834,64 66 70 71 72 73,stand,,,
|
||||
1647 1875.55 1.14863,65 30 299,stand,,,
|
||||
2029.65 1915.94 1.54044,64 304,stand,,,
|
||||
874.648 2328.95 48.125,27 198 199 202 204,stand,,,
|
||||
2297.36 1643.49 -2.47338,58 70 71 83,stand,,,
|
||||
2012.08 1564.38 -3.31845,69 65 71 72 75,stand,,,
|
||||
2089.89 1684.17 8.89561,65 70 69 64,stand,,,
|
||||
1895.69 1394.97 -14.5245,70 65 73 74 75 112,stand,,,
|
||||
1704.57 1381.04 6.94906,65 72 112 111 298,stand,,,
|
||||
2067.56 1231.65 18.7872,72 75 77 112,stand,,,
|
||||
2165.07 1338.72 27.842,74 70 72 76,stand,,,
|
||||
2219.16 1030.09 1.8144,75 77 78,stand,,,
|
||||
2114.89 1072.89 0.786278,76 74 287,stand,,,
|
||||
2407.86 990.954 3.26014,76 79 278,stand,,,
|
||||
2718.47 981.185 -3.56613,78 80 81 88,stand,,,
|
||||
2900.68 1013.96 10.274,79 276 277,stand,,,
|
||||
2738.92 1198.2 -4.71743,79 82 279,stand,,,
|
||||
2780.96 1527.11 1.29409,81 83 84 85 286,stand,,,
|
||||
2553.25 1584.1 10.844,82 69 58 84 56,stand,,,
|
||||
2717.41 1726.76 11.3632,83 56 82 85 58 55,stand,,,
|
||||
2883.38 1795.31 14.3666,82 55 84,stand,,,
|
||||
3859.35 2023.69 7.41258,53 87,stand,,,
|
||||
4211.96 2042.4 25.1248,86 322 323,stand,,,
|
||||
2779.32 778.579 11.4933,79 89,stand,,,
|
||||
2743.81 532.195 -7.33351,88 90 91,stand,,,
|
||||
2902.61 555.499 12.9912,89 274 275,stand,,,
|
||||
2471.56 517.276 0.125001,89 92 273,stand,,,
|
||||
2445.95 215.164 -4.73755,91 93,stand,,,
|
||||
2448.43 95.3351 4.94699,92 94 97 99,stand,,,
|
||||
2245.7 102.359 67.3491,93 95,stand,,,
|
||||
2053.89 109.931 108.125,94 96 271 272,stand,,,
|
||||
1998.41 236.522 108.125,95 270 272,stand,,,
|
||||
2380.21 -86.4078 -1.21599,93 98 99 100,stand,,,
|
||||
2316.36 -241.831 -0.731072,97 99 100 265,stand,,,
|
||||
2476.21 -244.195 11.8171,98 97 266 93,stand,,,
|
||||
2161.33 -151.798 -0.0166457,98 97 101,stand,,,
|
||||
1925.59 -133.448 1.02635,100 102 103 129 135 130,stand,,,
|
||||
1932.32 -26.747 4.54514,101 103 104 269,stand,,,
|
||||
1763.32 54.5791 8.75981,102 101 104 105 128 129 134,stand,,,
|
||||
1849.75 201.18 13.9351,103 105 102 293,stand,,,
|
||||
1686.87 249.306 0.124999,104 103 106 126 134,stand,,,
|
||||
1659.97 374.779 0.125,105 107 292,stand,,,
|
||||
1656.08 582.807 2.64954,106 108 291,stand,,,
|
||||
1725.85 732.989 -1.22978,107 109,stand,,,
|
||||
1746.45 907.854 3.21103,108 110 290,stand,,,
|
||||
1643.86 1026.47 -8.05117,109 111 113 289,stand,,,
|
||||
1735.47 1193.14 -8.60948,110 112 73 289,stand,,,
|
||||
1791.78 1267.65 -10.8388,111 73 72 74,stand,,,
|
||||
1519.04 1034.38 0.967186,110 114 294,stand,,,
|
||||
1307.58 1028.71 -1.1845,113 115 295,stand,,,
|
||||
1052.85 1093.73 -0.474404,114 116 297,stand,,,
|
||||
818.177 1015.63 -4.1235,115 117 118 132 133,stand,,,
|
||||
777.398 815.284 0.892015,116 120 121 132 133,stand,,,
|
||||
616.891 1037.51 -3.88801,116 119 120 133 177 179,stand,,,
|
||||
506.042 1162.04 3.00196,118 177 178 236 237,stand,,,
|
||||
724.927 796.127 3.14658,118 117 133 121 239,stand,,,
|
||||
812.934 743.236 4.29764,117 132 120 240,stand,,,
|
||||
890.943 624.189 48.125,123 241,stand,,,
|
||||
987.29 469.601 48.125,122 124 242,stand,,,
|
||||
1085.62 263.729 48.125,123 244 245,stand,,,
|
||||
1283.88 143.472 -0.465836,126 127 128 243,stand,,,
|
||||
1489.39 233.594 4.05664,125 105,stand,,,
|
||||
1313.39 -51.4085 5.81664,125 128 163 164,stand,,,
|
||||
1459.2 -104.801 -0.777658,127 129 103 125 134 164,stand,,,
|
||||
1663.16 -125.682 11.1574,128 101 103 130 134 135,stand,,,
|
||||
1708.42 -277.753 3.71493,129 135 101 136,stand,,,
|
||||
2066.59 3280.21 52.2466,1 14,stand,,,
|
||||
873.278 841.998 2.6387,116 121 117,stand,,,
|
||||
720.34 943.415 0.805788,117 116 118 120 179,stand,,,
|
||||
1619.6 101.341 0.125,128 103 105 129,stand,,,
|
||||
1865.59 -254.692 1.39479,101 130 129 137,stand,,,
|
||||
1696.61 -393.685 6.3413,130 137 139 267 329 330,stand,,,
|
||||
1873.94 -368.421 7.78536,136 135 139 140 268 329,stand,,,
|
||||
1617.18 -815.402 2.30697,139 141 146 147 331,stand,,,
|
||||
1617.67 -574.051 8.81875,138 136 137 330,stand,,,
|
||||
1960.1 -846.339 0.125066,137 141 142 143 332,stand,,,
|
||||
1801.82 -840.901 0.125,138 140 146 331 330,stand,,,
|
||||
2093.22 -929.563 1.80357,140 143 250,stand,,,
|
||||
2026.74 -1083.52 11.3185,142 140 144,stand,,,
|
||||
1883.62 -1102.7 0.446901,143 145 147 247,stand,,,
|
||||
1709.29 -1064 0.824049,144 146 147,stand,,,
|
||||
1713.27 -931.455 0.575227,145 141 138,stand,,,
|
||||
1592.47 -1204.54 0.124998,145 144 148 246 138,stand,,,
|
||||
1500.61 -1089.53 1.5988,147 149 214,stand,,,
|
||||
1388.79 -1057.56 -8.71065,148 150 153 155 154 214 215,stand,,,
|
||||
1349.42 -1341.17 3.27927,149 151 152 153 154 155,stand,,,
|
||||
1226.11 -1498.81 8.125,150 152,stand,,,
|
||||
1476.92 -1505.05 5.54106,151 150,stand,,,
|
||||
1478.83 -1233.29 0.125,150 149,stand,,,
|
||||
1221.26 -1208.29 8.125,150 155 149 211,stand,,,
|
||||
1250.81 -968.13 4.89101,154 149 150 156 215,stand,,,
|
||||
1074.35 -899.864 8.125,155 157 219,stand,,,
|
||||
928.134 -833.55 9.21138,156 158 219,stand,,,
|
||||
937.316 -682.29 8.125,157 159 221 222,stand,,,
|
||||
1062.88 -612.608 8.125,158 160,stand,,,
|
||||
1100.06 -457.461 8.125,159 161 223,stand,,,
|
||||
1102.77 -304.979 8.125,160 162 224,stand,,,
|
||||
1032.48 -266.288 8.125,161 163 165 324,stand,,,
|
||||
1088.18 -37.9368 8.125,162 127 225,stand,,,
|
||||
1305.88 -268.363 0.234204,127 128 216,stand,,,
|
||||
701.563 -227.44 8.125,162 166 226,stand,,,
|
||||
458.085 -247.32 8.30107,165 167 227,stand,,,
|
||||
337.514 -195.408 8.125,166 168 325,stand,,,
|
||||
372.905 6.48962 3.29122,167 169 171 231,stand,,,
|
||||
650.375 -45.4228 3.02601,168 170,stand,,,
|
||||
801.557 -27.3232 21.3757,169 228,stand,,,
|
||||
271.644 226.059 11.7926,168 172 173,stand,,,
|
||||
45.0605 61.5067 22.1626,171 233,stand,,,
|
||||
345.615 506.517 -6.18705,171 174,stand,,,
|
||||
377.78 725.641 2.46325,173 175 234 235 238,stand,,,
|
||||
328.104 879.153 -9.50665,174 176 177 179 234,stand,,,
|
||||
263.489 1071.37 16.5961,175 296,stand,,,
|
||||
464.914 989.988 -3.875,175 119 118 179,stand,,,
|
||||
497.551 1354.07 14.3823,119 180 181 195,stand,,,
|
||||
541.762 868.653 15.8316,177 175 133 118,stand,,,
|
||||
341.484 1507.07 42.9902,178 181 182 194 195,stand,,,
|
||||
468.326 1622.27 32.7323,180 178 192 194,stand,,,
|
||||
135.509 1569.96 93.6647,180 183 194,stand,,,
|
||||
70.885 1721.66 94.342,182 184,stand,,,
|
||||
96.3708 2117.04 100.134,183 185 188 187,stand,,,
|
||||
153.326 2392.09 80.125,184 186 188 189 316,stand,,,
|
||||
363.135 2325.58 66.538,185 187 188 189 190 203,stand,,,
|
||||
420.726 2094.44 48.125,186 188 184 190 191 192 193,stand,,,
|
||||
252.465 2227.07 78.2743,187 184 186 185,stand,,,
|
||||
205.446 2504.11 80.125,185 186 315,stand,,,
|
||||
593.515 2261.59 57.427,186 187 197 198 203 204,stand,,,
|
||||
340.582 1883.76 69.3503,187 192,stand,,,
|
||||
520.012 1751.2 45.3083,191 187 193 181,stand,,,
|
||||
611.455 1896.07 77.5411,187 192 196,stand,,,
|
||||
267.892 1617.34 80.3233,181 182 180,stand,,,
|
||||
362.146 1299.56 35.6709,180 178,stand,,,
|
||||
794.903 1977.58 111.943,193 197 199,stand,,,
|
||||
712.034 2125.82 81.8454,196 190 198,stand,,,
|
||||
767.765 2281.5 50.1452,197 68 190 204,stand,,,
|
||||
902.778 2103.28 85.0237,68 196 28 200 202,stand,,,
|
||||
1039.36 1993.93 103.459,199 201 28,stand,,,
|
||||
1072.65 1885.48 128.511,200,stand,,,
|
||||
974.93 2234.25 48.125,28 27 68 199,stand,,,
|
||||
517.164 2402.32 80.125,186 190,stand,,,
|
||||
760.327 2404.07 80.125,190 68 198,stand,,,
|
||||
2564.97 1234.21 68.125,280 282 285,stand,,,
|
||||
2434.15 1253.26 136.125,207 281 208,stand,,,
|
||||
2367.24 1280.73 136.125,206 208 209 284,stand,,,
|
||||
2351.01 1130.12 136.125,207 206,stand,,,
|
||||
2474.53 1393.05 136.125,207 210,stand,,,
|
||||
2558.27 1419.82 136.125,209 283,stand,,,
|
||||
1179.81 -1276.94 8.125,154,crouch,3.10913 43.5498 0,,
|
||||
1299.14 -648.582 6.17715,215 213 216,stand,40.7965 -51.059 0,,
|
||||
1458.14 -637.979 2.58582,212 214 217,stand,30.2661 -79.7223 0,,
|
||||
1467.45 -796.514 0.124999,213 215 148 149,stand,28.1952 -140.153 0,,
|
||||
1286.93 -799.498 -3.62358,212 214 155 149,stand,18.8678 121.08 0,,
|
||||
1306.56 -552.387 8.63783,212 217 164,stand,55.1282 -21.7145 0,,
|
||||
1466.46 -565.127 9.29252,216 213 218,stand,41.4886 -67.467 0,,
|
||||
1517.8 -519.726 14.2173,217,crouch,6.60706 -131.353 0,,
|
||||
945.638 -940.911 23.8079,220 157 156,stand,46.839 49.9274 0,,
|
||||
900.134 -993.839 43.5902,219,crouch,13.0011 49.7571 0,,
|
||||
860.113 -561.598 8.125,158,crouch,-0.643921 -52.6465 0,,
|
||||
860.708 -740.999 8.125,158,crouch,3.15735 41.1053 0,,
|
||||
1194.29 -410.358 8.125,160,crouch,3.50342 -149.337 0,,
|
||||
1185.36 -344.063 8.125,161,crouch,4.71191 151.617 0,,
|
||||
1025.27 25.2231 24.4849,163,crouch,6.26648 -23.8074 0,,
|
||||
756.987 -155.448 8.125,165,crouch,1.427 -149.332 0,,
|
||||
380.021 -355.832 40.125,166,crouch,8.3374 89.2914 0,,
|
||||
828.866 -18.9135 26.4475,170 229,climb,5.57434 1.40076 0,,
|
||||
837.093 -12.1177 74.9701,228 230,climb,85 -179.379 0,,
|
||||
888.875 -13.1857 84.9319,229,crouch,2.29492 -1.88965 0,,
|
||||
268.103 -98.2056 20.0222,168 232,stand,24.5697 5.19104 0,,
|
||||
222.806 -107.007 21.2796,231,crouch,9.02954 20.2094 0,,
|
||||
22.3292 41.7155 25.0796,172,crouch,9.5459 35.0574 0,,
|
||||
283.749 798.803 7.02788,174 175,stand,33.0292 69.5874 0,,
|
||||
476.497 682.546 22.6578,174,crouch,6.0907 75.9705 0,,
|
||||
426.003 1183.77 18.836,119,crouch,5.39856 -30.3937 0,,
|
||||
611.702 1182.96 25.1332,119,crouch,11.7871 -128.469 0,,
|
||||
545.313 775.523 12.419,239 174,stand,31.6449 -159.719 0,,
|
||||
644.433 798.935 9.61731,120 238,stand,34.2377 9.66248 0,,
|
||||
840.893 697.44 14.6805,121 241,climb,4.53613 -60.6171 0,,
|
||||
845.354 692.383 48.125,240 122,climb,85 109.276 0,,
|
||||
1115.15 437.393 48.125,123,crouch,5.57434 164.004 0,,
|
||||
1256.46 182.953 0.0804471,244 125,climb,0.910645 150.535 0,,
|
||||
1244.2 186.312 48.125,243 124,climb,85 -33.0084 0,,
|
||||
1199.09 333.879 48.125,124,crouch,8.3374 -105.524 0,,
|
||||
1568.25 -1305.53 0.124998,147,crouch,4.54163 73.6908 0,,
|
||||
1932.04 -1280.14 48.125,144 248,stand,47.3608 72.9987 0,,
|
||||
2077.18 -1240.62 90.325,247 249,stand,66.5265 12.7386 0,,
|
||||
2120.24 -1293.99 84.5611,248,crouch,5.22827 128.606 0,,
|
||||
2098.19 -555.342 136.125,142 251 253,stand,51.1621 6.87744 0,,
|
||||
2099.94 -426.879 139.788,250 252,stand,45.9821 94.4165 0,,
|
||||
2119.31 -348.04 149.818,251,crouch,11.4465 -122.618 0,,
|
||||
2258.1 -547.775 136.125,250 254 256 257 255,stand,21.4606 -1.41174 0,,
|
||||
2461.91 -553.56 136.125,253 255 257 256 261,stand,19.906 -98.6188 0,,
|
||||
2465.53 -418.476 136.125,254 256 253 260,stand,31.1285 90.0934 0,,
|
||||
2369.97 -420.367 136.389,255 253 257 254 259,stand,30.4364 92.3456 0,,
|
||||
2261.69 -421.667 136.125,256 253 258 254,stand,21.6309 -174.243 0,,
|
||||
2207.09 -356.995 149.012,257,crouch,8.3374 -46.3019 0,,
|
||||
2372.15 -343.125 139.538,256,crouch,16.7969 90.9503 0,,
|
||||
2476.52 -343.15 137.087,255,crouch,16.6266 92.8455 0,,
|
||||
2468.29 -788.78 136.125,254 262,stand,60.1379 -89.1376 0,,
|
||||
2474.41 -985.039 72.125,261 263,stand,35.6165 172.793 0,,
|
||||
2319.98 -974.877 72.125,262 264 265,stand,29.2279 104.249 0,,
|
||||
2288.99 -1037.71 72.125,263,crouch,7.12891 60.5676 0,,
|
||||
2321.76 -759.623 0.124999,263 98,stand,24.74 89.577 0,,
|
||||
2533.32 -291.798 24.7174,99,crouch,9.02954 136.538 0,,
|
||||
1565.82 -356.084 27.2117,136,crouch,5.57434 -49.422 0,,
|
||||
1987.15 -349.01 23.9689,137,crouch,4.53613 -133.852 0,,
|
||||
2012.5 32.1094 18.2519,102,crouch,4.36584 -132.643 0,,
|
||||
1959.18 259.961 108.125,96,crouch,11.1005 -157.857 0,,
|
||||
1967.61 87.3421 108.125,95,crouch,11.6168 177.111 0,,
|
||||
2095.96 168.561 108.125,95 96,claymore,16.4508 -93.4552 0,,
|
||||
2359.84 614.321 27.9523,91,crouch,5.22827 -38.8916 0,,
|
||||
2924.94 465.864 26.7722,90,crouch,8.68347 143.959 0,,
|
||||
2927.54 615.912 28.2145,90,crouch,9.5459 -152.496 0,,
|
||||
2923.36 1104.44 26.2362,80,crouch,7.99133 -143.86 0,,
|
||||
2922.44 920.94 21.6703,80,crouch,7.99133 140.685 0,,
|
||||
2356.46 877.781 25.3261,78,crouch,12.8253 43.4674 0,,
|
||||
2639.13 1224.71 -0.584051,81 280,climb,-85 -178.077 0,,
|
||||
2634.98 1221.28 68.125,279 205,climb,85 0.966797 0,,
|
||||
2504.47 1239.18 136.125,206 282,climb,85 -2.14233 0,,
|
||||
2511.13 1238.54 68.125,281 205,climb,-85 175.182 0,,
|
||||
2548.93 1367.6 136.125,210,crouch,9.79553 -76.0474 0,,
|
||||
2330.68 1370.15 136.125,207,crouch,13.7671 158.428 0,,
|
||||
2527.46 1314.75 80.9215,205,crouch,13.075 -58.6176 0,,
|
||||
2923.7 1405.2 10.1998,82,crouch,5.30762 144.256 0,,
|
||||
2021.72 1112.85 28.125,77 288,stand,69.2896 -177.061 0,,
|
||||
1811.13 1114.75 28.125,287 289,stand,83.7915 -172.403 0,,
|
||||
1722.33 1101.88 -10.6273,288 111 110,stand,31.991 63.1055 0,,
|
||||
1627.43 879.279 1.06728,109,crouch,6.61255 41.6931 0,,
|
||||
1759.98 545.348 -3.74465,107,crouch,3.67371 134.747 0,,
|
||||
1766.99 415.238 -2.16738,106,crouch,4.8822 -125.799 0,,
|
||||
1907.79 240.413 23.9632,104,crouch,10.0623 -131.155 0,,
|
||||
1480.07 1133.97 5.9886,113,crouch,9.37012 -41.1932 0,,
|
||||
1209.46 985.66 -2.81569,114,crouch,4.01978 25.4498 0,,
|
||||
276.853 1175.25 28.1792,176,crouch,8.81531 -93.6804 0,,
|
||||
1104 988.007 -3.15107,115,crouch,5.70618 134.583 0,,
|
||||
1606.25 1481.22 21.6561,73,crouch,7.95288 -35.1453 0,,
|
||||
1758.58 1960.58 4.67828,66,crouch,4.66797 -146.86 0,,
|
||||
1615.13 2059.42 6.59501,31 32,climb,4.15161 -179.659 0,,
|
||||
1644.57 2339.88 0.125001,41,crouch,5.18433 -38.2544 0,,
|
||||
2086.33 2247.36 0.125001,43,crouch,5.36011 -147.557 0,,
|
||||
2000.87 2021.49 0.125001,44 45,crouch,5.18433 -95.7623 0,,
|
||||
2053.48 1968.88 0.404275,67 305,climb,10.3644 89.1541 0,,
|
||||
2046.88 2008.15 0.125001,44 304,stand,6.73889 -87.8302 0,,
|
||||
1650.68 2360.88 136.125,33,crouch,14.3359 84.4739 0,,
|
||||
1727.55 2328.37 136.125,33 34 308,stand,31.9525 30.0806 0,,
|
||||
1717.2 2360.52 136.125,307,crouch,13.9899 83.6115 0,,
|
||||
1805.22 2011.65 136.125,35,crouch,8.12317 -98.5474 0,,
|
||||
1849.86 2011.07 136.125,35,crouch,9.33167 -99.0637 0,,
|
||||
1620.41 2082.02 168.125,36,crouch,9.33167 177.709 0,,
|
||||
1613.95 2404.85 0.125001,21,crouch,1.08093 36.991 0,,
|
||||
1609.79 2681.43 52.6206,10,crouch,9.88647 -47.4445 0,,
|
||||
999.94 2918.44 80.125,25,crouch,6.78284 -44.1705 0,,
|
||||
196.985 2569.39 80.125,189,crouch,4.19006 -77.8436 0,,
|
||||
40.3451 2432.2 80.125,185,crouch,3.84399 -37.2656 0,,
|
||||
2475.68 3337.42 94.0836,0,crouch,12.6495 -128.09 0,,
|
||||
2533.15 2882.85 34.0265,46,crouch,4.01978 -45.5603 0,,
|
||||
2529.89 2700.7 33.507,46,crouch,8.33191 60.1117 0,,
|
||||
2942.11 2774 38.9765,49,crouch,10.7544 -23.7964 0,,
|
||||
3559.2 2780.89 25.0497,51,crouch,9.5459 -136.203 0,,
|
||||
4259.23 2006.48 27.926,87,crouch,9.88647 177.347 0,,
|
||||
4246.75 2073.36 36.9218,87,crouch,11.7871 -176.957 0,,
|
||||
864.25 -153.475 52.625,162,crouch,10.2325 -28.6578 0,,
|
||||
298.729 -361.828 104.125,167,crouch,27.157 53.6957 0,,
|
||||
1823.37 2086.64 0.124999,45 42 38,stand,30.9045 20.5005 0,,
|
||||
1936.21 2261.15 0.124999,39 40 43,stand,31.4264 166.745 0,,
|
||||
2156.45 2006.63 0.124999,61,crouch,4.14185 87.3138 0,,
|
||||
1775.74 -529.699 0.125,137 332 330 136,stand,24.3457 -125.42 0,,
|
||||
1697.7 -640.157 4.10799,331 139 329 136 141,stand,20.2039 -58.7714 0,,
|
||||
1814.9 -743.422 0.0899598,332 330 141 138,stand,28.3173 50.5261 0,,
|
||||
1890.96 -634.492 0.754541,329 331 140,stand,28.6633 89.0332 0,,
|
||||
|
@@ -0,0 +1,361 @@
|
||||
360
|
||||
1792 -1502 396.125,1 13 231 233 232,stand,,,
|
||||
1505.88 -1483.61 384.125,0 2 230 232,stand,,,
|
||||
1297.43 -1469.43 420.893,1 3,stand,,,
|
||||
1145.6 -1474.22 480.125,2 4 334,stand,,,
|
||||
1138.29 -1673.49 480.125,3 5,stand,,,
|
||||
1141.59 -1915.02 639.859,4 6,stand,,,
|
||||
1145.42 -2129.6 672.125,5 7 189 196 211,stand,,,
|
||||
1358.72 -2108.47 672.125,6 8,stand,,,
|
||||
1532.57 -2090.71 592.125,7 229 332,stand,,,
|
||||
1905.76 -2096.89 592.125,10 229,stand,,,
|
||||
2176.97 -2145.75 592.125,9 11 26 27 355,stand,,,
|
||||
2203.16 -1976.12 592.125,10 12 328,stand,,,
|
||||
1961.59 -1978.9 488.125,11 13,stand,,,
|
||||
1949.24 -1765.56 400.125,12 0,stand,,,
|
||||
1580.35 -2116.39 389.236,15 18 234 238,stand,,,
|
||||
1792.18 -2250.48 401.653,14 16 17 239,stand,,,
|
||||
1893.63 -2364.15 412.768,15 17 239 241,stand,,,
|
||||
1722.01 -2291.46 405.016,16 18 15,stand,,,
|
||||
1528.92 -2324.7 409.42,17 14 19 238 243 244,stand,,,
|
||||
1460.86 -2596.52 449.894,18 20 70 243 244,stand,,,
|
||||
1475 -2876.22 504.066,19 21 70,stand,,,
|
||||
1447.68 -3048.23 540.125,20 22 208,stand,,,
|
||||
1586.13 -3059.95 593.637,21 23,stand,,,
|
||||
1802.67 -3062.4 600.125,22 24 45 198 209 327,stand,,,
|
||||
1909.35 -2787.81 600.125,23 25 198 225 347,stand,,,
|
||||
2175.99 -2648.5 600.125,24 26 38 197,stand,,,
|
||||
2194.18 -2339.43 600.125,25 10 27,stand,,,
|
||||
2285.01 -2235.21 600.125,10 28 26,stand,,,
|
||||
2465.16 -2275.24 600.125,27 29 223 324,stand,,,
|
||||
2497.88 -2322.26 600.125,28 30 36 223,stand,,,
|
||||
2636.16 -2311.91 706.546,29 31,stand,,,
|
||||
2720.23 -2308.6 748.125,30 32 326,stand,,,
|
||||
2726.8 -2465.26 748.125,31 33,stand,,,
|
||||
2535.5 -2452.59 748.125,32 34 35 224,stand,,,
|
||||
2429.53 -2280.4 748.125,33 35 325,stand,,,
|
||||
2436.15 -2464.55 748.125,34 33,stand,,,
|
||||
2493.96 -2526.74 600.125,29 37 221 220 222 223 323,stand,,,
|
||||
2548.33 -2774.32 600.125,36 38 39,stand,,,
|
||||
2275.58 -2798.27 600.125,37 25 197 199,stand,,,
|
||||
2719.81 -2920.12 600.125,37 40 219 49,stand,,,
|
||||
2837.51 -3172.06 600.125,39 41,stand,,,
|
||||
2801.22 -3443.91 600.125,40 42 215 218,stand,,,
|
||||
2544.44 -3547.83 600.125,41 43 47 48 216,stand,,,
|
||||
2312.97 -3389.07 600.125,42 44,stand,,,
|
||||
2066 -3378.02 600.125,43 45 51 46,stand,,,
|
||||
1916.15 -3394.39 600.125,44 23 46 209 217,stand,,,
|
||||
2114.5 -3596.52 600.125,45 47 44 52,stand,,,
|
||||
2352.02 -3660.61 600.125,46 42 52 216,stand,,,
|
||||
2598.35 -3349.75 604.125,42 49 215,stand,,,
|
||||
2453.8 -3221.72 548.125,48 200 50 39,stand,,,
|
||||
2203.7 -3159.93 568.424,51 200 49 210,stand,,,
|
||||
2117.31 -3304.88 596.125,50 44 210 209,stand,,,
|
||||
2286.83 -3787.3 600.125,47 53 54 46,stand,,,
|
||||
2281.1 -3954.56 600.125,52 54 56 247 322,stand,,,
|
||||
2329.82 -3859.72 600.125,52 55 53,stand,,,
|
||||
2492.48 -3841.63 600.125,54 216 320 321,stand,,,
|
||||
1936.64 -3945.23 600.125,53 57 248,stand,,,
|
||||
1631.97 -3969.31 600.125,56 58 245,stand,,,
|
||||
1526.97 -4128.75 600.125,57 59 246,stand,,,
|
||||
1328.49 -4123.41 600.125,58 60 61 206 315,stand,,,
|
||||
1388.05 -3962.99 600.125,59 61 316,stand,,,
|
||||
1241.31 -3970.32 600.125,59 60 317,stand,,,
|
||||
1050.06 -4134.55 600.125,206 63,stand,,,
|
||||
834.337 -4174.04 600.125,64 179 201 62,stand,,,
|
||||
824.181 -3891.12 600.125,63 65 203 204,stand,,,
|
||||
785.631 -3547.3 600.125,64 66 318 319,stand,,,
|
||||
767.999 -3294.3 600.125,65 67 71,stand,,,
|
||||
1015.71 -3303.99 600.125,66 68,stand,,,
|
||||
1040.69 -3128.87 567.859,67 69 74 207 208,stand,,,
|
||||
1068.89 -2921.59 546.127,68 70 74 208 292 291,stand,,,
|
||||
1290.84 -2787.75 498.778,69 19 20 291,stand,,,
|
||||
720.422 -3221.71 600.125,66 72,stand,,,
|
||||
710.04 -3156.37 580.125,71 73 207 293,stand,,,
|
||||
675.698 -3007.73 583.104,72 74 75,stand,,,
|
||||
935.503 -2949.8 549.837,73 69 68 207 290,stand,,,
|
||||
476.598 -2995.75 630.295,73 76 293 289,stand,,,
|
||||
169.707 -2956.9 648.125,77 80 181 75 288 289,stand,,,
|
||||
5.1708 -3226.48 648.125,76 78 80 92 160 181,stand,,,
|
||||
-323.782 -3287.32 648.125,77 79 160 161 185 186,stand,,,
|
||||
-704.224 -3274.19 656.125,78 150 151 159 185,stand,,,
|
||||
-41.4132 -2876.71 648.125,76 77 81 92 357,stand,,,
|
||||
-24.4557 -2722.14 656.125,80 82 90 288 356,stand,,,
|
||||
68.3282 -2497.87 672.125,81 83 285,stand,,,
|
||||
337.694 -2477.78 672.125,82 84 187 286 285,stand,,,
|
||||
319.321 -2243.43 672.125,83 85 280,stand,,,
|
||||
85.0285 -2260.66 672.125,84 213 278 280,stand,,,
|
||||
-3.43617 -1995.5 672.125,87 98 213,stand,,,
|
||||
3.26474 -1898.58 672.125,86 88 276 277 342,stand,,,
|
||||
-211.198 -1892.97 672.125,87 89 93 97 274 275,stand,,,
|
||||
-200.259 -2140.11 672.125,88 90,stand,,,
|
||||
-152.539 -2471.41 672.125,89 81 91,stand,,,
|
||||
-193.415 -2669.73 672.125,90 92 299,stand,,,
|
||||
-124.906 -2919.59 648.125,91 77 80 160 299,stand,,,
|
||||
-390.097 -1810.32 672.125,88 94,stand,,,
|
||||
-602.653 -1811.79 672.125,93 95 110,stand,,,
|
||||
-625.616 -1519.54 672.125,94 96 109,stand,,,
|
||||
-296.927 -1527.86 672.125,95 97 272 273,stand,,,
|
||||
-235.92 -1677.26 672.125,96 88,stand,,,
|
||||
103.314 -1968.27 730.125,86 99,stand,,,
|
||||
201.671 -1973.39 820.125,100 98,stand,,,
|
||||
258.23 -2085.12 820.125,99 107 195 339,stand,,,
|
||||
160.659 -2370.72 820.125,102 108 194 195 282,stand,,,
|
||||
59.0798 -2445.12 816.125,101 103 282,stand,,,
|
||||
-115.146 -2413.86 816.125,102 104 359,stand,,,
|
||||
-121.042 -2049.55 816.125,103 105,stand,,,
|
||||
-101.743 -1871.23 816.125,104 106 281,stand,,,
|
||||
6.95732 -1877.13 820.125,105 107,stand,,,
|
||||
29.008 -2132.14 820.125,106 100 108 195,stand,,,
|
||||
105.468 -2254.81 820.125,107 101 195 341,stand,,,
|
||||
-875.845 -1531.56 672.125,95 110 112,stand,,,
|
||||
-899.503 -1816 672.125,109 94 111,stand,,,
|
||||
-1190.95 -1827.48 674.125,110 119 118,stand,,,
|
||||
-1104.1 -1510.17 672.125,109 113,stand,,,
|
||||
-1413.97 -1516.42 672.125,112 114,stand,,,
|
||||
-1547.65 -1503.46 672.125,113 115,stand,,,
|
||||
-1544.31 -1657.09 672.125,114 116 266,stand,,,
|
||||
-1803.83 -1712.77 672.125,115 117 265 120,stand,,,
|
||||
-1691.69 -1911.63 672.125,116 118 120 127 300 303,stand,,,
|
||||
-1443.04 -1823.96 674.125,117 119 111 266 267 303,stand,,,
|
||||
-1244.09 -1775.11 674.125,118 111 267 266,stand,,,
|
||||
-1912.31 -2014.05 672.125,117 121 127 116,stand,,,
|
||||
-2063.24 -2154.15 680.125,120 122 129,stand,,,
|
||||
-2292.55 -2253.82 672.125,121 123 125 124 129 263,stand,,,
|
||||
-2531.05 -2333.99 672.125,122 124 212 262,stand,,,
|
||||
-2429.74 -2538.04 680.125,123 125 125 122 262,stand,,,
|
||||
-2159.86 -2530.59 680.125,124 122 124 126 129,stand,,,
|
||||
-1920.15 -2529.05 672.125,125 127 129 130,stand,,,
|
||||
-1744.97 -2311.61 672.125,126 128 120 129 156 117 300 301,stand,,,
|
||||
-1419.98 -2318.55 672.125,127 155 269 301 156,stand,,,
|
||||
-1997.38 -2375.07 672.125,125 122 127 126 121,stand,,,
|
||||
-1790.54 -2762.41 672.125,126 131 153 154 271,stand,,,
|
||||
-1848.82 -3019.3 672.125,130 132 135 257 304,stand,,,
|
||||
-1628.23 -3124.85 672.125,131 133 256 135,stand,,,
|
||||
-1492.61 -3255.53 672.125,132 134 259 135,stand,,,
|
||||
-1597.34 -3382.79 672.125,133 135 258,stand,,,
|
||||
-1663.96 -3225.36 672.125,134 131 136 257 132 133,stand,,,
|
||||
-1700.49 -3290.27 672.125,135 137,stand,,,
|
||||
-1700.59 -3575.91 768.125,136 138,stand,,,
|
||||
-1434.05 -3564.78 848.125,137 139 145 305,stand,,,
|
||||
-1427.55 -3245.58 848.125,138 140 143,stand,,,
|
||||
-1453.61 -3084.21 848.125,139 141 143 253,stand,,,
|
||||
-1663.24 -3015.14 848.125,140 142 144,stand,,,
|
||||
-1799.45 -3127.89 848.125,141 143 144 254 255,stand,,,
|
||||
-1523.33 -3145.58 848.125,139 142 144 140,stand,,,
|
||||
-1607.63 -3075.42 848.125,142 143 141,stand,,,
|
||||
-1210.42 -3567.31 848.125,138 146,stand,,,
|
||||
-949.185 -3554.69 848.125,147 145 306,stand,,,
|
||||
-913.717 -3913.75 848.125,146 148 250 251 252 307,stand,,,
|
||||
-744.895 -3909.98 848.125,147 149 167 163,stand,,,
|
||||
-744.161 -3686.61 848.125,148 150 163,stand,,,
|
||||
-751.357 -3454.98 717.165,149 79,stand,,,
|
||||
-837.164 -3065.87 648.125,79 152 162,stand,,,
|
||||
-1046.48 -2929.86 672.125,151 153,stand,,,
|
||||
-1379.22 -2851.52 672.125,152 130 154 157 271 270,stand,,,
|
||||
-1483.01 -2724.07 672.125,153 130 155 270,stand,,,
|
||||
-1412.29 -2575.7 672.125,154 128 156,stand,,,
|
||||
-1526.61 -2434.08 672.125,155 127 128 301,stand,,,
|
||||
-1228.41 -2971.67 672.125,153 158 270,stand,,,
|
||||
-1190.28 -3284.47 672.125,159 157,stand,,,
|
||||
-952.456 -3279.8 654.361,158 79,stand,,,
|
||||
-129.279 -3164.67 648.125,92 77 78,stand,,,
|
||||
-481.559 -3113.7 648.125,78 162 297,stand,,,
|
||||
-657.836 -2991 648.125,161 151 297 349,stand,,,
|
||||
-656.99 -3787.21 848.125,149 164 148,stand,,,
|
||||
-305.117 -3803.53 848.125,163 165 172 308,stand,,,
|
||||
-208.183 -3867.16 848.125,164 166 172,stand,,,
|
||||
-257.514 -3964.4 848.125,165 167 168,stand,,,
|
||||
-516.407 -3992.94 848.125,166 148,stand,,,
|
||||
44.5606 -3993.61 848.125,166 169,stand,,,
|
||||
304.455 -3953.61 848.125,170 168 309,stand,,,
|
||||
319.984 -3776.98 848.125,169 171 173 310,stand,,,
|
||||
125.963 -3741.79 848.125,170 172,stand,,,
|
||||
-97.8248 -3777.36 848.125,171 165 164 350 351,stand,,,
|
||||
462.23 -3768.59 848.125,170 174 176 177,stand,,,
|
||||
528.628 -3632.39 848.125,173 175 176 249 312,stand,,,
|
||||
542.455 -3498.99 848.125,174 249,stand,,,
|
||||
600.797 -3771.72 848.125,173 174,stand,,,
|
||||
478.982 -3951.81 848.125,173 178 311,stand,,,
|
||||
485.575 -4193.42 744.125,177 179 313,stand,,,
|
||||
677.884 -4174.61 654.125,178 63,stand,,,
|
||||
189.057 -3522.71 656.125,181 182,stand,,,
|
||||
193.138 -3255.16 656.125,180 76 77,stand,,,
|
||||
15.6129 -3619.41 656.125,180 183 186,stand,,,
|
||||
-257.297 -3630.86 656.125,182 184 186,stand,,,
|
||||
-537.797 -3612.75 656.125,183 185,stand,,,
|
||||
-535.844 -3391.38 648.125,184 79 78,stand,,,
|
||||
-212.468 -3465.4 648.125,78 183 182,stand,,,
|
||||
549.783 -2487.36 672.125,83 188 284 286,stand,,,
|
||||
793.299 -2314.31 672.125,187 189 196 287 345,stand,,,
|
||||
858.418 -2131.92 672.125,188 6 190 196,stand,,,
|
||||
778.241 -2078.06 672.125,189 191,stand,,,
|
||||
587.201 -2081.97 760.125,190 192,stand,,,
|
||||
449.818 -2081.57 760.125,191 193 337,stand,,,
|
||||
468.815 -2299.7 820.125,192 194 338,stand,,,
|
||||
258.406 -2294.15 820.125,193 195 101,stand,,,
|
||||
198.297 -2251.03 820.125,194 101 100 108 107,stand,,,
|
||||
1028.97 -2308.28 672.125,189 6 188 211,stand,,,
|
||||
2065.38 -2779.47 600.125,25 198 38 225,stand,,,
|
||||
1941.09 -2863.57 600.125,197 23 24 353,stand,,,
|
||||
2352.8 -2920.26 606.125,38 200,stand,,,
|
||||
2367.39 -3033.6 553.158,199 49 50 295 296,stand,,,
|
||||
755.267 -4085.82 600.125,63 202,stand,,,
|
||||
625.639 -4071.79 600.125,201 203,stand,,,
|
||||
635.355 -3914.63 600.125,202 64 314,stand,,,
|
||||
1019.97 -3940.4 600.125,64 205,stand,,,
|
||||
1153.11 -3954.57 600.125,204 206,stand,,,
|
||||
1143.23 -4121.9 600.125,62 205 59,stand,,,
|
||||
830.964 -3102.24 571.231,72 74 68,stand,,,
|
||||
1225.22 -3058.65 542.435,21 69 68,stand,,,
|
||||
1924.07 -3153.5 600.125,45 23 210 294 51 354,stand,,,
|
||||
2131.32 -3171.11 568.355,209 50 51,stand,,,
|
||||
1150.98 -2416.18 672.125,6 196 283,stand,,,
|
||||
-2816.51 -2339.18 672.125,123 262 264,stand,,,
|
||||
26.8604 -2091.36 672.125,86 85 214,stand,,,
|
||||
303.446 -2094.74 672.125,213 279,stand,,,
|
||||
2679.15 -3355.58 572.125,48 41,crouch,4.83398 142.877 0,,
|
||||
2480.36 -3636.37 600.125,55 42 47,stand,19.1656 -92.4664 0,,
|
||||
1853.23 -3595.88 600.125,45,crouch,5.35034 42.561 0,,
|
||||
2813.87 -3587.43 600.125,41,crouch,6.04248 144.086 0,,
|
||||
2857 -2762.13 600.125,39,crouch,2.58728 -136.313 0,,
|
||||
2687.09 -2402.1 600.125,36,crouch,8.80554 -148.409 0,,
|
||||
2703.39 -2577.48 600.125,36,crouch,5.18005 149.777 0,,
|
||||
2383.13 -2589.74 600.125,36,crouch,9.66797 27.1857 0,,
|
||||
2378.89 -2374.18 600.125,28 36 29,stand,15.3699 89.5166 0,,
|
||||
2359.49 -2554.8 748.125,33,crouch,4.83398 16.6553 0,,
|
||||
1937.07 -2545.58 600.125,24 197,stand,20.5444 93.3289 0,,
|
||||
1776.18 -1912.3 558.125,228 329,stand,23.3075 -179.467 0,,
|
||||
1381.15 -1921.35 558.125,228 333,stand,34.0137 105.941 0,,
|
||||
1600.92 -1927.18 558.125,226 227 331,stand,27.1088 -8.53638 0,,
|
||||
1740.95 -2112.2 592.125,8 9 330,stand,24.3457 21.8408 0,,
|
||||
1534.04 -1289.38 384.125,1,prone,0.516357 -87.9675 0,,
|
||||
1883.72 -1379.21 396.125,0,crouch,2.93335 -143.383 0,,
|
||||
1562.19 -1745.93 384.125,235 233 1 0,stand,22.099 -87.9565 0,,
|
||||
1684.76 -1820.55 384.125,234 232 0 335,stand,29.5258 -125.596 0,,
|
||||
1566.24 -1923.69 389.625,233 235 14,stand,27.2791 -179.127 0,,
|
||||
1454.55 -1804.32 384.125,236 234 232 336,stand,16.4026 136.154 0,,
|
||||
1292.55 -1956.87 396.125,237 235,crouch,1.72485 23.7579 0,,
|
||||
1268.5 -1547.18 396.125,236,crouch,3.97156 -42.8906 0,,
|
||||
1379.13 -2191.64 399.104,18 14 244,crouch,-2.41699 -56.1786 0,,
|
||||
1929.86 -2202.42 412.125,15 16,prone,2.2467 -146.31 0,,
|
||||
2024.87 -2445.74 420.698,241,crouch,3.27942 170.53 0,,
|
||||
1912.83 -2420.03 424.044,16 240 242,stand,12.2607 152.919 0,,
|
||||
1629.49 -2427.14 428.822,241 243,stand,13.4692 -2.64771 0,,
|
||||
1550.18 -2431.77 417.511,19 242 18 244,stand,17.9572 -3.51013 0,,
|
||||
1418.28 -2387.69 419.699,19 238 18 243,stand,10.3601 -91.0492 0,,
|
||||
1479.13 -3922.13 600.125,57,crouch,1.37878 -40.8032 0,,
|
||||
1640.88 -4177.38 606.125,58,crouch,3.4552 144.283 0,,
|
||||
2183.13 -3814.13 600.125,53,crouch,0.692139 -41.8469 0,,
|
||||
1867.13 -4052.88 600.125,56,crouch,3.79578 33.0963 0,,
|
||||
424.664 -3566.85 848.125,175 174 352,stand,8.63525 177.61 0,,
|
||||
-984.875 -4032.88 848.125,147,crouch,4.6637 55.1733 0,,
|
||||
-839.125 -4032.88 848.125,147,crouch,3.27942 118.021 0,,
|
||||
-839.125 -3671.13 848.125,147,crouch,3.10913 -115.593 0,,
|
||||
-1415.34 -3000.94 848.125,140,crouch,5.35034 -121.47 0,,
|
||||
-1828.3 -3256.88 848.125,142,crouch,4.14185 35.6506 0,,
|
||||
-1843.21 -3004.69 864.597,142,crouch,7.08069 -32.558 0,,
|
||||
-1559.63 -2961.28 672.125,132,crouch,4.14185 -104.381 0,,
|
||||
-1942.87 -3252.83 698.125,131 135,crouch,6.04248 51.3501 0,,
|
||||
-1577.19 -3466.37 672.125,134,prone,3.27942 89.5056 0,,
|
||||
-1455.13 -3388.88 672.125,133,crouch,2.07092 131.633 0,,
|
||||
-2864.87 -2662.25 680.125,262,crouch,6.90491 41.8414 0,,
|
||||
-2864.88 -2095.13 680.125,264,crouch,3.27942 -37.2382 0,,
|
||||
-2682.42 -2520 672.125,124 260 123 212,stand,14.6777 -28.2623 0,,
|
||||
-2485.23 -2190.6 680.125,264 122,stand,12.2607 179.116 0,,
|
||||
-2783.71 -2190.78 680.125,261 263 212,stand,13.6395 178.77 0,,
|
||||
-2084.6 -1641.93 680.125,116,crouch,2.41699 -39.9957 0,,
|
||||
-1454.56 -1661.94 674.125,115 118 267 119,stand,26.4166 172.557 0,,
|
||||
-1228.61 -1702.28 674.125,119 266 118,stand,23.3075 1.61499 0,,
|
||||
-1136.03 -1936.99 672.125,269 302,crouch,1.37878 -140.312 0,,
|
||||
-1132.61 -2338.15 672.125,270 128 268,stand,10.8765 -90.0659 0,,
|
||||
-1142.37 -2749.74 672.125,157 269 153 154,stand,9.84375 -98.5254 0,,
|
||||
-1697.25 -2897.05 680.125,130 153,stand,10.014 175.325 0,,
|
||||
-191.125 -1473.96 672.125,96,crouch,2.93335 -133.742 0,,
|
||||
-367.875 -1665.88 672.125,96,crouch,4.6637 48.2465 0,,
|
||||
-79.1251 -1773.08 672.125,88,crouch,6.04248 -134.951 0,,
|
||||
-400.875 -1964.88 672.125,88,crouch,1.2085 42.0282 0,,
|
||||
115.619 -1871.91 672.125,87,crouch,0 -173.974 0,,
|
||||
-40.8749 -1837.13 672.125,87,crouch,1.55457 -43.786 0,,
|
||||
-40.875 -2322.88 672.125,85,crouch,0.862427 55.8435 0,,
|
||||
353.967 -2092.08 672.125,214,prone,-1.03821 179.467 0,,
|
||||
245.247 -2331.41 672.125,85 84 343,stand,3.27942 148.909 0,,
|
||||
-104.028 -1777.38 816.125,105,prone,-4.48792 -92.8235 0,,
|
||||
230.416 -2421.33 816.125,102 101 340 358,stand,15.1941 -39.4684 0,,
|
||||
1049.81 -2554.88 672.125,211,crouch,1.2085 65.8521 0,,
|
||||
740.264 -2544.88 672.125,187,crouch,5.18005 128.353 0,,
|
||||
217.823 -2586.62 672.125,286 82 83 344,stand,19.682 16.1279 0,,
|
||||
443.676 -2567.43 672.125,187 83 285 346,stand,17.9572 0.76355 0,,
|
||||
647.749 -2163.02 672.125,188,crouch,0 -40.1605 0,,
|
||||
223.287 -2715.27 666.186,81 76 289,stand,15.0238 179.486 0,,
|
||||
443.502 -2751.67 647.065,290 288 76 75,stand,16.4026 -0.777832 0,,
|
||||
754.842 -2779.62 579.49,74 292 289,stand,18.4735 -18.3889 0,,
|
||||
938.193 -2677.33 535.813,292 70 69,stand,5.00977 -119.392 0,,
|
||||
926.982 -2829.88 539.256,290 291 69 348,stand,5.52612 -167.913 0,,
|
||||
324.455 -3165.51 648.125,75 72,crouch,2.93335 21.8485 0,,
|
||||
2105.04 -3054.86 568.199,295 209,stand,22.6208 36.1802 0,,
|
||||
2227.19 -3034.16 568.234,200 294,stand,21.4124 4.578 0,,
|
||||
2572.29 -3013.9 548.125,200,prone,1.72485 -160.486 0,,
|
||||
-396.123 -2925.3 656.125,298 161 162,stand,22.099 63.6126 0,,
|
||||
-345.52 -2796.16 652.125,299 297,stand,21.0663 39.2614 0,,
|
||||
-211.352 -2775.51 650.031,92 91 298,stand,13.4692 -41.5431 0,,
|
||||
-1613.33 -2085.3 672.125,303 117 301 127,stand,18.6975 17.6897 0,,
|
||||
-1459.15 -2151.17 672.125,300 302 128 127 156,stand,23.1854 41.173 0,,
|
||||
-1371.53 -2043.92 672.125,301 303 268,stand,28.5413 133.892 0,,
|
||||
-1497.31 -1957.65 672.125,300 302 118 117,stand,24.3939 -179.658 0,,
|
||||
-1803.95 -2986.69 672.125,131,claymore,22.099 120.52 0,,
|
||||
-1448.15 -3588.47 848.125,138,claymore,28.3173 166.448 0,,
|
||||
-950.474 -3651.95 848.125,146,claymore,19.1656 90.6427 0,,
|
||||
-870.737 -3869.23 848.125,147,claymore,16.9189 -41.4459 0,,
|
||||
-261.338 -3778.2 848.125,164,grenade,-10.5304 39.0179 0,,
|
||||
314.157 -3877.86 848.125,169,claymore,18.6493 -121.564 0,,
|
||||
318.804 -3811.89 848.125,170,claymore,24.516 134.149 0,,
|
||||
467.401 -3890.07 848.125,177,claymore,17.9572 124.821 0,,
|
||||
478.728 -3593.88 848.125,174,claymore,34.1895 -30.3937 0,,
|
||||
455.128 -4204.88 744.125,178,crouch,10.1898 34.8761 0,,
|
||||
582.625 -3879.13 600.125,203,crouch,1.38428 -48.5266 0,,
|
||||
1400.06 -4066.87 600.125,59,claymore,16.2323 -36.4362 0,,
|
||||
1406.95 -3920.63 600.125,60,crouch,2.07092 -126.392 0,,
|
||||
1229.29 -4045.03 600.125,61,claymore,21.2366 -131.743 0,,
|
||||
830.068 -3479.55 600.125,65,claymore,8.98132 120.168 0,,
|
||||
733.177 -3466.95 600.125,65,claymore,17.0947 56.283 0,,
|
||||
2572.88 -3936.88 600.125,55,crouch,7.77283 137.263 0,,
|
||||
2456.63 -3811.42 600.125,55,claymore,15.7104 67.6813 0,,
|
||||
2122.4 -3954.76 600.125,53,claymore,15.3699 13.6395 0,,
|
||||
2556.26 -2552.51 600.125,36,claymore,12.085 -127.425 0,,
|
||||
2370.36 -2282.51 600.125,28,claymore,11.7444 141.405 0,,
|
||||
2343.81 -2249.07 748.125,34,crouch,11.3983 -170.936 0,,
|
||||
2703.26 -2306.82 748.125,31,claymore,50.592 -179.39 0,,
|
||||
1782.24 -3021.84 600.125,23,claymore,31.2506 -145.723 0,,
|
||||
2163.13 -2005.48 592.125,11,claymore,25.2081 154.363 0,,
|
||||
1782.04 -2008.88 558.125,330 226,climb,-63.3691 -90.4724 0,,
|
||||
1774.69 -2041.55 624.125,229 329,stand,65.094 179.696 0,,
|
||||
1575.73 -2008.87 558.125,228 332,climb,-56.8048 -87.409 0,,
|
||||
1575.1 -2040.41 624.125,331 8,stand,78.9093 -90.8643 0,,
|
||||
1340.5 -2008.87 558.125,227,crouch,12.9529 109.081 0,,
|
||||
1111.13 -1427.13 480.125,3,crouch,4.31763 -54.6881 0,,
|
||||
1627.83 -1840.6 384.125,233,claymore,36.4789 -135.839 0,,
|
||||
1488.41 -1832.93 384.125,235,claymore,22.8394 -53.4796 0,,
|
||||
457.275 -2156.53 760.125,192,claymore,39.7638 84.2944 0,,
|
||||
361.244 -2302.59 820.125,193,claymore,17.489 3.14394 0,,
|
||||
242.187 -2025.81 820.125,100,claymore,23.0151 139.891 0,,
|
||||
266.872 -2446.88 816.125,282,crouch,10.0622 -29.1394 0,,
|
||||
-3.09958 -2329.41 848.125,108,crouch,10.9247 44.068 0,,
|
||||
-7.90782 -1953.02 672.125,87,claymore,20.2521 132.645 0,,
|
||||
289.486 -2322.04 672.125,280,claymore,32.337 -52.4414 0,,
|
||||
155.739 -2558.25 672.125,285,grenade,-18.7714 18.1787 0,,
|
||||
859.587 -2372.4 672.125,188,grenade,-75.6781 -61.4227 0,,
|
||||
505.568 -2566.64 672.125,286,grenade,-28.0194 -23.0914 0,,
|
||||
1822.91 -2836.56 600.125,24,grenade,-33.0292 -178.817 0,,
|
||||
1005.25 -2795.44 531.932,292,grenade,-50.8106 60.6573 0,,
|
||||
-535.306 -2997.34 648.125,162,grenade,-42.3511 -3.74449 0,,
|
||||
-248.313 -3717.13 848.125,172,javelin,14.245 47.3859 0,494.214 -2900.08 627.509,
|
||||
-62.5663 -3723.5 848.125,172,javelin,13.7262 143.516 0,-965.852 -3067.52 650.067,
|
||||
415.125 -3579.4 848.125,249,javelin,6.84326 155.53 0,-1223.15 -2825.1 672.125,
|
||||
2068.79 -2959.75 640.125,198,javelin,2.59705 -179.339 0,495.591 -2977.9 622.552,
|
||||
1995.15 -3079.91 606.125,209,javelin,1.13586 175.816 0,501.112 -2969.6 621.56,
|
||||
2081.19 -2196.84 600.125,10,javelin,3.28369 -145.935 0,786.306 -3074.93 571.769,
|
||||
14.4638 -2669.36 672.125,81,javelin,4.70642 -14.2859 0,1599.87 -3075.52 593.331,
|
||||
50.9409 -2882.73 648.125,80,javelin,7.50244 -1.4868 0,1439.6 -2933.93 527.677,
|
||||
244.42 -2402.71 816.125,282,javelin,7.74963 -22.4432 0,2279.7 -3247.52 580.716,
|
||||
-129.664 -2306.66 816.125,103,javelin,7.18933 -167.084 0,-1482.59 -2579.37 697.963,
|
||||
|
@@ -0,0 +1,317 @@
|
||||
316
|
||||
1269.17 -1859.71 64.125,7 258 259 261,stand,,,
|
||||
1648.3 -1859.81 66.125,2 9 261,stand,,,
|
||||
1655.13 -1963.63 66.125,1 3,stand,,,
|
||||
1411.54 -1971.4 202.125,2 4,stand,,,
|
||||
1378.44 -1853.15 202.125,3 5,stand,,,
|
||||
1669.74 -1850.18 202.125,4 6 262,stand,,,
|
||||
1673.59 -1760.62 226.125,5 263,stand,,,
|
||||
1255.1 -1438.8 64.125,0 8 12 14 20 21,stand,,,
|
||||
1606.34 -1438.86 66.125,7 9 12 11 13 10,stand,,,
|
||||
1662.54 -1784.07 66.125,1 8 11,stand,,,
|
||||
1420.55 -1644.77 66.125,8 12 11,stand,,,
|
||||
1559.25 -1691.01 66.125,9 12 8 10,stand,,,
|
||||
1452.21 -1516.07 66.125,11 7 8 10,stand,,,
|
||||
1634.86 -1279.73 65.125,8 16 271,stand,,,
|
||||
1288.79 -1277.2 64.125,7 15 17,stand,,,
|
||||
1373.36 -1119.85 64.436,14 16 17 153 155,stand,,,
|
||||
1543.16 -1160.77 65.125,15 13 271,stand,,,
|
||||
1181.75 -1172.1 65.6526,15 20 154 14,stand,,,
|
||||
540.444 -1363.65 63.9518,22 23 253 308,stand,,,
|
||||
-104.886 -1250.27 68.1691,28 34 37 305,stand,,,
|
||||
1051.97 -1304.49 64.9747,17 7 22 154 153 252,stand,,,
|
||||
959.24 -1520.63 68.125,7 22 23,stand,,,
|
||||
779.906 -1427.67 64.0908,20 18 21 23,stand,,,
|
||||
712.319 -1518.52 63.2002,24 21 22 18 30 33,stand,,,
|
||||
636.248 -1988.98 129.238,25 23 30 250,stand,,,
|
||||
281.723 -2019.87 134.354,26 24 30 31,stand,,,
|
||||
-206.792 -2002.53 198.361,27 25 249,stand,,,
|
||||
-220.432 -1625.56 59.7447,29 26 32 34 28,stand,,,
|
||||
-248.895 -1158.01 76.9509,19 29 34 35 37 27,stand,,,
|
||||
-394.43 -1304.65 73.9691,28 27,stand,,,
|
||||
444.003 -1698.49 109.5,25 24 23 31 33,stand,,,
|
||||
129.48 -1732.01 81.2481,25 30 33 32 34 307 306,stand,,,
|
||||
-11.9653 -1515.75 64.125,31 27 34 306,stand,,,
|
||||
354.51 -1521.49 62.0141,23 30 31 307,stand,,,
|
||||
-129.882 -1457.54 61.6682,19 28 27 32 31,stand,,,
|
||||
-400.852 -864.493 107.936,28 36,stand,,,
|
||||
-387.691 -531.457 110.403,35 37 40,stand,,,
|
||||
-167.792 -876.602 103.097,36 19 28 38 247,stand,,,
|
||||
-157.064 -595.032 104.458,37 39,stand,,,
|
||||
-127.937 -256.815 116.351,38 40 99,stand,,,
|
||||
-323.522 -311.698 109.637,36 39 41,stand,,,
|
||||
-343.44 -48.6591 124.933,40 42 196,stand,,,
|
||||
-300.241 249.021 175.455,41 43,stand,,,
|
||||
-328.529 429.286 223.514,42 44 45 244,stand,,,
|
||||
-679.63 440.314 234.878,43 45 245,stand,,,
|
||||
-416.293 572.198 230.338,43 46 47 44,stand,,,
|
||||
-482.08 812.354 240.006,45 48 242,stand,,,
|
||||
-339.133 1037.19 239.331,45 48 49 77 76 78 243,stand,,,
|
||||
-495.721 1210 249.104,46 47 49 52 53,stand,,,
|
||||
-255.836 1184.36 232.249,47 48 50 77,stand,,,
|
||||
-326.09 1413.8 235.843,49 241 313,stand,,,
|
||||
-308.927 1769.98 231.84,54 55 314 315 312,stand,,,
|
||||
-528.565 1450 275.966,48 53 77 241 312,stand,,,
|
||||
-641.758 1359.36 249.506,52 48 209 304,stand,,,
|
||||
-497.817 1711.83 251.891,55 51 240 241 312,stand,,,
|
||||
-481.032 2025.47 250.494,56 54 51 67,stand,,,
|
||||
-492.859 2154.51 245.155,57 55 67 216,stand,,,
|
||||
-640.763 2123.21 254.125,58 56 220 221,stand,,,
|
||||
-753.163 1933.79 254.125,57 192 220,stand,,,
|
||||
-933.963 1948.61 254.125,60 192,stand,,,
|
||||
-924.721 2191.67 390.125,61 59,stand,,,
|
||||
-812.852 2167.88 390.125,62 60 223,stand,,,
|
||||
-672.524 2131.63 390.125,61 187 227 226 233 234,stand,,,
|
||||
-702.602 1517.53 413.753,64 187 210,stand,,,
|
||||
-594.071 1558.09 412.879,63 186 235,stand,,,
|
||||
-58.372 1923.6 224.125,67 71 72 197 315,stand,,,
|
||||
-180.041 1465.6 228.595,77 314,stand,,,
|
||||
-138.642 2109.3 228.973,65 56 55 69 68 217 216,stand,,,
|
||||
3.52358 2177.32 236.125,67 70 218 69,stand,,,
|
||||
126.449 2039.6 236.125,67 70 71 68,stand,,,
|
||||
165.553 2255.77 236.125,68 69 218 219,stand,,,
|
||||
108.382 1908.19 224.125,69 65 197,stand,,,
|
||||
124.01 1820.76 224.125,65 73 197,stand,,,
|
||||
364.581 1815.79 127.098,72 198 301 302,stand,,,
|
||||
331.592 1379.54 137.125,81 198,stand,,,
|
||||
203.977 1502.88 125.218,76 198 299,stand,,,
|
||||
150.192 1141.64 146.368,75 77 47 78 88 79,stand,,,
|
||||
-150.865 1173.99 214.041,49 76 66 47 78 52,stand,,,
|
||||
161.456 974.936 147.964,76 47 79 88 77,stand,,,
|
||||
317.938 796.451 128.964,78 80 88 94 100 76,stand,,,
|
||||
199.353 769.616 130.514,79 95 203,stand,,,
|
||||
365.102 1295.22 137.125,74 82 86 290,stand,,,
|
||||
633.478 1322.08 137.125,81 83 107 291 292,stand,,,
|
||||
547.651 1421.19 151.004,82 84,stand,,,
|
||||
336.604 1411.11 273.125,83 85,stand,,,
|
||||
334.937 1153.36 273.125,84 208 294 297,stand,,,
|
||||
444.03 1173.31 137.125,81 87 290,stand,,,
|
||||
541.305 1158.48 137.125,86 88 202,stand,,,
|
||||
528.738 983.917 155.942,87 79 78 76 89 90,stand,,,
|
||||
719.541 1048.64 140.504,88 90,stand,,,
|
||||
641.191 925.027 163.507,89 88 91,stand,,,
|
||||
717.56 717.327 143.935,90 92 93 105,stand,,,
|
||||
610.755 492.106 139.235,91 93 102 101 287 289,stand,,,
|
||||
595.299 655.106 143.906,91 94 92,stand,,,
|
||||
397.733 660.7 138.582,93 79 95,stand,,,
|
||||
133.777 589.401 136.125,94 80 96,stand,,,
|
||||
63.791 350.448 136.125,95 97 101,stand,,,
|
||||
-3.37649 85.6927 136.125,96 98,stand,,,
|
||||
-72.189 -60.8907 134.008,97 99 127 122 195,stand,,,
|
||||
-143.115 -137.174 136.125,98 39 184 195,stand,,,
|
||||
263.732 464.993 139.806,101 79,stand,,,
|
||||
290.567 229.111 136.116,100 96 102 123 122 92 184,stand,,,
|
||||
617.72 335.107 143.347,101 92 103 117 118 123 116,stand,,,
|
||||
971.549 448.641 134.836,102 104 114 116,stand,,,
|
||||
1330.64 661.889 132.402,103 105 112 114 183 115 191,stand,,,
|
||||
958.475 806.097 138.993,104 91 106 112 114,stand,,,
|
||||
930.602 1114.4 131.949,105 107 113 311,stand,,,
|
||||
896.576 1307.13 128.818,106 82 108 113 199,stand,,,
|
||||
1145.15 1375.29 133.201,107 109,stand,,,
|
||||
1410.75 1348.64 136.125,108 110 113,stand,,,
|
||||
1538.15 1127.1 136.125,109 111,stand,,,
|
||||
1490.92 954.805 136.125,110 112 200,stand,,,
|
||||
1315.35 855.416 133.978,111 104 113 105 114,stand,,,
|
||||
1236 1124.94 134.577,112 109 106 107,stand,,,
|
||||
1155.02 641.371 121.468,105 103 104 115 112 286,stand,,,
|
||||
1139.76 404.442 135.065,114 116 104,stand,,,
|
||||
1016.16 241.294 152.125,115 103 117 102,stand,,,
|
||||
684.323 256.128 152.125,102 116 118,stand,,,
|
||||
648.525 -34.2147 152.125,119 117 102 120 121,stand,,,
|
||||
800.051 -51.8376 152.125,118 123,stand,,,
|
||||
642.732 -229.455 152.125,118 124 146 126,stand,,,
|
||||
502.134 1.32684 143.041,118 122 123,stand,,,
|
||||
295.98 -239.116 132.625,121 126 98 101 124 184,stand,,,
|
||||
454.018 203.11 138.395,101 121 119 102,stand,,,
|
||||
662.203 -467.111 155.925,120 125 126 122 149,stand,,,
|
||||
749.351 -597.902 109.07,124 142 150 149,stand,,,
|
||||
365.495 -451.001 136.125,124 127 128 122 120,stand,,,
|
||||
82.8365 -440.782 136.125,126 98 139,stand,,,
|
||||
340.744 -559.476 136.125,126 129 137 194,stand,,,
|
||||
403.892 -663.21 144.125,128 130,stand,,,
|
||||
397.939 -810.703 200.125,129 131,stand,,,
|
||||
222.962 -785.306 272.125,130 132 189,stand,,,
|
||||
131.008 -795.098 272.125,131 133 136 246,stand,,,
|
||||
142.017 -573.307 272.125,132 134,stand,,,
|
||||
-10.0494 -569.091 272.125,133 135,stand,,,
|
||||
-23.1825 -897.228 272.125,134 136 246 248,stand,,,
|
||||
144.555 -916.518 272.125,135 132 246,stand,,,
|
||||
238.643 -729.129 136.125,128 138 194,stand,,,
|
||||
143.678 -731.112 136.125,137 139 140,stand,,,
|
||||
68.5732 -531.372 136.125,138 127,stand,,,
|
||||
17.4699 -800.753 136.125,138 141,stand,,,
|
||||
17.3697 -913.155 136.125,140 145,stand,,,
|
||||
727.66 -896.83 88.6634,125 143 255 256,stand,,,
|
||||
443.694 -1085.49 96.125,142 144 185 255,stand,,,
|
||||
261.982 -920.761 107.379,143 145 185,stand,,,
|
||||
183.537 -907.89 136.125,144 141,stand,,,
|
||||
708.313 -276.713 134.915,120 147,stand,,,
|
||||
940.551 -288.421 124.575,146 148,stand,,,
|
||||
1195.18 -325.195 85.9686,147 149 151 156,stand,,,
|
||||
1027.06 -447.323 91.8721,124 150 148 151 152 125,stand,,,
|
||||
1069.45 -622.471 76.6503,125 149 151 154,stand,,,
|
||||
1274.81 -421.913 74.5568,148 150 149 152 156,stand,,,
|
||||
1321.69 -550.234 71.125,149 151 153 154 155 156,stand,,,
|
||||
1231.38 -885.123 64.2415,152 15 154 20,stand,,,
|
||||
1107.84 -815.829 66.1411,150 153 20 17 152,stand,,,
|
||||
1322.84 -911.07 71.125,15 152,stand,,,
|
||||
1403.91 -357.092 69.0579,152 151 148 157 201 272,stand,,,
|
||||
1453.64 -223.598 69.2018,156 158 160 162 188,stand,,,
|
||||
1349.69 -154.998 96.125,157 159,stand,,,
|
||||
1318 -9.9136 152.125,158 161 274,stand,,,
|
||||
1479.33 105.609 123.811,157 161 162 163 182,stand,,,
|
||||
1334.18 156.234 125.675,160 182 162 159 275,stand,,,
|
||||
1544.46 -20.8428 109.032,160 157 163 161 276,stand,,,
|
||||
1773.25 166.161 137.279,162 160 164 182 276,stand,,,
|
||||
1790.62 348.294 244.125,163 212,stand,,,
|
||||
1507.41 362.995 308.125,166 211 212,stand,,,
|
||||
1523.37 442.568 308.125,165 167 176 177 281,stand,,,
|
||||
1790.22 450.994 308.125,166 168 177 278,stand,,,
|
||||
1787.2 677.216 460.125,167 169,stand,,,
|
||||
1607.95 685.467 580.125,168 170 174,stand,,,
|
||||
1483.94 683.256 580.125,169 171 172 277,stand,,,
|
||||
1474.45 445.496 580.125,170 214,stand,,,
|
||||
1769.11 446.402 587.125,173 170 214,stand,,,
|
||||
1795.81 762.948 580.125,172 174,stand,,,
|
||||
1594.79 751.411 580.125,173 169,stand,,,
|
||||
1509.12 676.99 308.125,178 279 281,stand,,,
|
||||
1641.21 608.917 308.125,166 177 178,stand,,,
|
||||
1657.17 484.933 308.125,167 166 176,stand,,,
|
||||
1658.16 723.65 308.125,176 175 179,stand,,,
|
||||
1782.55 725.414 308.125,178 180 280,stand,,,
|
||||
1779.94 457.879 140.125,179 181,stand,,,
|
||||
1648.83 457.137 140.125,180 182 207,stand,,,
|
||||
1622.67 272.048 142.694,181 160 161 163,stand,,,
|
||||
1499.77 664.062 140.125,104 190 207,stand,,,
|
||||
210.499 -35.9916 127.358,122 101 99,stand,,,
|
||||
325.051 -1152.52 96.125,143 144,stand,,,
|
||||
-596.083 1807.02 418.942,64 236,stand,,,
|
||||
-695.83 1902.42 398.125,63 62 232 234 233,stand,,,
|
||||
1793.88 -151.125 75.1669,157 276,stand,,,
|
||||
265.755 -558.88 272.125,131,stand,,,
|
||||
1509.15 481.096 140.125,183 310,stand,,,
|
||||
1304.22 305.499 138.058,104,stand,,,
|
||||
-825.823 1939.75 254.125,59 58 193,stand,,,
|
||||
-862.075 2159.49 254.125,192 222,stand,,,
|
||||
242.871 -571.773 136.125,128 137,stand,,,
|
||||
-145.21 8.84962 135.517,98 99,stand,,,
|
||||
-229.754 26.6119 135.912,41,stand,,,
|
||||
-6.07648 1804.56 224.125,71 72 65,stand,,,
|
||||
334.575 1492.93 126.125,75 73 74 300,stand,,,
|
||||
839.36 1393.56 129.762,107,stand,,,
|
||||
1509.83 851.857 135.089,111,stand,,,
|
||||
1697.9 -337.218 68.1248,156 272 273,stand,,,
|
||||
687.949 1168.56 137.125,87,stand,,,
|
||||
31.9717 840.635 137.213,80 298,stand,,,
|
||||
966.009 -877.157 304.125,205 257,stand,,,
|
||||
1055.36 -1108.42 304.125,204 206,stand,,,
|
||||
915.586 -1113.41 304.125,205,stand,,,
|
||||
1627.75 652.932 140.125,183 181 309,stand,,,
|
||||
722.281 1172.92 273.125,85 293 295 296,stand,,,
|
||||
-814.545 1266.08 245.733,53 238 237 304,stand,,,
|
||||
-842.469 1520.99 410.388,63 303,stand,,,
|
||||
1603.33 384.447 308.125,165 212 213,climb,81.0999 -44.0717 0,,
|
||||
1647.99 363.849 308.125,165 211 164,stand,,,
|
||||
1604.64 412.734 627.125,214 211,climb,73.8928 86.8854 0,,
|
||||
1604.26 450.046 580.125,213 171 172,stand,,,
|
||||
-752.862 2260.38 243.125,216,crouch,6.04248 -0.214233 0,,
|
||||
-465.996 2260.34 239.602,56 217 67 215,stand,6.04248 -0.214233 0,,
|
||||
-77.125 2276.88 236.125,67 216,crouch,4.31763 -141.284 0,,
|
||||
-40.8749 2284.88 236.125,70 68,crouch,3.80127 -50.2954 0,,
|
||||
232.867 2310.88 236.125,70,crouch,3.27942 -131.973 0,,
|
||||
-543.125 1898.25 254.125,58 57,crouch,3.4552 141.18 0,,
|
||||
-748.935 2152.54 254.125,57,crouch,5.18005 -30.6244 0,,
|
||||
-840.859 2216.88 254.125,193,crouch,5.00977 -90.5438 0,,
|
||||
-816.731 2069.24 390.125,224 61,stand,12.431 -94.1693 0,,
|
||||
-799.125 1891.13 390.125,225 223,crouch,2.93335 105.765 0,,
|
||||
-944.875 1891.13 390.125,224,crouch,5.52612 67.7802 0,,
|
||||
-723.961 2216.88 390.125,62,crouch,4.14185 -54.7998 0,,
|
||||
-543.723 2207.39 426.125,62,crouch,8.1134 -121.619 0,,
|
||||
-501.308 2194.93 390.125,231,stand,15.7104 -85.7043 0,,
|
||||
-499.405 1916.68 390.125,230,stand,16.9189 -90.5383 0,,
|
||||
-489.518 2061.06 390.125,229 231 233,stand,31.4264 -88.2971 0,,
|
||||
-494.081 2152.68 390.125,230 228,crouch,26.5924 -9.73938 0,,
|
||||
-760.875 1891.13 390.125,187,crouch,5.35034 55.1733 0,,
|
||||
-592.069 2052.88 390.125,62 234 230 187,stand,27.2791 -5.08667 0,,
|
||||
-594.176 1957.79 391.399,187 233 62,stand,26.7627 65.0171 0,,
|
||||
-549.37 1464.67 414.291,64,stand,27.2791 -44.1046 0,,
|
||||
-539.858 1849.75 452.149,186,crouch,23.6536 -63.2648 0,,
|
||||
-952.875 1420.87 248.206,238 209 304,crouch,7.08069 -32.7063 0,,
|
||||
-952.875 1195.13 255.019,209 237,crouch,7.59705 60.3589 0,,
|
||||
-612.875 1615.23 256.125,241,crouch,5.52612 -7.15759 0,,
|
||||
-557.945 1832.88 256.125,54,crouch,5.52612 -40.8252 0,,
|
||||
-509.931 1593.3 256.125,52 239 54 50 312,stand,14.6777 68.8184 0,,
|
||||
-556.875 733.125 258.125,46,crouch,4.14185 45.6812 0,,
|
||||
-550.875 1132.88 258.125,47,crouch,5.18005 -34.4366 0,,
|
||||
-156.13 528.875 229.787,43,crouch,6.04248 -135.445 0,,
|
||||
-740.875 383.125 237.326,44,crouch,6.04248 22.0276 0,,
|
||||
40.0465 -804 272.125,132 136 135,stand,18.7714 10.6293 0,,
|
||||
-91.125 -887.23 121.983,37 248,climb,-85 -0.0769043 0,,
|
||||
-84.4378 -884.399 319.125,135 247,climb,85 -178.44 0,,
|
||||
-342.875 -2128.87 206.22,26,crouch,8.24097 48.4332 0,,
|
||||
752.875 -2128.88 153.969,24,crouch,5.82398 129.067 0,,
|
||||
681.073 -1293.32 127.642,252 253 254,stand,20.3259 4.06494 0,,
|
||||
902.221 -1291.07 125.838,20 251,stand,27.0605 -2.66968 0,,
|
||||
306.713 -1276.15 126.362,18 251 308,stand,35.5255 133.039 0,,
|
||||
696.925 -1237.45 142.125,251 255,stand,32.0703 91.2469 0,,
|
||||
690.213 -1109.07 91.1899,254 143 142 256,stand,4.96155 -92.6367 0,,
|
||||
768.875 -970.38 87.223,257 255 142,climb,-85 1.10413 0,,
|
||||
774.561 -967.961 319.125,204 256,climb,85 179.802 0,,
|
||||
1180.62 -2000.88 64.125,259 0,crouch,0.12207 75.1849 0,,
|
||||
1318.88 -2000.88 64.125,258 0,crouch,3.2312 113.516 0,,
|
||||
1357.13 -1992.88 66.125,261,crouch,1.85242 47.2192 0,,
|
||||
1409.91 -1862.51 66.125,1 260 0,stand,7.37854 -4.75159 0,,
|
||||
1694.88 -1992.88 202.125,5,crouch,5.64819 127.507 0,,
|
||||
1631.24 -1659.98 226.125,264 266 6,stand,11.3501 -177.594 0,,
|
||||
1438.76 -1667.64 226.125,265 263 269,stand,16.3544 83.8147 0,,
|
||||
1447.43 -1435.62 226.125,268 267 264 266,stand,19.2932 6.63025 0,,
|
||||
1623.54 -1435.52 227.125,263 265 270,stand,17.2168 -73.136 0,,
|
||||
1298.88 -1493.55 226.125,268 265,stand,24.8138 85.8856 0,,
|
||||
1297.68 -1415.08 226.125,267 265,stand,18.255 -47.5818 0,,
|
||||
1357.13 -1768.88 233.125,264,crouch,4.09363 52.207 0,,
|
||||
1694.88 -1367.13 226.125,266,crouch,1.67664 -133.231 0,,
|
||||
1696.88 -1039.13 65.125,16 13,crouch,0.98999 -131.506 0,,
|
||||
1808.88 -496.875 68.125,273 201 156,crouch,3.75305 154.77 0,,
|
||||
1808.88 -269.125 68.1253,272 201,crouch,-2.29492 -136.857 0,,
|
||||
1243.37 -7.53793 152.125,159,crouch,3.75305 0.933838 0,,
|
||||
1354.09 228.27 197.23,161,stand,13.421 88.4784 0,,
|
||||
1772.11 -35.9376 111.733,188 163 162,stand,23.7811 -119.416 0,,
|
||||
1459.12 764.875 580.125,170,crouch,2.54456 -53.4869 0,,
|
||||
1804.88 427.125 308.125,167,crouch,3.57727 150.43 0,,
|
||||
1459.13 764.875 340.125,175,crouch,1.85242 -51.405 0,,
|
||||
1804.88 764.875 308.125,179,crouch,3.75305 -118.575 0,,
|
||||
1502.96 564.533 308.125,166 175 282,stand,17.5629 72.2131 0,,
|
||||
1418.16 556.151 308.125,281 283 284,stand,35.3497 -171.074 0,,
|
||||
1412.17 452.898 308.125,282,crouch,16.3544 133.682 0,,
|
||||
1408.13 634.779 308.125,285 282,stand,23.6053 91.5546 0,,
|
||||
1407.51 740.481 308.125,284,stand,65.5676 15.5841 0,,
|
||||
1040.02 625.939 126.694,114 288,stand,2.89063 -164.141 0,,
|
||||
710.106 520.335 152.898,288 92,crouch,2.54456 15.9412 0,,
|
||||
934.903 588.521 141.136,286 287,crouch,1.16028 -166.047 0,,
|
||||
458.646 469.344 147.81,92,crouch,1.16028 12.821 0,,
|
||||
303.125 1135.13 137.125,86 81,crouch,3.57727 50.1196 0,,
|
||||
752.875 1440.88 137.125,82,crouch,2.36877 -144.992 0,,
|
||||
752.875 1247.13 137.125,82,crouch,2.19849 144.393 0,,
|
||||
694.875 1225.84 273.125,208,prone,36.3824 122.822 0,,
|
||||
438.332 1119.13 274.125,295 85,crouch,12.5586 -90.9283 0,,
|
||||
528.476 1119.15 274.118,294 208,crouch,10.3119 -89.5441 0,,
|
||||
752.875 1168.22 274.125,208,crouch,16.1841 -0.631714 0,,
|
||||
303.125 1167.49 274.125,85,crouch,19.1174 177.896 0,,
|
||||
-3.90821 936.887 136.548,203,crouch,4.09363 -52.7838 0,,
|
||||
95.1252 1584.87 132.923,75,crouch,4.96155 -72.4713 0,,
|
||||
432.875 1479.13 129.37,198,crouch,3.92334 131.451 0,,
|
||||
432.875 1968.88 131.141,73 302,crouch,4.09363 -117.356 0,,
|
||||
303.125 1968.87 132.531,73 301,crouch,3.2312 -70.0433 0,,
|
||||
-847.531 1422.21 450.125,210 304,climb,85 -90.2417 0,,
|
||||
-846.595 1412.87 245.436,303 237 53 209,climb,-85 91.0547 0,,
|
||||
89.2412 -1325.22 67.9735,308 306 19,stand,22.5726 -87.4951 0,,
|
||||
54.5599 -1481.71 64.125,305 307 32 31,stand,17.5684 -1.34033 0,,
|
||||
223.322 -1490.05 64.125,306 33 308 31,stand,21.1938 47.5269 0,,
|
||||
231.673 -1360.62 64.125,253 18 305 307,stand,9.27917 47.3566 0,,
|
||||
1793.38 732.932 140.125,207,crouch,3.23669 -165.366 0,,
|
||||
1508.34 447.125 140.125,190,crouch,-0.218506 86.0284 0,,
|
||||
783.125 943.125 140.783,106,crouch,-0.0482178 48.3893 0,,
|
||||
-388.769 1641.37 235.202,313 51 52 241 54,stand,19.1656 -91.3074 0,,
|
||||
-296.595 1525.77 232.594,314 50 312,stand,16.4026 55.8051 0,,
|
||||
-228.416 1668.89 229.698,51 66 315 313,stand,17.265 78.7665 0,,
|
||||
-157.419 1843.94 228.554,65 51 314,stand,20.0281 64.5996 0,,
|
||||
|
@@ -0,0 +1,512 @@
|
||||
511
|
||||
1682.46 4110.21 215.801,1 469,stand,,,
|
||||
1434.17 4133.08 207.98,2 0 3,stand,,,
|
||||
1470.04 3564.24 168.347,1 8 88 4 470,stand,,,
|
||||
1274.64 4341.21 195.408,1 4,stand,,,
|
||||
1134.36 4115.76 187.433,3 5 2 8 468,stand,,,
|
||||
620.391 4223.25 123.625,4 6,stand,,,
|
||||
637.661 3842.13 127.294,5 7,stand,,,
|
||||
637.198 3245.33 123.625,6 8 101 102,stand,,,
|
||||
1190.47 3436.83 138.25,7 2 89 4,stand,,,
|
||||
2004.92 3590.43 174.738,10 470,stand,,,
|
||||
2359.57 3509.67 279.856,9 11 20,stand,,,
|
||||
2567.62 3488.13 231.806,10 12,stand,,,
|
||||
2603.83 3002.21 127.962,11 13 33 34,stand,,,
|
||||
2587.11 2693.16 142.125,12 14,stand,,,
|
||||
2359.61 2700.64 142.125,13 15 29,stand,,,
|
||||
2091.04 2729.81 142.125,14 16 27,stand,,,
|
||||
2126.05 3276.18 142.125,15 17 88,stand,,,
|
||||
2166.74 3420.76 142.125,16 18,stand,,,
|
||||
1895.13 3408.95 278.125,17 19,stand,,,
|
||||
2003.52 3179.65 278.125,18 20 23 24 476 477,stand,,,
|
||||
2348.62 3193.33 278.125,19 10 21,stand,,,
|
||||
2415.55 3194.53 278.125,20 22,stand,,,
|
||||
2403.32 2932.99 278.125,21 23,stand,,,
|
||||
2000.41 2942.68 278.125,22 19 26,stand,,,
|
||||
2168.1 3415.87 278.125,19 25,stand,,,
|
||||
1908.77 3398.47 414.125,24 471,stand,,,
|
||||
1906.41 2768.84 278.125,23 27 478,stand,,,
|
||||
1944.41 2439.36 142.125,26 15 28,stand,,,
|
||||
1920.92 2267.31 142.125,27 29,stand,,,
|
||||
2356.59 2257.39 142.125,28 14 30,stand,,,
|
||||
2367.34 1857.82 128.125,29 31 484 507,stand,,,
|
||||
2851.89 1842.11 128.125,30 32 485 482 489,stand,,,
|
||||
2857.41 2410.77 128.125,31 33,stand,,,
|
||||
2838.03 2976.64 134.818,32 12,stand,,,
|
||||
2837.17 3387.38 110.641,12 35 36,stand,,,
|
||||
2765.18 3708.44 51.0296,34,stand,,,
|
||||
2995.33 3402.95 72.2751,34 37 38,stand,,,
|
||||
3243.61 3419.32 -15.875,36 43,stand,,,
|
||||
2976.81 2815.21 124.782,36 404,stand,,,
|
||||
2973.35 2217.46 128.252,40 404,stand,,,
|
||||
2969.08 1619.97 128.74,39 41 45,stand,,,
|
||||
2977.74 1055.32 129.772,40 42 192 202,stand,,,
|
||||
2604.63 1051.07 128.125,41 191 193 199,stand,,,
|
||||
3277.39 2829.93 -15.875,37 405,stand,,,
|
||||
3383.23 2245.21 -15.875,45 405,stand,,,
|
||||
3462.24 1725.76 -15.875,44 46 40,stand,,,
|
||||
3613.27 1240.11 -15.875,45 47 192,stand,,,
|
||||
3813.29 737.935 -15.875,46 48,stand,,,
|
||||
3574.62 236.806 -15.875,47 49,stand,,,
|
||||
3101.94 44.7411 -15.875,48 50 241 201 383,stand,,,
|
||||
2596.37 17.7995 -15.875,49 51 200 242,stand,,,
|
||||
2022.05 81.5055 -15.875,50 52 380 381,stand,,,
|
||||
1543.28 -199.711 -15.875,51 53 56 379 381,stand,,,
|
||||
1088.3 -312.15 -15.875,52 54 171 378,stand,,,
|
||||
1206.09 -810.259 106.39,53 55 135 136,stand,,,
|
||||
1450.8 -717.851 125.343,54 56 197,stand,,,
|
||||
1628.82 -681.299 112.929,55 52 236,stand,,,
|
||||
952.457 258.154 24.2892,58 378,stand,,,
|
||||
918.148 813.041 61.7902,57 59 195 62,stand,,,
|
||||
497.082 963.073 114.529,58 60 62 63,stand,,,
|
||||
216.429 935.185 111.157,59 61 299,stand,,,
|
||||
213.556 355.727 106.02,60 62 74 372,stand,,,
|
||||
540.584 374.401 113.633,61 59 172 58,stand,,,
|
||||
473.378 1326.06 112.203,59 64 82 83 432,stand,,,
|
||||
293.744 1427.77 106.125,63 65 432 430,stand,,,
|
||||
51.8786 1438.47 192.125,64 66,stand,,,
|
||||
52.2497 1337.35 192.125,65 67,stand,,,
|
||||
319.703 1346.12 298.125,66 68 425 429,stand,,,
|
||||
235.139 1024.56 298.125,67 69 417 418 419 420,stand,,,
|
||||
173.396 709.004 298.125,68 70 413 411,stand,,,
|
||||
60.3476 725.838 298.125,69 71 409,stand,,,
|
||||
41.3412 1083.13 198.125,70 72,stand,,,
|
||||
-173.746 1070.12 198.125,71 408,stand,,,
|
||||
-147.609 514.523 106.125,74 298 408,stand,,,
|
||||
-1.87957 339.909 96.2896,73 61 75,stand,,,
|
||||
-262.185 308.293 26.4728,74 76 173 174,stand,,,
|
||||
-294.277 895.822 92.0528,75 77 176 175,stand,,,
|
||||
-309.493 1288.12 94.2895,76 78 80,stand,,,
|
||||
-117.347 1289.24 117.787,77 79 499,stand,,,
|
||||
-126.549 1733.09 96.1563,78 80 81 433,stand,,,
|
||||
-352.159 1700.73 90.5384,79 77 177 433,stand,,,
|
||||
208.071 1650.93 102.632,79 82 105,stand,,,
|
||||
560.569 1620.21 123.625,81 63 92,stand,,,
|
||||
1045.44 1379.37 112.937,63 84 195 493 494 495,stand,,,
|
||||
1310.98 1647.41 116.524,83 85 91 492 494,stand,,,
|
||||
1868.65 1578.12 128.125,84 190 492 507 510,stand,,,
|
||||
1760.32 2055.58 132.107,87 509,stand,,,
|
||||
1657.8 2628.03 113.371,86 88,stand,,,
|
||||
1626.41 3165.31 142.319,87 16 2 89,stand,,,
|
||||
1297.84 2908.8 115.932,8 90 463 88,stand,,,
|
||||
1321.37 2333.11 116.567,89 91 94 464,stand,,,
|
||||
1353.86 1824.15 117.619,90 84 92,stand,,,
|
||||
764.306 1834.45 113.542,91 82 93,stand,,,
|
||||
577.676 2302.35 123.625,92 94 105 101 466,stand,,,
|
||||
934.058 2226.18 176.003,93 90 95 465 466 467,stand,,,
|
||||
914.268 2575.83 320.125,94 461 462,stand,,,
|
||||
344.856 2515.63 320.125,97 461,stand,,,
|
||||
264.254 2534.15 320.125,96 98,stand,,,
|
||||
263.382 2915.2 176.125,97 99 100 101,stand,,,
|
||||
282.953 3465.84 176.125,98 103,stand,,,
|
||||
-18.9711 2946.96 120.125,98 102 104 106,stand,,,
|
||||
644.387 2827.63 117.726,98 7 93 463,stand,,,
|
||||
67.162 3182.77 123.205,7 103 100,stand,,,
|
||||
73.0353 3495.54 120.935,102 99 457 459,stand,,,
|
||||
-39.7296 2494.19 120.125,100 105,stand,,,
|
||||
141.08 2126.36 133.789,104 81 93,stand,,,
|
||||
-312.203 2679.91 131.836,100 444 457,stand,,,
|
||||
-706.089 2690.86 138.125,108 437 444 446,stand,,,
|
||||
-602.009 3076.54 138.125,107 439 441 440 442 443,stand,,,
|
||||
-1146.05 2694.67 115.622,110 181 446 448 454,stand,,,
|
||||
-1255.18 2903.7 137.161,109 111 448 454,stand,,,
|
||||
-1237.04 3485.75 156.811,110 112 114 449,stand,,,
|
||||
-851.961 3412.5 131.904,111 113,stand,,,
|
||||
-503.849 3422.25 239.559,112 456 455 457,stand,,,
|
||||
-1684.06 3793.59 178.754,111 115 451 450,stand,,,
|
||||
-2002.46 3388.9 212.12,114 116 449,stand,,,
|
||||
-2175.97 2877.21 140.417,115 117,stand,,,
|
||||
-2266.02 2308.56 89.0875,116 118 453 452,stand,,,
|
||||
-2314.72 1719.33 62.5209,117 119,stand,,,
|
||||
-2443.07 1197.51 30.4329,118 120 183,stand,,,
|
||||
-2364.84 613.54 32.3302,119 121,stand,,,
|
||||
-2123.47 80.6065 0.516194,120 122,stand,,,
|
||||
-2073.84 -511.834 -2.10692,121 123 130,stand,,,
|
||||
-2296.45 -906.279 33.125,122 129 267 269 270,stand,,,
|
||||
-2142.8 -1272.57 33.125,261 264 267,stand,,,
|
||||
-2222.16 -1606.65 33.125,126 127 257 258 259 261,stand,,,
|
||||
-2055.88 -1955.69 68.309,125 206 208 257,stand,,,
|
||||
-1757.26 -1589.21 45.857,125 128 205 206,stand,,,
|
||||
-1776.89 -1279.83 9.00706,127 129 264 278,stand,,,
|
||||
-1770.93 -899.591 4.92298,128 123 130 277,stand,,,
|
||||
-1696.77 -563.914 -8.87188,129 122 186 276 277,stand,,,
|
||||
-1175.32 -856.485 -25.0894,271 276 286 287 369,stand,,,
|
||||
-597.386 -846.654 -26.3512,133 288 369,stand,,,
|
||||
-28.6427 -741.624 30.9978,132 134 169 170 306 370,stand,,,
|
||||
510.893 -762.588 94.5299,133 300,stand,,,
|
||||
871.076 -714.994 127.917,54 147 300,stand,,,
|
||||
1358.64 -1222.59 80.2112,54 137 145,stand,,,
|
||||
1294.58 -1806.46 52.3464,136 138,stand,,,
|
||||
1259.13 -2331.6 61.2872,137 139 398,stand,,,
|
||||
1221.66 -2730.21 94.7808,138 140 398,stand,,,
|
||||
919.826 -2695.8 131.349,139 141 150 229,stand,,,
|
||||
930.176 -2220.28 127.33,140 142,stand,,,
|
||||
949.548 -1837.01 121.897,141 143 144,stand,,,
|
||||
724.515 -1841.98 114.327,142 149 151,stand,,,
|
||||
962.103 -1544.9 119.752,142 145 308,stand,,,
|
||||
948.497 -1242.82 121.177,144 136 146 147,stand,,,
|
||||
717.988 -1280.45 120.616,145 148 304 307,stand,,,
|
||||
897.945 -924.737 123.625,145 135 301,stand,,,
|
||||
587.185 -1068.68 140.428,146 301,stand,,,
|
||||
740.516 -2231.89 121.292,143 150,stand,,,
|
||||
711.938 -2745.56 123.949,149 140 220,stand,,,
|
||||
719.554 -1686.74 121.121,143 152 307,stand,,,
|
||||
496.457 -1680.99 136.969,151 153 155 305,stand,,,
|
||||
483.204 -1836.58 117.942,152 154 311 312 313 314,stand,,,
|
||||
-69.9943 -1841.88 134.687,153 155 156 161,stand,,,
|
||||
-84.5861 -1690.74 174.274,154 152 168 169 280 305,stand,,,
|
||||
-618.479 -1880.32 133.596,154 157,stand,,,
|
||||
-833.739 -1971.43 130.816,156 158 166,stand,,,
|
||||
-821.936 -2152.78 130.125,157 159,stand,,,
|
||||
-504.206 -2166.42 118.125,158 503,stand,,,
|
||||
-212.636 -2570.08 110.613,224 342 503 500,stand,,,
|
||||
-220.271 -2010.81 120.725,154 342,stand,,,
|
||||
-1844.32 -2869.23 118.917,163 207 208,stand,,,
|
||||
-1444.6 -2866.6 119.611,162 164 209 255 207 363,stand,,,
|
||||
-1129.8 -2703.64 106.888,163 165 358 209 361,stand,,,
|
||||
-1096.1 -2419.93 123.79,164 166 357 358 361,stand,,,
|
||||
-1097.78 -1962.77 129.629,165 157 167 357 364,stand,,,
|
||||
-1093.38 -1720.61 141.515,166 168 205 272 279,stand,,,
|
||||
-651.504 -1697.84 159.59,167 155 279,stand,,,
|
||||
-144.638 -1243.58 104.762,155 133 203 280 306,stand,,,
|
||||
282.408 -382.885 -15.875,133 171 173 370 371 373 300,stand,,,
|
||||
765.288 -384.909 -15.875,170 53 300,stand,,,
|
||||
516.752 53.326 64.4877,62 373 376,stand,,,
|
||||
-81.1619 -26.5078 -15.875,170 174 295 75 371,stand,,,
|
||||
-635.778 161.43 -15.875,173 175 291 75,stand,,,
|
||||
-967.068 587.103 -15.875,174 176 187 76 188 291,stand,,,
|
||||
-1016.74 1174.04 -11.7915,175 177 188 76 180,stand,,,
|
||||
-781.546 1666.06 -15.875,176 80 178 180 447,stand,,,
|
||||
-685.947 1998.88 144.448,177 179 433 435 447,stand,,,
|
||||
-691.793 2219.15 138.125,178 436 437,stand,,,
|
||||
-1177.33 1808.2 21.6173,177 181 182 447 176,stand,,,
|
||||
-1197.31 2367.89 97.5792,180 109 445 447 448 452,stand,,,
|
||||
-1715.23 1679.94 15.1267,180 183 452,stand,,,
|
||||
-2083.75 1391.39 -6.07474,182 119 184,stand,,,
|
||||
-2135.75 798.475 4.79257,183 185 189,stand,,,
|
||||
-1935.55 245.363 -19.1153,184 186 189 187,stand,,,
|
||||
-1692.77 -201.22 -15.0811,185 130 187 286,stand,,,
|
||||
-1264.12 107.89 11.1185,186 175 289 185 291,stand,,,
|
||||
-1546.72 1015.41 -15.875,176 189 175,stand,,,
|
||||
-1858.21 738.086 85.914,188 184 185,stand,,,
|
||||
2222.73 1337.46 128.125,85 490 491 504 508,stand,,,
|
||||
2612.72 1220.26 128.125,42 487 508,stand,,,
|
||||
3363.23 1079.17 99.8088,41 46,stand,,,
|
||||
2086.7 995.283 109.082,42 194,stand,,,
|
||||
1507.32 983.646 132.54,193 195 198 493,stand,,,
|
||||
1184.72 935.687 116.192,83 194 196 382 493 58,stand,,,
|
||||
1211.01 401.433 126.431,195 197 379 382,stand,,,
|
||||
1290.6 -188.468 128.247,196 55,stand,,,
|
||||
1761.37 628.024 65.8616,194 199 199 380 382,stand,,,
|
||||
2305.18 591.252 66.6649,198 200 42 201 198 380,stand,,,
|
||||
2406.44 162.68 24.3728,199 50,stand,,,
|
||||
2798.38 436.452 77.2858,199 202 49,stand,,,
|
||||
3310.04 663.896 150.235,201 41,stand,,,
|
||||
-639.529 -1335.89 103.125,169 280 365 366,stand,,,
|
||||
-903.901 -1373.63 183.125,281 365,stand,,,
|
||||
-1385.45 -1624.82 77.6613,167 127 272 274 364,stand,,,
|
||||
-1764.26 -1977.41 85.4478,127 126 207,stand,,,
|
||||
-1650.55 -2427.17 103.436,206 162 163 208 364,stand,,,
|
||||
-1953.09 -2313.1 146.766,162 126 207,stand,,,
|
||||
-1036.23 -3127.55 101.412,163 210 213 256 164,stand,,,
|
||||
-1033.01 -3534.43 102.507,209 211 360,stand,,,
|
||||
-607.561 -3549.15 90.125,210 212 338 339 340,stand,,,
|
||||
-388.415 -3517.32 90.125,211 213 214 338 339 340,stand,,,
|
||||
-545.078 -3051.39 96.3856,212 209 218 341 359 501 500,stand,,,
|
||||
-273.534 -3494.81 90.125,212 215,stand,,,
|
||||
-263.314 -3657.9 90.125,214 216 337,stand,,,
|
||||
-105.29 -3631.57 90.125,215 217 333 336,stand,,,
|
||||
-12.7595 -3468.46 90.125,216 218 332 333,stand,,,
|
||||
-27.4522 -3112.46 87.1938,217 213 219 331 500,stand,,,
|
||||
477.22 -3196.09 99.501,218 220 225 330 402,stand,,,
|
||||
560.961 -2782.01 114.29,219 150 221 330 402,stand,,,
|
||||
560.765 -2478.61 115.246,220 222,stand,,,
|
||||
298.592 -2471.81 112.927,221 223 328 329,stand,,,
|
||||
153.133 -2532.38 110.537,222 224 329,stand,,,
|
||||
104.91 -2552.78 109.728,223 160,stand,,,
|
||||
685.303 -3393.81 120.454,219 226,stand,,,
|
||||
715.044 -3638.45 128.08,225 227 401,stand,,,
|
||||
969.62 -3642.86 129.125,226 228 400,stand,,,
|
||||
937.836 -3299.65 121.014,227 229 229 399,stand,,,
|
||||
962.654 -2865.92 121.916,228 140 228 397 402,stand,,,
|
||||
1509.65 -3289.7 104.06,231 397 399,stand,,,
|
||||
1780.81 -3254.23 111.646,230 232 233 247 392 403,stand,,,
|
||||
1764.89 -3631.07 127.484,231 395 394 396,stand,,,
|
||||
1902.38 -2704.29 40.611,231 234 392 398 403 246,stand,,,
|
||||
1912.99 -2212.49 56.306,233 235 246,stand,,,
|
||||
1855.33 -1649.05 73.5452,234 236 254 390,stand,,,
|
||||
1827.58 -1054.87 65.1371,235 56 237 388,stand,,,
|
||||
2070.57 -560.296 85.2696,236 238 388,stand,,,
|
||||
2570.51 -657.887 82.9757,237 239 242 243 384 385 388,stand,,,
|
||||
2933.49 -711.278 116.477,238 240 253 384 385 383,stand,,,
|
||||
3443.61 -695.495 177.966,239 241,stand,,,
|
||||
3401.69 -183.426 97.5301,240 49 383,stand,,,
|
||||
2425.86 -214.89 65.6155,238 50 383 384,stand,,,
|
||||
2618.64 -1206.85 51.4319,238 244 252 385 387 389 388,stand,,,
|
||||
2606.34 -1708.08 44.0858,243 245 250 254 389 390,stand,,,
|
||||
2361.26 -2253.69 48.4679,244 246 250 390 249,stand,,,
|
||||
2065.55 -2524.49 38.9758,245 234 391 233,stand,,,
|
||||
2175.51 -3237.31 180.44,231 248 393,stand,,,
|
||||
2566.99 -2946.11 190.123,247 249 391 392,stand,,,
|
||||
2743.59 -2404.98 152.526,248 250 245,stand,,,
|
||||
2721.89 -1926.76 53.9896,249 251 244 245,stand,,,
|
||||
2919.11 -1947.34 59.8074,250,stand,,,
|
||||
3150.34 -1330.7 151.631,243 253 386,stand,,,
|
||||
3146.65 -960.901 145.307,252 239 385 386,stand,,,
|
||||
2253.96 -1666.68 105.402,235 244 389,stand,,,
|
||||
-1553.85 -2908.36 117.419,163 256,stand,,,
|
||||
-1560.87 -3240.87 122.092,255 209,crouch,2.2467 48.099 0,,
|
||||
-2020.32 -1742 50.5567,126 125 258,stand,11.0522 148.953 0,,
|
||||
-2017.13 -1534.13 32.1089,257 125,crouch,1.03821 -123.859 0,,
|
||||
-2413.19 -1557.25 31.4589,125,crouch,1.55457 -23.5483 0,,
|
||||
-2280.34 -1338.13 43.4622,261,crouch,3.10913 -53.7662 0,,
|
||||
-2192.34 -1473.58 33.125,125 260 124 262,stand,21.2366 -103.144 0,,
|
||||
-2114.22 -1450.12 34.125,263 261,stand,11.2225 27.5546 0,,
|
||||
-2016.39 -1407.67 33.125,264 262,stand,20.3741 81.2502 0,,
|
||||
-2003.99 -1278.97 33.125,128 263 124 266,stand,10.7062 -161.679 0,,
|
||||
-1954.13 -1065.13 33.125,266,crouch,9.49768 -141.141 0,,
|
||||
-2020.35 -1178.4 33.125,264 265 267,stand,13.1232 -130.605 0,,
|
||||
-2197.55 -1129.87 33.125,268 123 124 266,stand,13.9856 -123.7 0,,
|
||||
-2307.88 -1260.97 33.125,267,crouch,2.76306 47.9287 0,,
|
||||
-2418.88 -927.875 14.4108,123,crouch,2.93335 46.1929 0,,
|
||||
-1917.13 -731.125 -1.43206,123,crouch,1.37878 -143.047 0,,
|
||||
-1091.51 -1061.49 33.6565,272 131 273,stand,2.76306 -76.063 0,,
|
||||
-1009.52 -1456.12 125.727,167 271 205 279,stand,14.1559 -96.0911 0,,
|
||||
-1224.63 -1163.27 85.7985,274 271,stand,10.014 -119.739 0,,
|
||||
-1381.48 -1406.09 87.6719,205 273 275,stand,20.5444 -124.919 0,,
|
||||
-1435.19 -1111.91 59.1028,274 276 277 278,stand,12.085 -97.4644 0,,
|
||||
-1439.03 -704.269 -21.483,275 131 130 277 286,stand,13.8153 130.974 0,,
|
||||
-1590.41 -857.873 5.34866,276 129 130 275,stand,7.59705 -35.3037 0,,
|
||||
-1618.68 -1122.17 16.2863,275 128,stand,11.7389 -101.43 0,,
|
||||
-842.564 -1545.92 151.153,168 272 167 280 366,stand,8.45947 -5.78344 0,,
|
||||
-370.621 -1445.61 127.975,279 169 155 203 366,stand,21.5826 144.262 0,,
|
||||
-911.263 -1318.37 183.125,284 204 282,stand,24.1754 8.04285 0,,
|
||||
-593.414 -1264.85 183.125,281 283,stand,20.5444 98.5153 0,,
|
||||
-651.025 -942.458 183.125,282 285,stand,26.933 -170.315 0,,
|
||||
-965.187 -1001.56 183.125,281 285,stand,18.6493 -80.3531 0,,
|
||||
-897.553 -987.833 183.125,284 283 367,stand,50.9381 100.081 0,,
|
||||
-1350.95 -432.636 44.0699,276 131 287 186 289,stand,17.3132 154.698 0,,
|
||||
-1060.45 -736.251 -23.8634,288 131 286,stand,10.5841 7.25027 0,,
|
||||
-623.704 -687.123 -24.7587,132 287 370,stand,12.4792 -0.863136 0,,
|
||||
-1287.05 -200.977 33.058,286 187 290,stand,8.68347 -21.0725 0,,
|
||||
-1114.52 -127.416 64.0639,291 289 292,stand,11.6168 25.7183 0,,
|
||||
-903.966 78.5553 -15.875,174 290 292 296 187 175,stand,11.1005 30.0359 0,,
|
||||
-1030.74 -273.733 83.8318,293 290 291 296,stand,14.2096 -81.1622 0,,
|
||||
-878.422 -539.737 93.8348,294 292,stand,20.5981 6.89321 0,,
|
||||
-494.284 -518.09 111.569,295 293,stand,23.7018 29.168 0,,
|
||||
-396.83 -293.345 82.1762,173 294 297,stand,27.8491 69.7405 0,,
|
||||
-888.01 -200.331 82.9546,297 291 292,stand,16.1047 -7.10337 0,,
|
||||
-576.625 -221.863 79.9994,295 296,stand,17.3132 -35.7667 0,,
|
||||
30.3286 714.169 106.125,73,crouch,2.29492 -129.87 0,,
|
||||
133.125 1073.88 120.816,60,crouch,7.2992 -47.8571 0,,
|
||||
667.186 -665.364 110.379,134 135 171 170,stand,15.072 174.534 0,,
|
||||
724.067 -999.109 159.24,303 302 147 148,stand,21.9769 -64.43 0,,
|
||||
818.98 -1080.54 173.256,301,crouch,13.0011 137.587 0,,
|
||||
656.869 -902.956 149.318,301,crouch,2.11914 -53.3778 0,,
|
||||
478.396 -1314.13 191.523,146 305 306,stand,23.7018 37.2759 0,,
|
||||
206.203 -1505.45 186.922,155 152 304,stand,11.4465 -179.583 0,,
|
||||
213.813 -1132.14 145.696,169 133 304,stand,15.7587 177.137 0,,
|
||||
723.12 -1548.93 123.592,146 151 308,stand,24.9103 -87.3859 0,,
|
||||
864.504 -1552.4 175.625,144 307 309 310,stand,24.3939 10.1726 0,,
|
||||
849.996 -1338.74 175.625,308,crouch,1.60278 -91.8739 0,,
|
||||
858.978 -1768.88 175.625,308,crouch,1.94885 91.8395 0,,
|
||||
614.875 -1781.13 107.18,153 312,stand,1.77307 -133.66 0,,
|
||||
616.875 -1994.87 123.071,153 314 311,crouch,-2.88513 144.502 0,,
|
||||
-4.87499 -2010.88 115.399,153 314,crouch,1.77307 33.3043 0,,
|
||||
279.367 -2001.87 114.915,313 153 312 315,climb,-85 -90.6709 0,,
|
||||
278.6 -2004.62 393.125,314 316,climb,85 90.7793 0,,
|
||||
261.605 -2116.91 357.125,321 315 317 354 353,stand,23.1854 175.72 0,,
|
||||
17.4663 -2119.35 357.125,316 318 326 352 353,stand,23.1854 -112.797 0,,
|
||||
11.5808 -2343.02 357.125,317 325 326 322,stand,24.0533 -10.5805 0,,
|
||||
326.371 -2311.95 357.125,320 326 327,stand,19.3896 -0.0446548 0,,
|
||||
580.466 -2304.6 357.125,319 321,stand,17.8351 84.9016 0,,
|
||||
580.352 -2112.82 357.125,316 320 354,stand,16.6266 168.293 0,,
|
||||
182.809 -2540.29 329.125,325 323 324 326 318,stand,23.5315 -90.8961 0,,
|
||||
172.746 -2662.37 329.125,322 324 325,stand,21.2903 -158.061 0,,
|
||||
23.4349 -2690.46 329.125,323 325 322,stand,19.3896 143.063 0,,
|
||||
-5.97036 -2552.14 329.125,322 324 323 318 326,stand,16.4563 85.0499 0,,
|
||||
151.749 -2334.49 357.125,319 318 317 322 325 327,stand,19.3896 -38.5847 0,,
|
||||
265.602 -2432.28 393.125,328 319 326,climb,85 -89.0119 0,,
|
||||
268.44 -2434.13 118.816,327 222,stand,-85 89.6917 0,,
|
||||
321.087 -2688.03 107.67,330 222 223,stand,17.9089 -31.3392 0,,
|
||||
360.144 -2881.55 103.963,220 329 331 219,stand,16.3544 -18.9082 0,,
|
||||
5.18399 -2866.9 97.5183,218 330,stand,4.61548 -98.8447 0,,
|
||||
130.875 -3516.88 90.0375,217,crouch,5.47791 129.935 0,,
|
||||
-92.2349 -3481.53 90.0375,334 217 216,stand,16.5302 91.076 0,,
|
||||
-95.6774 -3389.28 90.0375,335 333,stand,23.4351 97.1184 0,,
|
||||
-184.875 -3380.77 90.0375,334,crouch,3.2312 -6.13657 0,,
|
||||
130.874 -3639.22 90.0375,216,crouch,0.98999 177.407 0,,
|
||||
-320.875 -3687.88 90.0375,215,crouch,1.67664 46.7022 0,,
|
||||
-619.875 -3687.88 90.0375,339 211 212,crouch,-0.218506 55.8483 0,,
|
||||
-395.125 -3687.88 90.0375,338 212 211,crouch,-1.427 115.762 0,,
|
||||
-572.285 -3411.59 90.0375,211 212,stand,13.9374 -79.5197 0,,
|
||||
-595.405 -3272.85 90.7742,213,stand,4.4397 47.5646 0,,
|
||||
-227.918 -2316.18 116.327,161 160 343,stand,34.8279 -178.798 0,,
|
||||
-281.875 -2314.36 120.199,342 344,climb,-85 179.126 0,,
|
||||
-282.56 -2315.73 330.125,343 345 349,climb,85 0.239265 0,,
|
||||
-456.925 -2319.62 310.125,349 347 348 344,climb,12.4792 178.075 0,,
|
||||
-940.231 -2316.62 310.125,351 347 348 356,stand,19.0381 61.8726 0,,
|
||||
-643.039 -2314.73 310.125,346 348 345 349,stand,14.2041 39.5978 0,,
|
||||
-633.173 -2194.41 310.125,347 349 345 351 346,stand,17.1429 18.1909 0,,
|
||||
-443.819 -2199.88 310.125,348 350 345 347 344,stand,20.4224 25.6122 0,,
|
||||
-363.692 -2058.93 310.125,349,prone,4.71193 77.9346 0,,
|
||||
-864.886 -2059.76 310.125,346 348 356,prone,12.4792 75.3473 0,,
|
||||
-23.4476 -2085.39 365.125,317,prone,8.50769 87.262 0,,
|
||||
145.382 -2088.02 365.125,316 317,prone,8.68347 91.2335 0,,
|
||||
491.858 -2084.91 365.125,321 316,prone,10.0623 91.2335 0,,
|
||||
-1052.67 -2090.21 338.125,356 357,climb,85 -178.975 0,,
|
||||
-989.472 -2100.82 310.125,346 351 355,stand,32.1667 -50.0012 0,,
|
||||
-1064.13 -2091.22 132.03,355 166 165,climb,-85 -0.46386 0,,
|
||||
-905.482 -2485.03 114.412,359 165 164 502,stand,13.2452 -4.342 0,,
|
||||
-663.208 -2787.67 91.601,213 358 501,stand,14.9756 -72.3693 0,,
|
||||
-1104.88 -3696.88 103.788,210,crouch,4.78575 64.5587 0,,
|
||||
-1207.23 -2511.25 121.259,362 165 164,stand,14.4537 100.297 0,,
|
||||
-1328.88 -2118.13 118.306,361,crouch,4.96153 -73.9239 0,,
|
||||
-1432.28 -2448.99 120.149,364 163,stand,12.3828 88.3771 0,,
|
||||
-1411.47 -1995.94 100.515,205 166 363 207,stand,6.85667 12.923 0,,
|
||||
-757.213 -1351.61 136.028,203 204 366,stand,31.0321 7.75394 0,,
|
||||
-742.986 -1458.59 121.32,279 203 280 365,stand,32.757 -80.6475 0,,
|
||||
-911.705 -929.242 211.125,285 368,climb,85 100.643 0,,
|
||||
-914.693 -921.746 -18.6455,367 369,climb,-85 -81.1859 0,,
|
||||
-920.037 -851.262 -25.8504,131 368 132,stand,16.6949 -19.7174 0,,
|
||||
-141.635 -525.87 0.124999,170 288 133 371,stand,8.06519 28.6225 0,,
|
||||
73.9256 -297.63 -7.875,173 170 370,stand,8.23547 128.944 0,,
|
||||
304.927 43.578 73.392,61 373,stand,5.99426 119.974 0,,
|
||||
426.046 -173.044 -15.875,172 170 372 376 377,stand,12.8992 -123.483 0,,
|
||||
777.187 19.5491 90.9499,375 376,stand,32.2351 169.517 0,,
|
||||
799.819 -77.3293 108.032,374,crouch,10.9985 125.319 0,,
|
||||
638.076 28.147 23.4824,374 172 373 377,stand,42.4249 -178.047 0,,
|
||||
755.521 -133.424 -15.8954,378 376 373,stand,6.85669 5.66105 0,,
|
||||
1023.22 -98.679 -15.9706,53 57 377,stand,12.7289 -60.6414 0,,
|
||||
1429.31 165.913 100.596,196 52 381,stand,6.16455 115.821 0,,
|
||||
2000.24 356.056 112.661,381 51 199 198,stand,10.6525 171.071 0,,
|
||||
1663.35 280.297 76.4959,379 380 52 51,stand,12.5531 -160.782 0,,
|
||||
1427.81 666.591 100.572,198 196 195,stand,10.1361 177.641 0,,
|
||||
3060.76 -248.644 72.4759,241 242 384 239 49,stand,8.23547 -179.233 0,,
|
||||
2757.21 -468.027 163.256,383 242 239 238,stand,19.1174 -26.43 0,,
|
||||
2795.8 -869.91 80.7432,239 238 243 253,stand,5.30212 -40.3991 0,,
|
||||
3332.08 -1372.64 190.899,252 253,crouch,8.06519 139.683 0,,
|
||||
2824.88 -1520.88 52.544,243,crouch,3.57727 140.381 0,,
|
||||
2251.39 -926.247 170.754,389 237 236 238 243,stand,4.95605 -99.0881 0,,
|
||||
2264 -1481.15 134.946,254 388 243 244,stand,22.9132 -90.2826 0,,
|
||||
2173.23 -1904.59 76.007,235 245 244,stand,5.12634 139.892 0,,
|
||||
2304.23 -2793.39 128.88,246 248,stand,20.3259 157.981 0,,
|
||||
2072.55 -2958.14 113.808,233 231 248,stand,19.8041 139.887 0,,
|
||||
2001.4 -3423.99 150.398,247,crouch,0.814209 67.3822 0,,
|
||||
1912.9 -3806.88 140.121,395 232,crouch,7.02698 131.279 0,,
|
||||
1754.13 -3806.88 125.061,232 394,crouch,3.2312 82.2412 0,,
|
||||
1646.13 -3710.88 124.099,232,crouch,1.33057 62.2132 0,,
|
||||
1288.18 -3046.98 146.064,398 230 229 399,stand,10.1361 144.583 0,,
|
||||
1556.68 -2739.03 138.68,139 138 397 403 233,stand,15.3162 83.9936 0,,
|
||||
1192.74 -3290.22 129.125,397 230 228,stand,16.3544 -155.338 0,,
|
||||
1039.88 -3710.88 129.125,227,crouch,1.16028 127.483 0,,
|
||||
623.125 -3710.88 118.856,226,crouch,-1.60278 72.2327 0,,
|
||||
735.362 -3041.86 119.753,229 219 220,stand,5.47241 39.4275 0,,
|
||||
1628.41 -2981.61 95.3448,231 398 233,stand,15.8325 -49.1662 0,,
|
||||
2966.48 2535.96 122.92,405 39 38,stand,37.937 8.52848 0,,
|
||||
3329.76 2575.53 -15.875,404 44 43,stand,23.0835 -111.277 0,,
|
||||
89.2427 997.675 106.125,408,crouch,1.72485 -135.771 0,,
|
||||
58.8159 811.244 106.125,408,crouch,5.18005 159.822 0,,
|
||||
-152.888 820.019 106.125,72 407 406 73,stand,10.3601 -125.932 0,,
|
||||
-207.435 749.875 298.125,70 410,crouch,3.10913 -11.29 0,,
|
||||
-129.675 523.887 298.125,411 409 414 424 423,stand,23.3075 -40.1237 0,,
|
||||
96.7843 521.723 298.125,412 69 410 423 422 421,stand,15.3699 58.2974 0,,
|
||||
298.042 501.856 298.125,413 411 415 421 422,stand,16.7487 64.3398 0,,
|
||||
314.2 690.876 298.125,69 412 416,stand,20.2039 132.027 0,,
|
||||
-210.872 453.125 298.125,410,crouch,5.69641 40.1644 0,,
|
||||
359.875 415.125 298.125,412 421,crouch,3.62549 134.268 0,,
|
||||
347.875 800.875 298.125,413,crouch,0.516357 -108.146 0,,
|
||||
133.125 839.125 298.125,68,crouch,5.18005 51.733 0,,
|
||||
133.125 1231.88 298.125,68,crouch,8.1134 -27.0005 0,,
|
||||
390.374 1094.24 298.125,68,crouch,7.08069 4.94226 0,,
|
||||
390.847 904.117 298.125,68,crouch,13.4692 3.21741 0,,
|
||||
292.428 415.125 298.125,422 415 412 411,crouch,11.5686 -91.3969 0,,
|
||||
202.435 415.125 298.125,411 421 412,crouch,13.4692 -90.7047 0,,
|
||||
-20.5166 415.125 298.125,424 410 411,crouch,7.08069 -87.6011 0,,
|
||||
-111.838 415.497 298.125,423 410,crouch,10.5304 -88.2877 0,,
|
||||
374.867 1376.26 298.125,426 67,crouch,15.3699 3.73926 0,,
|
||||
374.776 1466.38 298.125,427 425,crouch,16.4026 5.12353 0,,
|
||||
304.65 1528.62 298.125,426 429,crouch,17.265 93.0087 0,,
|
||||
162.31 1427.07 298.125,429,prone,5.18005 2.53076 0,,
|
||||
315.003 1458.55 298.125,428 67 427,stand,28.3173 -123.686 0,,
|
||||
352.875 1503.88 106.125,64,crouch,2.59277 -102.109 0,,
|
||||
218.626 1123.13 106.125,432,crouch,3.62549 52.7712 0,,
|
||||
322.406 1266.18 106.125,63 431 64,stand,10.014 42.2354 0,,
|
||||
-502.257 1945.31 113.989,178 79 80,stand,11.5686 146.012 0,,
|
||||
-395.129 2037.13 138.125,435,crouch,4.48792 146.172 0,,
|
||||
-465.85 2065.59 138.125,178 434 436,stand,10.1898 179.674 0,,
|
||||
-486.824 2242.82 138.125,179 435 438,stand,12.7771 176.746 0,,
|
||||
-689.847 2541.9 138.125,438 107 179,stand,17.265 -7.13721 0,,
|
||||
-508.815 2543.97 138.125,444 436 437,stand,21.0663 38.7911 0,,
|
||||
-497.339 3056.99 138.125,440 108 441 444,stand,15.8862 88.5208 0,,
|
||||
-395.125 3348.88 138.125,441 439 108,crouch,0.862427 -120.055 0,,
|
||||
-628.875 3348.88 138.125,440 108 439,crouch,3.27942 -65.6614 0,,
|
||||
-1086.62 3020.3 138.125,108,stand,7.94312 -1.4408 0,,
|
||||
-841.423 3145.88 138.125,108,crouch,7.76733 -63.953 0,,
|
||||
-486.928 2684.9 138.125,438 439 107 106,stand,22.7911 115.443 0,,
|
||||
-856.422 2420.74 129.075,446 181 447,stand,20.5499 161.201 0,,
|
||||
-830.464 2702.82 147.446,109 107 445 454,stand,30.2179 0.965209 0,,
|
||||
-815.899 1992.95 117.819,178 445 181 177 180,stand,10.8765 -4.91248 0,,
|
||||
-1736.24 2715.17 153.443,449 110 109 181,stand,13.8153 42.5649 0,,
|
||||
-1677.02 3259.67 192.597,115 111 448,stand,13.1232 74.678 0,,
|
||||
-1107.13 4447.38 140.628,114,crouch,0 -125.086 0,,
|
||||
-1914.85 4126.86 153.705,114,crouch,0 -56.8833 0,,
|
||||
-1863.07 2151.17 108.291,117 181 182,stand,12.9474 173.418 0,,
|
||||
-2605.19 2504.89 88.9016,117,crouch,5.69641 -10.1255 0,,
|
||||
-791.125 2948.88 155.527,446 109 110,crouch,6.04248 -125.982 0,,
|
||||
-440.236 3556.85 241.125,113,prone,11.0522 -28.2584 0,,
|
||||
-586.494 3565.7 241.125,113,prone,8.63525 -173.3 0,,
|
||||
-254.276 3411.49 134.024,113 103 106 458,stand,-5.87219 167.71 0,,
|
||||
-388.871 3698.88 139.342,457,crouch,4.14185 -56.9327 0,,
|
||||
164.875 3698.88 129.653,103,crouch,3.80127 -123.581 0,,
|
||||
565.877 2428.16 320.125,461,crouch,8.63525 -90.9519 0,,
|
||||
563.558 2541.94 320.125,460 96 95 462,stand,22.2748 159.058 0,,
|
||||
848.674 2547.63 320.125,95 461,crouch,10.014 -95.275 0,,
|
||||
929.528 2856.91 176.125,101 89 464,stand,16.9189 -21.9028 0,,
|
||||
929.768 2589.1 176.125,463 90 465 466,stand,22.2748 -167.807 0,,
|
||||
1075.69 2354.09 176.125,94 464,stand,11.0522 -136.496 0,,
|
||||
817.056 2365.84 176.125,464 94 93,stand,9.3219 -86.0852 0,,
|
||||
923.03 1959.41 176.125,94,prone,1.2085 78.9844 0,,
|
||||
995.125 4484.77 164.125,4,crouch,1.2085 -78.4827 0,,
|
||||
1817.5 3868.43 214.93,0 470,stand,18.1274 -88.5077 0,,
|
||||
1819.81 3593.13 168.368,2 9 469,stand,13.8153 -22.381 0,,
|
||||
1924.24 3236.86 414.125,472 473 25,stand,16.2323 59.621 0,,
|
||||
2067.36 3284.45 414.125,473 471,stand,18.6493 -67.2876 0,,
|
||||
2088.25 3186.05 414.125,474 472 471,stand,17.9572 -85.2447 0,,
|
||||
2054.58 3068.16 414.125,475 473,stand,23.8293 91.2122 0,,
|
||||
2109.8 3039.74 413.125,474,crouch,20.8905 -69.0234 0,,
|
||||
1703.13 3364.88 278.125,477 19,crouch,4.83398 -38.2837 0,,
|
||||
1719.43 3247.26 278.125,476 19,crouch,12.431 -160.182 0,,
|
||||
1843.99 2772.29 278.125,26 479,stand,36.6064 -54.0161 0,,
|
||||
1840.9 2291.13 278.125,478 481,stand,15.0238 -88.3758 0,,
|
||||
1957.8 2067.13 278.125,481,crouch,14.848 56.6656 0,,
|
||||
1839.72 2171.67 278.125,480 479,crouch,8.98132 -160.891 0,,
|
||||
2659.9 1567.51 128.125,485 483 486 31,stand,20.7202 178.389 0,,
|
||||
2490.15 1567.94 128.125,482 484 505 506,stand,20.7202 174.071 0,,
|
||||
2474.9 1711.73 128.125,483 485 30 506,stand,20.0281 24.5471 0,,
|
||||
2644.83 1727.24 128.125,31 482 484,stand,20.5499 -0.314941 0,,
|
||||
2771.66 1428.67 128.125,487 482,stand,17.0947 -88.2001 0,,
|
||||
2770.16 1242.81 128.125,191 488 486,stand,19.3414 -152.437 0,,
|
||||
2801.88 1142.62 128.125,487,crouch,3.62549 131.592 0,,
|
||||
2904.88 1667.13 128.125,31,crouch,8.80554 138.316 0,,
|
||||
1926.63 1369.13 132.527,190,crouch,3.62549 40.2411 0,,
|
||||
1926.63 1142.62 128.064,190,crouch,4.48792 23.6627 0,,
|
||||
1389.68 1465.83 118.347,493 84 85,stand,8.98132 -89.7491 0,,
|
||||
1329.9 1162.37 117.002,83 194 195 492,stand,14.848 158.877 0,,
|
||||
1016.87 1629.29 110.07,84 83,stand,7.42676 -79.411 0,,
|
||||
848.091 1154.69 111.584,83 496,stand,15.8862 65.7898 0,,
|
||||
798.121 1045.47 137.145,495 498 497,stand,15.0238 -92.5342 0,,
|
||||
913.38 997.818 129.231,496,crouch,4.48792 143.837 0,,
|
||||
678.224 1045.79 140.332,496,crouch,5.69641 5.88135 0,,
|
||||
-13.125 1231.13 108.93,78,crouch,4.48792 148.061 0,,
|
||||
-417.836 -2654.46 104.548,501 160 503 213 218,stand,23.9996 -176.066 0,,
|
||||
-628.625 -2668.92 100.064,502 500 359 213,stand,31.5967 12.1294 0,,
|
||||
-619.815 -2530.12 109.094,503 501 358,stand,28.3173 14.2003 0,,
|
||||
-450.937 -2515.62 109.236,160 502 500 159,stand,15.8862 -40.7038 0,,
|
||||
2277.62 1462.76 128.125,505 506 190,stand,19.1656 22.6208 0,,
|
||||
2443.18 1478.67 128.125,483 504 508,stand,18.8196 138.994 0,,
|
||||
2269.71 1628.38 128.125,484 504 507 483,stand,16.0565 -1.38428 0,,
|
||||
2146.28 1733.48 128.125,30 85 506 510,stand,14.3317 -172.661 0,,
|
||||
2421.03 1268.37 128.125,190 191 505,stand,18.6493 -35.0519 0,,
|
||||
1757.93 1802.82 123.408,86 510,stand,10.5304 91.6809 0,,
|
||||
1908.82 1736.78 128.125,509 85 507,stand,18.1274 121.366 0,,
|
||||
|
@@ -0,0 +1,448 @@
|
||||
447
|
||||
-3572.3 1041.86 -280.157,1 6 234,stand,,,
|
||||
-3409.63 499.68 -286.281,0 2 3 385,stand,,,
|
||||
-3197.38 -55.5249 -311.066,1 40 3,stand,,,
|
||||
-3077.12 300.949 -308.931,1 4 2,stand,,,
|
||||
-2870.47 335.084 -306.875,3 5 40 369,stand,,,
|
||||
-2851.7 658.72 -306.875,4 41 368 370,stand,,,
|
||||
-3026.3 1228.49 -306.096,0 51 7 368 386 387,stand,,,
|
||||
-3548.84 1637.48 -306.871,8 52 6 234 390,stand,,,
|
||||
-3892 2037.18 -339.122,7 9 390,stand,,,
|
||||
-4026.34 2617.38 -335.687,8 10,stand,,,
|
||||
-4368.66 3018.89 -307.732,9 11 248 272,stand,,,
|
||||
-4422.65 3570.46 -296.75,10 228 271 270 272,stand,,,
|
||||
-2383.98 3700.72 -314.977,61 210 226 273,stand,,,
|
||||
-1813.04 3721.01 -294.095,14 210 209 275 276,stand,,,
|
||||
-1366.33 3818.54 -167.664,13 15 276,stand,,,
|
||||
-905.812 3852.21 -28.47,14 69 208 278,stand,,,
|
||||
-394.305 3715.57 151.519,17 142 145 146 278,stand,,,
|
||||
-86.5852 4097.95 139.453,16 18 279 291,stand,,,
|
||||
488.401 4137.98 145.831,17 19 72 291 292,stand,,,
|
||||
853.023 4103.21 64.9354,18 230 232,stand,,,
|
||||
1765.02 3664.91 25.4692,21 231 293 294,stand,,,
|
||||
1526.74 3325.59 128.886,20 76 79 220 293 294,stand,,,
|
||||
966.572 1878.98 141.555,81 213 214 218 221 302 303 306,stand,,,
|
||||
1079.12 1374.37 147.557,24 213 214 306 310,stand,,,
|
||||
1397.51 1041.36 80.6408,23 159 158,stand,,,
|
||||
1717.06 95.3206 60.7526,26 127 157 323 325,stand,,,
|
||||
1589.05 -478.661 77.9703,25 27 97 320 322,stand,,,
|
||||
1220.83 -920.017 110.491,26 28 97 320,stand,,,
|
||||
649.029 -886.866 82.6351,27 29 96 89,stand,,,
|
||||
256.168 -848.426 81.962,28 30 89,stand,,,
|
||||
-296.189 -756.159 57.6662,29 31,stand,,,
|
||||
-727.541 -678.236 43.125,30 32 93 338 339,stand,,,
|
||||
-1086.67 -556.764 -5.07388,31 359,stand,,,
|
||||
-1056.51 -110.924 -70.5436,353 352 359 358 357 351,stand,,,
|
||||
-1102.98 444.951 -150.117,35 352 356 355,stand,,,
|
||||
-1173.36 668.63 -259.928,34 192 360,stand,,,
|
||||
-1716.4 745.028 -312.904,112 198 199 192 194 38,stand,,,
|
||||
-2120.24 410.583 -306.769,38 49 198 199,stand,,,
|
||||
-2083.65 161.225 -307.322,37 39 36,stand,,,
|
||||
-2288.45 108.713 -307.559,38 40 49,stand,,,
|
||||
-2759.06 -42.4535 -311.296,39 2 4 384,stand,,,
|
||||
-2533.73 844.096 -306.875,5 48 199 201 367,stand,,,
|
||||
-2755.99 1160.79 -306.875,43 367,stand,,,
|
||||
-2550.6 1203.86 -171.875,42 200 372,stand,,,
|
||||
-2615.65 1035.13 -171.875,200 373 374 377,stand,,,
|
||||
-2440.11 572.099 -171.875,377 381 383,stand,,,
|
||||
-2354.16 211.249 -171.875,47 381,stand,,,
|
||||
-2510.49 181.262 -244.875,46 48 382,stand,,,
|
||||
-2536.83 307.599 -306.875,47 41 49,stand,,,
|
||||
-2341.31 337.694 -306.875,48 37 39 364 365,stand,,,
|
||||
-2344.8 1377.55 -292.895,51 186 187 199,stand,,,
|
||||
-2674.33 1417.28 -308.093,50 6 185 186 52 387,stand,,,
|
||||
-3030.78 1666.77 -311.548,7 53 185 51 387 388 389,stand,,,
|
||||
-2863.1 2155.93 -305.766,52 54 60 185 394,stand,,,
|
||||
-3350.65 2150.11 -326.972,53 253 388 390,stand,,,
|
||||
-3412.52 2547.15 -307.075,253 252 258 259,stand,,,
|
||||
-3201.19 3252.71 -307.075,57 224 227 266,stand,,,
|
||||
-3034.17 3239.46 -307.075,56 58 59 261 262,stand,,,
|
||||
-2837.49 3521.78 -307.075,57 225 264 262,stand,,,
|
||||
-3001.04 2977.24 -319.12,57 60 61 240 393,stand,,,
|
||||
-2897.2 2479.47 -312.678,59 53 241,stand,,,
|
||||
-2455.86 3135.03 -310.464,59 12 62 240,stand,,,
|
||||
-1942.89 3163.8 -283.328,61 63 240,stand,,,
|
||||
-1450.59 3294.85 -170.917,62 64 209,stand,,,
|
||||
-1073.79 3067.32 -122.123,63 69 153 184 211,stand,,,
|
||||
-1045.17 2725.92 -123.875,66 148 403 404,stand,,,
|
||||
-983.274 2561.71 -123.875,65 67 154 410,stand,,,
|
||||
-744.236 2728.4 -116.189,66 113 68 136 184,stand,,,
|
||||
-666.605 2999.18 -77.7266,70 67 184,stand,,,
|
||||
-788.394 3428.97 41.5158,64 15 144 208,stand,,,
|
||||
-535.504 2868.87 5.125,68 143,stand,,,
|
||||
449.299 3501.26 149.511,72 73 80 142 215 287 290,stand,,,
|
||||
608.078 3891.35 178.567,71 18 289 290 80 73 292,stand,,,
|
||||
883.332 3217.28 135.627,71 74 80 216 72,stand,,,
|
||||
1028.7 3173.58 138.477,73 75 79 216 297 300,stand,,,
|
||||
1087.14 3436.08 146.125,74 76 78 296,stand,,,
|
||||
1323 3398.4 146.125,75 77 21 296,stand,,,
|
||||
1388.43 3834.28 146.125,76,stand,,,
|
||||
1141.86 3878.7 146.125,75 233,stand,,,
|
||||
1367.57 3130.41 144.301,21 74 220 300,stand,,,
|
||||
943.688 3644.17 146.125,73 71 233 72 292,stand,,,
|
||||
534.768 1647.28 119.846,22 82 137 170 196 214,stand,,,
|
||||
424.602 1409.94 190.125,81 123 196 414,stand,,,
|
||||
304.563 1051.07 190.125,105 106 168 415 416 419 423,stand,,,
|
||||
-162.306 407.62 138.706,85 167 174 177 332,stand,,,
|
||||
-93.5254 211.718 141.125,84 86 118,stand,,,
|
||||
-126.94 -78.3264 116.456,85 87 327 328 329 332,stand,,,
|
||||
125.966 -131.805 117.988,88 171 326 86 329 328,stand,,,
|
||||
455.085 -283.448 89.7639,87 89 98 160 96 326 329,stand,,,
|
||||
297.017 -661.968 75.2611,88 29 90 96 28 329,stand,,,
|
||||
89.4384 -610.712 75.625,89 239 236 342,stand,,,
|
||||
-474.335 -428.018 75.625,92 237 238 340 341,stand,,,
|
||||
-631.616 -372.199 43.625,91 93 334 333 335,stand,,,
|
||||
-662.354 -490.501 43.625,92 31 94 337,stand,,,
|
||||
-894.394 -438.041 -76.875,93 95 343 344,stand,,,
|
||||
-794.162 -181.335 -76.875,94 346 345 344 353,stand,,,
|
||||
882.158 -574.439 73.717,89 28 97 98 88,stand,,,
|
||||
1312.84 -641.019 96.1126,96 26 317 27 320,stand,,,
|
||||
980.984 -268.688 57.4901,96 88 99 317 316 319 325,stand,,,
|
||||
1058.73 229.394 56.7352,98 157 158 160 315 316 317 319,stand,,,
|
||||
837.024 691.546 46.125,101 156 163,stand,,,
|
||||
668.102 743.122 38.125,100 102 103 162 440,stand,,,
|
||||
719.755 942.418 38.125,101 442 441 443,stand,,,
|
||||
440.573 632.065 38.125,101 161,stand,,,
|
||||
776.557 423.927 190.125,163 165,stand,,,
|
||||
659.234 925.064 190.125,83 126 166 426 437,stand,,,
|
||||
393.149 943.145 190.125,83 169 415,stand,,,
|
||||
257.61 612.165 318.125,108 109 169 181 429,stand,,,
|
||||
193.196 816.583 318.125,107 427 428,stand,,,
|
||||
244.375 481.741 318.125,107 110 111,stand,,,
|
||||
12.6075 564.653 318.125,109 176,stand,,,
|
||||
460.882 407.716 316.125,109 180 430 431 432,stand,,,
|
||||
-1687.47 1042.33 -334.871,36 193 203 202 192,stand,,,
|
||||
-592.348 2242.99 -106.455,67 114 207 212,stand,,,
|
||||
-487.486 1876.15 -122.095,113 138 197 411,stand,,,
|
||||
-915.703 1610 -389.383,116 195 197,stand,,,
|
||||
-803.222 1357.49 -316.096,188 115 195 361,stand,,,
|
||||
-626.951 506.101 31.1823,174 189 331 330,stand,,,
|
||||
275.643 129.628 149.125,85 171 235 326,stand,,,
|
||||
813.18 700.257 318.125,178,stand,,,
|
||||
663.604 1041.7 319.125,183,stand,,,
|
||||
857.715 854.53 319.125,183,stand,,,
|
||||
20.1549 1362.37 143.368,196 411 412 413,stand,,,
|
||||
646.048 1356.95 190.125,82 124 308,stand,,,
|
||||
594.942 1188.53 190.125,123 307 309,stand,,,
|
||||
951.636 1047.95 190.125,126 309,stand,,,
|
||||
873.109 825.168 190.125,125 105,stand,,,
|
||||
1787.69 427.881 69.5763,25 324 158,stand,,,
|
||||
-992.906 2487.88 6.125,405 407 406 129 409,stand,15.8191 -121.104 0,,
|
||||
-949.301 2680.4 6.125,130 128,crouch,18.0713 113.839 0,,
|
||||
-1049.14 2856.16 6.125,129 408,crouch,9.99084 -113.941 0,,
|
||||
-3020.93 3318.03 -139.075,132 265 135 268,stand,14.0833 33.809 0,,
|
||||
-2695.5 3345.24 -134.744,131 134 135 267,stand,13.5724 9.04583 0,,
|
||||
-2620.42 3692.2 -299.108,134 226,climb,-85 -80.2236 0,,
|
||||
-2616.54 3696.47 -147.579,133 132,climb,56.6357 -82.4758 0,,
|
||||
-2825.15 3495.13 -139.075,132 131,stand,14.7778 133.23 0,,
|
||||
-429.464 2723.83 -51.5951,67 141 212,stand,20.5444 155.462 0,,
|
||||
212.187 1865.31 58.5441,81 138 139,stand,35.744 149.584 0,,
|
||||
-17.3177 1893.19 -28.9776,137 114 413 212,stand,30.564 174.622 0,,
|
||||
59.2267 2074.14 -12.7304,137 212,stand,30.9045 146.14 0,,
|
||||
204.867 2164.53 -30.1062,170 212,stand,26.2463 152.891 0,,
|
||||
-170.528 2719.28 -24.7308,136 212,stand,5.69641 175.512 0,,
|
||||
-103.323 3330.39 132.21,71 16 143 146 284 286 288,stand,20.2039 -107.65 0,,
|
||||
-318.887 2862.74 124.399,70 142 284 286,stand,42.4731 178.462 0,,
|
||||
-576.724 3443.36 150.125,69 145 281 282,stand,25.2081 39.7925 0,,
|
||||
-492.4 3576.93 150.125,144 146 16 281,stand,15.7104 -51.8829 0,,
|
||||
-360.161 3393.13 150.125,145 142 16 284,stand,18.3032 -54.4756 0,,
|
||||
-1204.42 2546.45 -123.875,148 149 152,stand,27.4548 -155.116 0,,
|
||||
-1135.3 2715.78 -123.875,65 147 152 404,stand,37.4689 -39.2651 0,,
|
||||
-1481.94 2435.57 -123.875,147 152 400 401 402,stand,23.1372 -148.052 0,,
|
||||
-1716.3 2294.77 -157.691,151 206 398 400 205,stand,27.6733 28.7568 0,,
|
||||
-1890.9 2025.33 -194.793,150 204 242 395 396,stand,37.0007 -126.639 0,,
|
||||
-1323.65 2754.94 -123.875,149 147 148 153,stand,28.8818 -44.2803 0,,
|
||||
-1252.4 2893.34 -123.287,152 64,stand,22.4933 -132.319 0,,
|
||||
-920.04 2307.04 -128.52,66 207,stand,24.2236 102.167 0,,
|
||||
936.516 1052.93 69.4373,156 159 312,stand,19.0436 -30.9649 0,,
|
||||
880.508 826.927 46.1596,100 155 158 159 313,stand,32.1613 -104.343 0,,
|
||||
1311.27 390.249 56.3201,99 25 158,stand,20.5927 177.446 0,,
|
||||
1251.02 682.607 48.7285,99 157 156 24 159 314 127,stand,26.8109 -126.09 0,,
|
||||
1072.02 883.228 47.5929,156 24 155 158 311 314,stand,14.5502 49.1749 0,,
|
||||
759.178 246.529 60.7658,88 99 319,stand,11.9629 -115.345 0,,
|
||||
561.205 509.76 38.125,162 103 438 439,stand,20.5927 -11.9091 0,,
|
||||
705.765 542.063 38.125,161 101 438,stand,27.3273 155.577 0,,
|
||||
806.781 563.862 124.497,104 100,stand,27.6733 -108.072 0,,
|
||||
472.001 656.267 190.125,166 235 436,stand,28.7115 68.8953 0,,
|
||||
629.82 565.832 190.125,104 166 235,stand,31.1285 -47.3016 0,,
|
||||
640.869 773.815 190.125,165 164 105 436,stand,31.1285 -99.4427 0,,
|
||||
183.013 474.979 182.125,84 168 235 434,stand,23.7018 78.5633 0,,
|
||||
238.19 761.674 190.125,167 83 423 419 433,stand,23.5315 76.9977 0,,
|
||||
348.932 820.785 259.101,107 106,stand,18.5217 -104.282 0,,
|
||||
436.637 1976.69 68.9292,140 81,stand,30.2661 136.752 0,,
|
||||
194.701 82.0221 149.125,87 118,stand,34.5782 -102.892 0,,
|
||||
-230.914 638.934 236.757,173 175,climb,12.9956 -13.98 0,,
|
||||
-186.651 631.314 276.669,172 176,stand,26.2946 2.41708 0,,
|
||||
-302.212 436.144 135.223,84 117 175 330 331,stand,8.85376 76.1463 0,,
|
||||
-243.129 640.771 236.411,174 172,stand,69.4598 -10.1898 0,,
|
||||
-30.2238 612.657 285.981,173 110,climb,17.3132 -19.0063 0,,
|
||||
-86.1974 580.06 148.051,84,stand,17.1429 -114.477 0,,
|
||||
728.77 723.778 318.125,119 182 183,stand,34.5782 -113.956 0,,
|
||||
472.606 729.946 318.125,181 183,stand,59.7919 73.8886 0,,
|
||||
481.641 478.375 318.125,111 181 182,stand,30.4364 -106.529 0,,
|
||||
444.642 568.836 318.125,180 179 182 107,stand,18.8678 86.847 0,,
|
||||
593.597 531.34 318.125,178 180 181,stand,28.0194 162.301 0,,
|
||||
625.876 925.924 318.125,179 178 120 121,stand,26.2946 41.7866 0,,
|
||||
-891.315 3031.62 -113.316,67 64 68,stand,32.1613 169.882 0,,
|
||||
-2671.2 1682.4 -321.224,53 52 51 186 394,stand,21.8011 -1.22491 0,,
|
||||
-2337.01 1649.14 -298.882,50 51 185 242,stand,27.3273 -95.147 0,,
|
||||
-2093.33 1403.61 -267.293,50 202,stand,16.6211 -4.48236 0,,
|
||||
-649.251 1105.55 -158.3,189 116 190,stand,59.0997 120.861 0,,
|
||||
-615.778 852.271 -14.5345,117 188,stand,15.9344 -89.7857 0,,
|
||||
-532.769 1307.32 -89.4927,188 191,stand,-3.40698 48.3509 0,,
|
||||
-421.882 1418.75 -8.89233,190 411,stand,84.6539 175.43 0,,
|
||||
-1331.51 685.425 -281.503,194 36 35 112,stand,52.3651 93.4113 0,,
|
||||
-1444.58 1172.79 -398.214,112 194 195 361 363,stand,8.3374 -140.713 0,,
|
||||
-1267.54 908.726 -316.282,192 193 360 36 361,stand,25.4321 -93.3892 0,,
|
||||
-984.354 1457.58 -447.961,115 116 193 361 362,stand,24.9103 28.8502 0,,
|
||||
221.007 1497.76 131.385,81 122 82,stand,23.8776 31.4375 0,,
|
||||
-678.581 1807.65 -231.455,114 115,stand,38.8959 -142.624 0,,
|
||||
-2007.71 634.005 -334.23,37 36,stand,15.9344 -150.04 0,,
|
||||
-2209.81 892.908 -281.567,41 36 37 50 203,stand,37.0007 -169.019 0,,
|
||||
-2530.71 1134.64 -171.875,44 43 373,stand,30.4364 -85.8306 0,,
|
||||
-2564.04 1107 -306.875,41 366 367,stand,26.4648 -88.9398 0,,
|
||||
-1845.68 1430.3 -244.754,203 187 112 204 206 363,stand,31.6449 -167.305 0,,
|
||||
-2029.44 1083.61 -263.765,199 202 112,stand,18.3514 57.3322 0,,
|
||||
-1939.78 1626.96 -245.3,202 151 206 242,stand,21.6309 -178.698 0,,
|
||||
-1059.81 1962.27 -181.656,206 207 150,stand,16.2805 37.1613 0,,
|
||||
-1470.91 1706.35 -248.32,205 202 204 150 363,stand,14.726 34.0632 0,,
|
||||
-890.218 2212.28 -134.681,154 113 205,stand,19.906 10.5799 0,,
|
||||
-1020.91 3611.56 -56.6117,15 209 211 69,stand,10.7062 -73.1304 0,,
|
||||
-1300.7 3464.62 -166.626,208 63 13 211,stand,9.3219 39.463 0,,
|
||||
-2210.98 3677.14 -313.592,13 12 274,stand,40.0562 8.03658 0,,
|
||||
-1053.53 3298.38 -92.4759,208 64 209,stand,38.3313 -94.4824 0,,
|
||||
-154.018 2295.03 -54.2463,136 139 140 141 113 138,stand,23.0096 124.656 0,,
|
||||
1141 1710.26 147.14,22 23 302 306,stand,74.9377 -88.6596 0,,
|
||||
788.794 1519.66 147.355,81 23 22 306 308,stand,85 154.457 0,,
|
||||
582.344 3225.05 146.46,71 216,stand,18.3514 -68.8458 0,,
|
||||
728.928 2782.4 135.167,73 215 217 74 297,stand,31.6449 93.8178 0,,
|
||||
804.75 2336.76 176.237,218 216 298,stand,35.9625 -78.673 0,,
|
||||
919.569 2138.6 148.702,217 22 298 299 221 303,stand,25.2563 -71.076 0,,
|
||||
1644.13 2744.91 148.576,220 221 295 300 301,stand,26.8109 -133.753 0,,
|
||||
1477.85 3090.18 149.555,79 21 219 295,stand,81.3745 -15.4852 0,,
|
||||
1205.7 2300.44 179.66,22 219 299 218 301,stand,24.2236 -124.766 0,,
|
||||
-4041.69 3281.24 -307.075,223 246 247 248 256,stand,20.3741 11.2153 0,,
|
||||
-3531.58 3377.19 -307.075,222 224 227,stand,85 11.2208 0,,
|
||||
-3545.19 3176.06 -307.075,56 223 257 260,stand,21.6309 2.58552 0,,
|
||||
-2858.96 3733.43 -310.918,58 226 227 269,stand,26.9812 -77.351 0,,
|
||||
-2627.58 3739.12 -305.669,133 225 12,stand,57.5452 -77.8674 0,,
|
||||
-3325.24 3599.34 -312.13,223 56 225 228 266 269 270,stand,28.0194 -117.22 0,,
|
||||
-3850.04 3709.61 -314.894,11 227 271 270,stand,25.6024 -6.33538 0,,
|
||||
1361.25 3920.19 6.18869,230 231,stand,18.1757 150.643 0,,
|
||||
1114.24 4013.84 30.5003,229 19,stand,27.8436 -21.3097 0,,
|
||||
1489.78 3836.57 30.9984,20 229 293,stand,27.157 -33.2079 0,,
|
||||
922.758 3960.9 99.8542,19 233,stand,16.7969 -43.0517 0,,
|
||||
1057.77 3898.64 146.125,80 78 232,stand,85 -11.9659 0,,
|
||||
-3530.48 1229.58 -293.403,0 7 386,stand,26.1188 -122.129 0,,
|
||||
410.636 450.973 182.125,164 165 167 118 435,stand,83.2269 -5.76776 0,,
|
||||
-88.2244 -648.965 75.625,90 237,stand,22.9669 164.317 0,,
|
||||
-355.415 -573.87 75.625,236 91,stand,28.4875 162.763 0,,
|
||||
-267.285 -402.528 75.625,91 239,stand,26.2463 163.455 0,,
|
||||
-79.9568 -451.487 75.625,90 238,stand,29.5258 -13.6889 0,,
|
||||
-2571.18 2846.18 -309.374,62 241 61 59,stand,15.8862 60.337 0,,
|
||||
-2740.11 2611.78 -312.595,240 60,stand,36.2604 56.5522 0,,
|
||||
-2174.27 1640.07 -284.861,151 186 204 395,stand,65.7861 -2.81244 0,,
|
||||
-3089.09 2804.77 -307.075,258 259,crouch,1.60278 -127.425 0,,
|
||||
-2993.03 2308.23 -307.075,258 253,crouch,3.15735 147.101 0,,
|
||||
-3831.23 2146.05 -275.075,255 254,crouch,7.12891 50.592 0,,
|
||||
-4264.22 3331.13 -307.075,247 222,crouch,3.33313 -34.1895 0,,
|
||||
-4200.75 3180.94 -307.075,246 222 248 256,stand,11.2708 -52.8333 0,,
|
||||
-4178.38 3021.5 -307.075,10 247 222 249,stand,20.2521 -169.733 0,,
|
||||
-4140.45 2884.82 -307.075,248 250,prone,3.33313 13.6948 0,,
|
||||
-3937.08 2913.78 -307.075,249 255 251,stand,18.1812 170.299 0,,
|
||||
-3772.31 2851.4 -307.075,250 252 256 446,stand,13.3472 -73.6795 0,,
|
||||
-3635.97 2567.95 -307.075,254 55 255 251 445,stand,13.5175 -33.7936 0,,
|
||||
-3369.08 2254.78 -307.075,55 54 244,stand,24.3939 89.8355 0,,
|
||||
-3566.46 2224.93 -307.075,252 245,stand,16.6266 69.1043 0,,
|
||||
-3876.12 2543.25 -307.075,252 245 250,stand,11.6168 -54.5248 0,,
|
||||
-3844.94 3141.23 -307.075,222 247 251 257,stand,12.1387 118.301 0,,
|
||||
-3691.68 3018.92 -307.075,256 224 260 446,stand,13.8635 -42.6211 0,,
|
||||
-3057.73 2603.58 -307.075,243 244 55,stand,13.5175 -167.997 0,,
|
||||
-3413.37 2710.89 -307.075,55 243 445,stand,16.7969 102.047 0,,
|
||||
-3559.15 3030.31 -307.075,224 257 444 446,stand,14.726 -77.3489 0,,
|
||||
-3192.48 3526.56 -307.075,57,crouch,1.25671 -36.6061 0,,
|
||||
-2768.21 3226.38 -307.075,263 57 58,stand,16.4508 9.83859 0,,
|
||||
-2535.26 3248.3 -307.075,264 262,crouch,6.26099 149.008 0,,
|
||||
-2593.57 3488.53 -307.075,58 263,stand,7.12341 166.619 0,,
|
||||
-3231.36 3476.25 -131.075,266 131,climb,85 -168.541 0,,
|
||||
-3235.13 3475.29 -307.075,265 227 56,climb,-85 12.4039 0,,
|
||||
-2537.54 3274.15 -139.075,132,prone,5.3021 9.53584 0,,
|
||||
-3123.87 3123.55 -131.075,131,prone,13.9374 -110.644 0,,
|
||||
-3040.72 3958.59 -295.235,270 225 227 273,stand,12.5531 169.068 0,,
|
||||
-3702.44 3971.8 -308.754,228 11 271 269 227,stand,11.6907 175.797 0,,
|
||||
-4455.16 3826.48 -287.702,272 11 228 270,stand,12.207 -166.075 0,,
|
||||
-5076.73 3780.72 -294.159,271 11 10,crouch,5.99424 -22.0718 0,,
|
||||
-2888.99 4144.27 -304.827,274 269 12,stand,10.9985 12.2879 0,,
|
||||
-2277.99 4143.23 -294.535,273 275 210,stand,10.3064 -14.9911 0,,
|
||||
-1868.48 4113.01 -252.949,276 274 13,stand,2.88511 22.302 0,,
|
||||
-1512.8 4008.71 -165.565,14 275 13,stand,5.13182 -33.9865 0,,
|
||||
-514.962 4091.22 131.721,278 279,crouch,13.2452 -133.957 0,,
|
||||
-700.44 3774.03 22.2682,15 16 277,stand,-7.82106 -6.70192 0,,
|
||||
-381.897 4215.77 140.277,17 277 280,stand,12.0367 -25.516 0,,
|
||||
-430.427 4437.16 154.692,279,crouch,2.70933 -82.8427 0,,
|
||||
-612.255 3468.28 150.125,144 145,prone,20.8423 -178.671 0,,
|
||||
-623.113 3308.19 135.626,283 144,prone,22.2211 -177.462 0,,
|
||||
-573.723 3022.39 141.685,282 284,prone,24.6381 -142.235 0,,
|
||||
-318.808 3067.32 131.176,283 143 146 142 286,stand,13.5913 73.5861 0,,
|
||||
-86.7619 2888.15 124.857,286,crouch,19.458 -120.663 0,,
|
||||
-89.2338 3052.91 140.608,284 143 285 142 287,stand,14.2779 174.413 0,,
|
||||
134.956 3269.2 128.94,286 71 288,stand,9.9658 50.7785 0,,
|
||||
225.74 3538.12 151.512,289 287 142,stand,20.1501 16.9351 0,,
|
||||
317.42 3690.07 147.589,290 288 72,stand,23.4296 -21.5719 0,,
|
||||
442.951 3608.29 148.375,71 289 72,stand,25.5005 -102.717 0,,
|
||||
-5.14551 4282.28 127.029,17 18,crouch,4.43968 -69.7634 0,,
|
||||
681.928 3894.72 184.476,18 72 80,prone,5.64817 -119.482 0,,
|
||||
1572.2 3627.01 64.849,20 231 21 294,stand,13.7616 -58.3596 0,,
|
||||
1913.65 3065.01 128.036,21 20 295 293,crouch,6.85667 -162.642 0,,
|
||||
1635.43 2992.45 140.685,220 219 294 300,stand,12.3828 -173.013 0,,
|
||||
1348.6 3297.24 178.125,76 75,crouch,10.238 142.613 0,,
|
||||
968.484 2859.12 140.326,298 74 216,stand,14.5502 -107.392 0,,
|
||||
938.865 2490.77 143.161,217 218 297 299,stand,13.3417 -90.3024 0,,
|
||||
1168.32 2592.92 112.454,221 298 300 218,stand,10.0623 -116.038 0,,
|
||||
1262.57 2933.65 133.697,299 79 74 219 295,stand,17.489 82.6828 0,,
|
||||
1380.18 2175.65 161.73,302 221 219 305,stand,13.6877 -130.216 0,,
|
||||
1184.26 2004.2 157.045,22 301 213 304 305,stand,14.726 -152.837 0,,
|
||||
837.732 1997.22 152.869,22 218,crouch,3.32764 -109.474 0,,
|
||||
1196.54 1951.54 154.639,302,crouch,6.95313 -135.198 0,,
|
||||
1425.99 1981.52 146.006,302 301,crouch,1.427 178.187 0,,
|
||||
958.277 1568.65 149.708,23 214 22 213,stand,12.6495 -43.5061 0,,
|
||||
666.503 1234.28 160.092,308 124,crouch,4.53613 67.8458 0,,
|
||||
723.747 1348.86 161.544,214 307 123 310,stand,28.0194 -143.504 0,,
|
||||
811.388 1104.95 190.125,124 125 310,stand,26.9812 -33.1515 0,,
|
||||
865.945 1279.35 156.749,309 308 23 311,stand,23.5315 79.2551 0,,
|
||||
1100.86 1155.72 156.722,310 159,stand,24.3939 -80.7992 0,,
|
||||
906.454 1128.48 75.2488,155 313,crouch,7.12891 -61.4633 0,,
|
||||
806.031 785.067 46.6231,156 312,crouch,2.29492 35.0571 0,,
|
||||
938.233 626.22 49.5495,315 158 159,stand,12.309 -89.9563 0,,
|
||||
942.617 341.482 50.4042,99 314,stand,11.441 -99.108 0,,
|
||||
1204.03 102.323 56.1282,317 99 98 325,stand,8.50769 -101.701 0,,
|
||||
1084.34 -393.692 58.7582,318 98 316 99 97,stand,8.68347 -103.601 0,,
|
||||
1129.13 -496.657 80.563,317,crouch,10.7544 123.964 0,,
|
||||
868.816 80.2725 123.743,99 160 98,crouch,2.6355 -142.932 0,,
|
||||
1552.3 -822.512 122.826,321 27 97 26 322,stand,14.0338 47.1915 0,,
|
||||
1828.84 -889.657 126.949,322 320,crouch,9.19983 135.241 0,,
|
||||
1901.27 -517.708 77.2621,321 26 320 323,crouch,4.8822 -176.067 0,,
|
||||
1918.24 -27.8475 59.8842,25 322 324,stand,13.0011 101.574 0,,
|
||||
1991.04 443.036 100.906,127 323,crouch,8.16711 -151.881 0,,
|
||||
1366.26 -38.4534 64.0294,25 316 98,stand,18.3514 163.57 0,,
|
||||
340.609 -108.006 105.724,88 87 118,stand,12.8253 -23.8768 0,,
|
||||
-487.797 -244.826 101.367,86 328 332,crouch,-2.02271 33.7794 0,,
|
||||
-140.538 -288.038 109.139,87 86 329 327,stand,15.9344 -20.092 0,,
|
||||
228.475 -372.134 105.541,88 87 86 89 328,stand,16.1047 -12.3247 0,,
|
||||
-568.871 122.499 65.2933,331 174 117 332 333,stand,20.4224 -107.45 0,,
|
||||
-643.498 147.514 62.7781,330 117 174 334,stand,20.4224 -107.45 0,,
|
||||
-359.739 65.0383 70.1936,330 327 84 86,stand,14.3799 -82.7635 0,,
|
||||
-610.512 -51.0623 43.125,330 334 92,stand,2.98157 73.7861 0,,
|
||||
-689.116 -28.4515 43.625,333 92 331 336,stand,2.98157 73.7861 0,,
|
||||
-876.53 -286.835 43.125,92 336,crouch,5.74463 -35.3245 0,,
|
||||
-858.407 -226.815 43.125,334 335,crouch,3.32764 36.5205 0,,
|
||||
-617.483 -542.027 43.125,93,crouch,4.70642 111.629 0,,
|
||||
-959.24 -537.306 43.125,31,prone,13.1714 124.406 0,,
|
||||
-794.009 -528.686 43.125,31,crouch,2.98157 -58.9451 0,,
|
||||
-504.055 -298.675 75.125,91,crouch,8.33191 -65.1469 0,,
|
||||
-554.06 -561.176 75.125,91,crouch,4.70642 41.5523 0,,
|
||||
110.712 -506.862 75.625,90,prone,-1.50635 -46.611 0,,
|
||||
-921.898 -446.428 -76.875,94,crouch,3.32764 26.7556 0,,
|
||||
-743.948 -366.166 -76.875,345 94 95 348 349,stand,11.441 72.8598 0,,
|
||||
-696.533 -212.833 -76.875,95 346 344 349 350,stand,12.1332 75.6228 0,,
|
||||
-807.069 -56.7695 -76.875,95 345 350,crouch,4.70642 -68.8858 0,,
|
||||
-676.69 -502.865 -76.875,348,crouch,3.15735 121.892 0,,
|
||||
-748.933 -469.834 -76.875,347 344,stand,16.1047 74.2331 0,,
|
||||
-624.948 -331.29 -44.875,344 345 350,crouch,3.84399 163.338 0,,
|
||||
-575.125 -160.31 -76.875,345 346 349,crouch,2.29492 -163.16 0,,
|
||||
-855.307 27.4034 -59.2897,353 352 33,stand,14.8962 -125.35 0,,
|
||||
-1070.83 141.155 -87.88,351 33 34 356 357 358 354 353,stand,13.6877 -84.5853 0,,
|
||||
-936.453 -137.92 -68.3003,351 95 33 359 352,stand,19.7302 -117.39 0,,
|
||||
-1451.12 478.814 -173.959,355 356 352,prone,10.0623 113.795 0,,
|
||||
-1310.83 518.789 -143.248,354 34,prone,10.0623 117.074 0,,
|
||||
-1439.79 250.714 -174.263,354 357 352 34,stand,9.37012 -106.355 0,,
|
||||
-1493.98 -57.6314 -106.81,356 358 352 33,stand,2.6355 -41.6013 0,,
|
||||
-1268.9 -269.279 -70.4319,357 359 33 352,stand,14.0338 -44.8917 0,,
|
||||
-1060.52 -328.204 -66.876,32 358 353 33,stand,21.1145 -150.036 0,,
|
||||
-1152.85 847.449 -267.781,194 35 361,stand,25.6024 118.849 0,,
|
||||
-1154.92 1081.67 -341.167,360 194 193 116 195,stand,10.7544 49.6237 0,,
|
||||
-1332.95 1443.03 -390.366,195 363,stand,27.8491 -31.5213 0,,
|
||||
-1536.59 1499.35 -265.222,362 206 202 193,stand,22.1527 40.126 0,,
|
||||
-2240.45 235.697 -306.875,49 365,crouch,4.19556 143.018 0,,
|
||||
-2446.73 175.963 -306.875,49 364,crouch,5.22827 56.6824 0,,
|
||||
-2521.32 1205.6 -265.302,201,crouch,8.3374 -99.0433 0,,
|
||||
-2697.46 1086.03 -306.875,201 42 41,stand,26.9867 -165.868 0,,
|
||||
-2973.85 1020.65 -310.875,6 5 370 371,stand,13.3472 -82.9703 0,,
|
||||
-2583.43 269.637 -306.875,4,crouch,3.50342 159.806 0,,
|
||||
-3054.69 682.784 -306.875,5 368,crouch,1.94885 15.6265 0,,
|
||||
-3149.37 1123.61 -271.482,368,crouch,4.70642 -35.6687 0,,
|
||||
-2524.68 1216.82 -170.875,43,crouch,4.70642 16.6537 0,,
|
||||
-2494.63 1105.69 -171.875,200 44,crouch,5.74463 17.0053 0,,
|
||||
-2788.65 1123.03 -171.875,44,crouch,4.70642 -10.2628 0,,
|
||||
-2391.22 765.377 -166.875,376 377,prone,5.05249 16.857 0,,
|
||||
-2426.05 859.421 -171.875,375 377,crouch,8.33191 13.0557 0,,
|
||||
-2534.69 818.111 -171.875,376 45 44 375 378,stand,23.1854 107.675 0,,
|
||||
-2594.13 573.215 -171.875,377,crouch,5.39856 51.5683 0,,
|
||||
-2244.89 248.773 -170.875,380,crouch,2.98157 16.6867 0,,
|
||||
-2280.77 292.787 -171.875,381 379,stand,34.754 -162.017 0,,
|
||||
-2369.18 263.693 -171.875,45 46 380 383,stand,43.2135 -126.965 0,,
|
||||
-2509.16 157.883 -228.875,47,crouch,14.875 62.1096 0,,
|
||||
-2532.8 423.106 -162.742,381 45,crouch,18.6763 -167.345 0,,
|
||||
-2579.59 198.852 -306.875,40,crouch,2.27371 -114.012 0,,
|
||||
-3043.61 507.002 -307.056,1,crouch,3.82828 150.67 0,,
|
||||
-3387.07 1297.27 -302.268,234 6,stand,21.2691 19.6255 0,,
|
||||
-2904.07 1381.94 -307.985,6 51 52,stand,9.3544 -144.4 0,,
|
||||
-3227.73 1863.44 -307.395,54 52 389 390,stand,11.2495 107 0,,
|
||||
-3365.22 1726.06 -302.831,388 52 390,stand,15.0508 78.5177 0,,
|
||||
-3625.2 2097.29 -339.875,389 54 8 7 388,stand,13.8423 172.462 0,,
|
||||
-3369.05 2789.56 -309.9,393 444,crouch,5.03677 33.2925 0,,
|
||||
-3415.73 3030.84 -310.784,393 444,crouch,3.65799 -19.3704 0,,
|
||||
-3309.07 2899.23 -312.903,59 391 392 444,stand,15.2211 24.6518 0,,
|
||||
-2588.35 1956.85 -294.757,53 395 185,stand,8.1459 -12.9764 0,,
|
||||
-2205.66 1793.87 -277.872,394 242 151,stand,9.87076 -12.46 0,,
|
||||
-2043.1 2046.29 -204.617,151 397,stand,13.8423 -19.5243 0,,
|
||||
-2043.34 2274.23 -196.463,396 398,stand,5.72891 8.27115 0,,
|
||||
-1789.46 2561.9 -137.733,397 150 399,stand,10.2168 -66.4963 0,,
|
||||
-1629.22 2432.44 -123.875,398 400,stand,14.1884 139.843 0,,
|
||||
-1596.39 2364.47 -123.875,399 149 150,stand,26.1031 26.069 0,,
|
||||
-1635.8 2563.53 -123.875,149 402,crouch,3.65799 -13.1357 0,,
|
||||
-1502.04 2324.68 -123.875,149 401,crouch,1.75735 68.7014 0,,
|
||||
-1020.04 2908.37 -123.875,65,crouch,2.61978 -89.4577 0,,
|
||||
-1108.16 2641.54 -120.106,405 148 65,climb,-85 -60.2835 0,,
|
||||
-1107.83 2637.18 10.125,404 128,climb,83.9618 120.491 0,,
|
||||
-957.269 2428.12 6.125,128,climb,9.89197 -51.8241 0,,
|
||||
-1032.69 2469.32 6.125,128,climb,11.9629 -151.624 0,,
|
||||
-1185.36 2778.59 6.125,130,crouch,23.7018 -55.109 0,,
|
||||
-853.798 2486 6.125,128,crouch,5.74463 146.221 0,,
|
||||
-997.246 2405.66 -123.875,66,crouch,0.740357 71.8051 0,,
|
||||
-184.446 1401.8 100.712,122 191 114 413,stand,16.9189 -20.3851 0,,
|
||||
213.422 1175.07 154.277,122,crouch,5.69641 119.476 0,,
|
||||
-162.165 1653.6 100.506,411 138 122,stand,12.2607 -108.951 0,,
|
||||
387.911 1292.14 190.125,416 82 415 417 418,stand,13.2935 -106.545 0,,
|
||||
436.93 1149.31 190.125,414 83 418 106,stand,16.9189 -114.659 0,,
|
||||
275.372 1166.51 190.125,414 83 417,stand,13.9856 67.6648 0,,
|
||||
303.798 1347.85 198.125,414 416,crouch,2.76306 -71.3342 0,,
|
||||
488.36 1285.19 190.125,414 415,crouch,0.170288 -138.505 0,,
|
||||
118.354 1074.68 190.125,420 83 168,stand,11.2225 169.184 0,,
|
||||
-78.3458 1124.83 190.125,421 419,stand,11.3983 171.947 0,,
|
||||
-308.315 1036.11 190.125,422 420 424 425,stand,11.2225 -58.3813 0,,
|
||||
-178.168 850.009 190.125,423 421,stand,12.6068 11.5466 0,,
|
||||
54.5216 871.569 190.125,168 422 83,stand,11.9147 -2.95532 0,,
|
||||
-282.822 1161.46 190.125,421,stand,18.8196 137.758 0,,
|
||||
-353.515 914.988 190.125,421,stand,23.6536 -173.205 0,,
|
||||
797.635 981.506 190.125,105,crouch,2.2467 -150.776 0,,
|
||||
171.143 870.353 318.125,428 108,crouch,25.2081 69.895 0,,
|
||||
128.616 848.145 334.125,427 108,crouch,23.9996 153.638 0,,
|
||||
95.9872 647.619 318.125,107,crouch,7.08069 -16.441 0,,
|
||||
609.469 408.864 316.125,111,crouch,6.90491 -154.061 0,,
|
||||
558.292 230.916 316.125,111,crouch,6.04248 114.598 0,,
|
||||
321.74 365.766 346.125,111,crouch,20.2039 -167.536 0,,
|
||||
313.573 605.444 190.125,168,crouch,-2.2467 110.446 0,,
|
||||
226.469 330.865 190.125,167,prone,-0.516357 117.532 0,,
|
||||
536.204 240.893 182.125,235,crouch,3.4552 128.057 0,,
|
||||
493.646 792.804 190.125,164 166,crouch,2.76306 -60.8368 0,,
|
||||
520.035 880.838 190.125,105,crouch,3.4552 17.7319 0,,
|
||||
694.522 426.002 38.125,162 161,crouch,3.27942 115.291 0,,
|
||||
303.141 540.376 38.125,161 440,crouch,2.41699 31.8933 0,,
|
||||
397.936 864.55 38.125,439 101,crouch,2.2467 -57.8925 0,,
|
||||
683.16 1047.87 38.125,102,crouch,1.37878 -82.9358 0,,
|
||||
775.59 1007.82 38.125,102,crouch,2.07092 -116.603 0,,
|
||||
621.749 838.955 38.125,102,crouch,0.862427 26.1914 0,,
|
||||
-3400.69 2916.95 -307.075,260 393 391 392 445,stand,25.5542 -123.394 0,,
|
||||
-3454.42 2802.75 -307.075,444 259 252 446,stand,28.147 168.925 0,,
|
||||
-3571.06 2885.98 -307.075,445 251 260 257,stand,27.2791 69.1197 0,,
|
||||
|
@@ -0,0 +1,303 @@
|
||||
302
|
||||
-1240.52 -529.098 7.51933,1 267 268,stand,,,
|
||||
-1191.76 -344.915 6.60295,0 2 269 271,stand,,,
|
||||
-1457.79 -256.051 8.125,1 170 174,stand,,,
|
||||
-1404.77 202.677 8.125,4 112 172 174 175,stand,,,
|
||||
-1327.99 730.39 8.125,3 6 116 175 178 264,stand,,,
|
||||
-1881.06 789.8 8.125,262 261 263 264,stand,,,
|
||||
-1285.47 862.204 8.125,4 7 178,stand,,,
|
||||
-1500.52 856.432 144.125,6 8,stand,,,
|
||||
-1387.51 1063.06 184.125,7 258 259 260,stand,,,
|
||||
-1155 1079.68 184.125,10 256 258 257,stand,,,
|
||||
-1142.29 1244.39 184.125,9 11 252 254 255,stand,,,
|
||||
-1366.64 1271.73 184.125,10 12 253,stand,,,
|
||||
-1378.48 1524.4 159.814,11 13 15 250 251,stand,,,
|
||||
-982.999 1584.72 151.479,12 14 118 119,stand,,,
|
||||
-1081.06 1878.52 224.79,13 15 17,stand,,,
|
||||
-1448.72 1883.16 225.224,14 16 12,stand,,,
|
||||
-1476 2135.29 259.081,15 184,stand,,,
|
||||
-1049.5 2124.89 272.015,14 18 184 182 183,stand,,,
|
||||
-884.091 2346.19 283.064,17 19 28 120 183 182,stand,,,
|
||||
-928.166 2609.88 280.454,18 20 21 183,stand,,,
|
||||
-972.976 2841.63 282.991,19 185 186,stand,,,
|
||||
-473.351 2636.13 332.687,19 22 28,stand,,,
|
||||
-185.746 2692.11 339.027,21 23 187,stand,,,
|
||||
67.9628 2803.79 335.675,22 24 187 191,stand,,,
|
||||
457.718 2772.79 290.291,23 25 52 191 189,stand,,,
|
||||
404.131 2303.06 283.853,24 26 123,crouch,,,
|
||||
357.561 2252.26 282.266,25 27,crouch,,,
|
||||
-36.3888 2317.88 283.949,26 28 187,stand,,,
|
||||
-298.846 2265.6 282.682,27 18 29 21,stand,,,
|
||||
-304.549 2066.33 288.125,28 30 120 31,stand,,,
|
||||
-90.6727 1977.92 240.673,29 31 36 37,stand,,,
|
||||
-288.308 1907.56 238.951,30 32 29,stand,,,
|
||||
-278.88 1452.92 152.481,31 33 211,stand,,,
|
||||
-132.82 1471.87 152.885,32 34 71,stand,,,
|
||||
244.621 1396.14 151.457,33 35 40,stand,,,
|
||||
265.338 1578.47 158.592,34 36 39,stand,,,
|
||||
256.137 1986.09 240.125,35 30 50,stand,,,
|
||||
5.12561 1902.64 299.094,30 210,stand,,,
|
||||
128.721 1794.53 312.125,39 210,stand,,,
|
||||
137.605 1595.53 176.125,38 35,stand,,,
|
||||
657.917 1396.94 168.125,34 41 50 49 203,stand,,,
|
||||
664.176 1100.94 344.125,40 42,stand,,,
|
||||
835.259 1112.91 344.125,41 43 150 206 205,stand,,,
|
||||
753.065 880.578 344.125,42 44 151,climb,,,
|
||||
739.415 767.908 320.125,43 138 139,climb,,,
|
||||
909.311 737.683 190.049,46 53 139,stand,,,
|
||||
1241.21 770.286 192.45,45 47 70 297,stand,,,
|
||||
1710.02 782.053 192.112,46 48,stand,,,
|
||||
1712.35 1152.94 189.854,47 201,stand,,,
|
||||
974.33 1655.93 172.976,50 40 200 204,stand,,,
|
||||
811.139 1874.35 168.125,49 51 36 40 195,stand,,,
|
||||
819.511 2301.87 283.816,50 123 193,stand,,,
|
||||
800.88 2825.17 294.23,24 193 194,stand,,,
|
||||
851.26 470.567 168.125,45 54 69,stand,,,
|
||||
631.106 276.481 160.125,53 55 68,stand,,,
|
||||
531.762 -269.662 8.125,54 56 223,stand,,,
|
||||
188.18 -260.719 5.71641,55 57 76 223 224 225,stand,,,
|
||||
164.838 -589.757 16.5713,56 58 159,stand,,,
|
||||
177.083 -768.073 4.125,57 161 272,stand,,,
|
||||
538.155 -759.45 143.884,60 107 273,stand,,,
|
||||
596.695 -1054.4 142.288,59 61 163 164,stand,,,
|
||||
882.719 -1042.71 192.125,60 62 164 282 281,stand,,,
|
||||
1227.85 -1125.7 192.125,61 63 275,stand,,,
|
||||
1259.01 -705.821 196.89,62 276 280 278 281,stand,,,
|
||||
628.626 -658.399 312.125,283 284 286 285 292,stand,,,
|
||||
135.362 -605.006 312.125,290 291 289 292 293 295,stand,,,
|
||||
-321.679 -535.071 304.125,144 291 290 295,stand,,,
|
||||
1138.84 -219.046 186.125,68 69,stand,,,
|
||||
775.013 -146.705 160.125,67 54,stand,,,
|
||||
1163.3 129.99 186.125,53 67 70,stand,,,
|
||||
1226.71 575.762 186.125,69 46,stand,,,
|
||||
-124.904 1257.04 149.4,33 72 213,stand,,,
|
||||
-97.1738 889.631 144.125,71 73 80 149,stand,,,
|
||||
-29.3469 879.978 144.125,72 74 121 221,crouch,,,
|
||||
322.994 701.747 79.5024,73 75 221 121,stand,,,
|
||||
339.31 255.673 -3.23351,74 76,stand,,,
|
||||
319.74 54.5373 -5.875,75 56 93 222 224,stand,,,
|
||||
-360.853 -311.497 6.04029,78 100 225,stand,,,
|
||||
-356.621 -41.1277 -4.83861,77 93 224 226 228 229,stand,,,
|
||||
-346.525 300.079 -0.515981,80 89 226,stand,,,
|
||||
-306.815 872.832 142.543,79 72 81 82 149,stand,,,
|
||||
-551.112 872.701 150.708,80,stand,,,
|
||||
-227.737 922.996 152.125,80 216,stand,,,
|
||||
-548.514 1167.19 152.125,84 214 218,stand,,,
|
||||
-685.505 1347.49 216.125,83 85,stand,,,
|
||||
-501.631 1339.58 288.125,84 249 245 247,stand,,,
|
||||
-488.52 1053.18 288.125,87 243 249,stand,,,
|
||||
-289.236 1004.1 288.125,86,stand,,,
|
||||
-175.081 675.677 176.125,89 90 148,stand,,,
|
||||
-217.889 302.734 8.125,88 79,stand,,,
|
||||
137.77 497.325 176.125,88 91,stand,,,
|
||||
144.32 334.453 176.125,90 92 129,stand,,,
|
||||
-162.841 346.957 172.016,91,stand,,,
|
||||
20.1585 3.58696 -5.875,78 76 224 227,stand,,,
|
||||
-891.876 -79.2678 -3.88292,95 112 168 228 271,stand,,,
|
||||
-997.004 -415.365 48.125,94 96 168,stand,,,
|
||||
-735.036 -428.077 152.125,95 97 167 140,stand,,,
|
||||
-715.048 -292.522 152.125,96 98 140,stand,,,
|
||||
-585.69 -310.413 152.125,97 99,stand,,,
|
||||
-615.618 -585.589 5.33779,98 100 101 122 102 152 155,stand,,,
|
||||
-500.497 -295.622 6.46471,99 77 228,stand,,,
|
||||
-346.259 -997.119 8.125,99 102 108 154 156,stand,,,
|
||||
-276.599 -582.434 32.125,101 103 99 157,stand,,,
|
||||
-53.1829 -580.633 32.125,102 104 159,stand,,,
|
||||
-32.2503 -813.631 32.125,103 105,stand,,,
|
||||
-319.765 -827.924 168.125,104 106 111,stand,,,
|
||||
-55.7131 -613.097 168.125,105 107,stand,,,
|
||||
535.559 -599.349 168.125,106 59 109,stand,,,
|
||||
19.6417 -1161.54 6.97471,101 161 160 300,stand,,,
|
||||
533.299 -458.734 168.125,107 110,stand,,,
|
||||
117.418 -425.481 168.125,109 111,stand,,,
|
||||
-287.447 -457.91 168.125,110 105 141,stand,,,
|
||||
-1021.45 168.565 8.53023,94 3 113 116 175 270 271,stand,,,
|
||||
-830.973 166.067 8.125,112 114,stand,,,
|
||||
-838.465 385.601 144.125,113 115,stand,,,
|
||||
-607.727 266.96 144.125,114 233 235,stand,,,
|
||||
-913.986 552.485 8.22492,112 4 117 175 176 177,stand,,,
|
||||
-873.648 975.801 18.2553,116 118 177 178,stand,,,
|
||||
-915.729 1295.96 74.1487,117 13 180,stand,,,
|
||||
-773.077 1621.25 216.125,13 120 181,stand,,,
|
||||
-778.395 1960.84 288.125,119 29 18,stand,,,
|
||||
332.206 955.776 151.905,73 74,stand,,,
|
||||
-838.64 -866.114 28.7714,99 153 154 152,stand,,,
|
||||
599.27 2287.16 283.356,51 189 25,stand,,,
|
||||
-667.913 488.062 334.066,125 127 236 237,stand,30.1312 -49.7283 0,,
|
||||
-638.204 774.611 333.165,124 126 240,stand,10.3833 -74.085 0,,
|
||||
-423.277 789.283 335.955,125 127,stand,19.3866 38.0745 0,,
|
||||
-434.578 486.86 334.726,126 124 236,stand,14.4757 131.277 0,,
|
||||
-824.647 177.606 284.125,239 238,stand,25.9399 -129.044 0,,
|
||||
-15.5529 423.866 182.729,91 130,climb,-85 86.4308 0,,
|
||||
-13.553 417.794 321.898,129 131,climb,85 88.683 0,,
|
||||
90.3364 387.426 312.125,130 132 133,stand,12.7484 141.325 0,,
|
||||
-1.46094 241.202 312.125,131,stand,22.0648 -90.8548 0,,
|
||||
91.3406 587.838 308.125,131 134,stand,23.905 89.8758 0,,
|
||||
-20.263 605.111 308.125,133 135 137,stand,18.5822 90.3866 0,,
|
||||
-20.3276 979.276 298.125,134 136,stand,18.5822 90.3866 0,,
|
||||
352.451 1013.05 298.125,135,stand,24.3115 6.15994 0,,
|
||||
-210.978 502.617 320.125,134,stand,20.0159 -99.4297 0,,
|
||||
647.547 494.654 322.781,44,stand,27.179 -122.759 0,,
|
||||
840.325 757.287 188.823,44 45,climb,-29.8236 179.651 0,,
|
||||
-947.93 -228.222 152.125,97 165 166 96,stand,12.2376 94.8086 0,,
|
||||
-423.72 -581.423 168.125,111 142 296,stand,48.0585 -90.6296 0,,
|
||||
-405.125 -679.777 172.572,141 143,climb,-85 5.36892 0,,
|
||||
-405.125 -679.753 301.559,142 144,climb,84.1815 2.70474 0,,
|
||||
-340.332 -673.8 304.125,143 145 66 147,stand,20.4224 -86.9437 0,,
|
||||
-336.689 -848.896 304.125,144 146,stand,22.8778 4.01211 0,,
|
||||
-182.755 -844.006 324.125,145 147,stand,28.6127 2.37515 0,,
|
||||
-172.373 -708.748 308.125,146 294 144 295,stand,21.4496 89.3649 0,,
|
||||
-141.607 705.247 176.125,88 149,climb,24.8224 89.9911 0,,
|
||||
-123.818 760.283 143.458,148 72 80 221,climb,-0.248394 -109.032 0,,
|
||||
886.028 1282.69 344.125,42 205,stand,18.3789 79.653 0,,
|
||||
895.788 905.19 344.125,43,stand,19.6039 8.63186 0,,
|
||||
-945.021 -507.246 6.63659,99 122 153,crouch,-1.90063 -41.2207 0,,
|
||||
-960.875 -946.525 26.1671,122 154 152,crouch,2.93335 41.4899 0,,
|
||||
-662.28 -980.764 25.1948,101 122 153,stand,12.085 -7.89368 0,,
|
||||
-421.049 -445.848 5.97774,99 156,stand,5.18005 -164.493 0,,
|
||||
-453.884 -884.014 14.5135,155 101,stand,15.0238 -79.0247 0,,
|
||||
-269.907 -447.273 32.125,158 102,stand,9.49768 -0.466919 0,,
|
||||
42.2499 -442.158 32.125,159 157,stand,8.80554 -83.0017 0,,
|
||||
54.102 -598.364 32.125,57 103 158,stand,15.8862 -168.3 0,,
|
||||
464.875 -1208.87 6.88402,108 162 301,crouch,1.55457 132.303 0,,
|
||||
110.705 -995.664 6.125,58 108 300,stand,17.7869 72.2186 0,,
|
||||
464.875 -815.125 10.3349,160 301 272,crouch,0.516357 -130.303 0,,
|
||||
530.027 -1160.59 143.125,164 60,stand,2.58728 7.65747 0,,
|
||||
726.947 -1155.04 175.721,61 163 60 274,stand,3.97156 21.297 0,,
|
||||
-1016.49 -348.656 152.125,140,crouch,6.04248 3.8562 0,,
|
||||
-980.316 -162.563 152.125,140,crouch,7.08069 -45.6976 0,,
|
||||
-677.438 -500.264 152.125,96,crouch,-4.48792 127.831 0,,
|
||||
-876.497 -270.902 16.125,95 94,crouch,2.41699 101.585 0,,
|
||||
-1491.71 52.1321 8.125,171 170 174,stand,31.4264 -91.9611 0,,
|
||||
-1518.52 -125.808 8.125,169 2 174 266,stand,27.2791 -130.468 0,,
|
||||
-1552.02 112.47 8.125,172 169,stand,24.8621 103.315 0,,
|
||||
-1535.88 217.541 8.125,3 173 171,stand,23.1372 85.0122 0,,
|
||||
-1539.84 320.318 8.125,172 265,stand,12.085 -2.70264 0,,
|
||||
-1405.87 43.7763 8.125,2 3 169 170,stand,13.6395 88.9838 0,,
|
||||
-1210.08 348.807 2.31727,116 112 3 4,stand,10.5304 38.2269 0,,
|
||||
-798.901 489.64 8.94861,116 177,stand,10.1898 114.549 0,,
|
||||
-771.509 697.192 5.89832,117 116 176,stand,8.63525 88.9893 0,,
|
||||
-1012.49 820.061 2.50967,117 6 4,stand,8.1134 71.7242 0,,
|
||||
-730.125 981.954 37.1335,180,stand,5.35034 91.7523 0,,
|
||||
-750.446 1321.52 84.1906,118 179,stand,12.7771 179.808 0,,
|
||||
-782.539 1426.7 240.143,119,prone,7.94312 -96.9653 0,,
|
||||
-1188.13 2242.84 281.694,183 184 17 18,stand,8.63525 69.137 0,,
|
||||
-1050.58 2386.28 283.921,18 182 17 19 185,stand,16.9189 -14.2603 0,,
|
||||
-1241.16 2138.68 266.237,16 17 182,stand,17.9572 -138.065 0,,
|
||||
-1141.47 2566.84 280.859,20 183,stand,12.6068 75.0037 0,,
|
||||
-1073.84 2966.58 281.292,20,stand,8.45947 -49.4879 0,,
|
||||
-65.6549 2589.27 352.125,27 22 23,stand,30.7343 -61.2268 0,,
|
||||
325.137 2542.45 240.625,189 190,prone,2.2467 0.068922 0,,
|
||||
548.212 2542.5 241.102,188 192 24 123,prone,0 178.529 0,,
|
||||
193.664 2541.74 240.625,188 191,stand,7.42676 88.7433 0,,
|
||||
194.318 2751.52 288.125,190 24 23,stand,21.7584 -71.3165 0,,
|
||||
723.438 2538.29 240.625,193 189,stand,14.848 2.06118 0,,
|
||||
876.804 2547.57 240.625,52 51 192,stand,-0.346069 96.1591 0,,
|
||||
952.875 2891.37 293.426,52,crouch,2.93335 -127.089 0,,
|
||||
1034.37 1847.19 191.221,50 196,stand,20.3741 -104.297 0,,
|
||||
1214.51 1833.35 195.663,197 195,stand,8.98132 1.89639 0,,
|
||||
1459.74 1823.88 183.629,196 198,stand,9.84375 -128.813 0,,
|
||||
1453.24 1654.75 182.897,199 197 200,stand,9.3219 -102.397 0,,
|
||||
1422.63 1426.32 184.018,198 200 201 299 298,stand,9.3219 -122.079 0,,
|
||||
1234.02 1591.66 189.846,49 198 199,stand,7.94312 -165.936 0,,
|
||||
1433.68 1188.34 189.819,199 48 299 297,stand,12.7771 -3.10241 0,,
|
||||
975.125 1175.13 192.125,204,crouch,0.862427 49.3848 0,,
|
||||
941.891 1415.68 220.125,40 204,stand,15.1941 -1.88293 0,,
|
||||
1084.02 1288.44 187.035,203 202 49 297 298,stand,10.7062 160.072 0,,
|
||||
727.125 1320.88 344.125,150 42,crouch,-0.516357 -38.5004 0,,
|
||||
936.875 1071.13 344.125,42,crouch,2.07092 151.766 0,,
|
||||
38.8736 1558.13 312.125,210,crouch,3.80127 104.794 0,,
|
||||
-196.028 1838.89 344.125,210,crouch,1.90063 -22.4603 0,,
|
||||
-164.747 1574.55 312.125,210,stand,18.3032 -83.9288 0,,
|
||||
-9.38508 1801.61 312.125,38 208 207 209 37,stand,33.4973 89.4354 0,,
|
||||
-524.875 1434.49 160.125,32,crouch,3.10913 1.53384 0,,
|
||||
-286.842 1363.25 152.125,213,crouch,3.4552 -82.5555 0,,
|
||||
-267.291 1237.94 152.125,212 214 71,stand,12.2607 -156.109 0,,
|
||||
-462.734 1191.08 152.125,213 215 83,stand,17.7869 83.2007 0,,
|
||||
-476.051 1344.54 152.125,214,crouch,-1.2085 -87.2247 0,,
|
||||
-230.319 1032.22 152.125,217 82,stand,5.35034 171.767 0,,
|
||||
-436.408 1016.1 152.125,218 216 219,stand,13.2935 124.284 0,,
|
||||
-486.48 1114.43 152.125,83 217,stand,20.8905 96.1426 0,,
|
||||
-433.289 926.733 152.125,220 217,stand,25.0378 92.5116 0,,
|
||||
-500.472 914.59 152.125,219,crouch,4.48792 16.5412 0,,
|
||||
0.554004 778.418 144.125,149 73 74,stand,85 138.781 0,,
|
||||
475.603 149.147 -5.32087,223 76,stand,10.5841 -128.341 0,,
|
||||
480.432 -196.515 -4.72952,55 222 56,stand,10.4138 -92.6025 0,,
|
||||
10.4231 -168.475 -5.875,93 56 76 225 78,stand,10.9302 -178.252 0,,
|
||||
-20.7937 -289.301 3.71985,56 77 224,stand,9.5459 -164.437 0,,
|
||||
-356.314 149.883 -3.81802,79 78 227 229,stand,12.309 2.86318 0,,
|
||||
-195.266 133.668 -5.875,93 226,stand,14.3799 -12.1552 0,,
|
||||
-565.81 -44.2284 -0.370109,78 94 229 100,stand,9.89197 -142.519 0,,
|
||||
-546.664 51.5886 3.12901,228 78 226 230,stand,27.3328 -94.3439 0,,
|
||||
-694.623 33.6269 106.125,229 231 234,stand,19.7357 -178.087 0,,
|
||||
-690.262 90.0655 146.125,232 230,stand,17.489 -0.76782 0,,
|
||||
-574.038 92.3013 146.125,233 231,stand,19.3896 91.0944 0,,
|
||||
-574.077 190.364 145.225,115 232,stand,19.3896 91.0944 0,,
|
||||
-810.079 19.088 106.125,230,prone,10.238 179.526 0,,
|
||||
-588.408 400.875 144.125,236 115,climb,-85 89.9085 0,,
|
||||
-588.95 403.858 338.125,124 127 235,climb,85 -87.4109 0,,
|
||||
-662.437 346.249 282.125,239 124,climb,14.2096 -179.273 0,,
|
||||
-845.367 352.351 282.125,128,climb,29.2334 -93.1183 0,,
|
||||
-664.161 162.816 282.125,237 128,stand,13.0011 56.7517 0,,
|
||||
-689.88 824.453 336.125,125,prone,12.8308 129.608 0,,
|
||||
-609.305 1063.99 288.125,242,stand,15.5884 -29.0735 0,,
|
||||
-564.475 937.934 288.125,243 241 244,stand,16.2805 7.87355 0,,
|
||||
-477.398 963.285 288.125,86 242,stand,20.5981 95.0665 0,,
|
||||
-657.292 903.627 292.125,242,crouch,1.77858 31.3623 0,,
|
||||
-321.561 1370.82 288.125,85 246 247 249,stand,13.8635 93.6933 0,,
|
||||
-230.244 1360.68 288.125,245,stand,16.9727 4.07777 0,,
|
||||
-315.239 1281.15 288.125,245 248 249 85,stand,19.0436 -78.457 0,,
|
||||
-210.534 1151.4 320.125,247,crouch,7.65076 142.549 0,,
|
||||
-490.711 1184.59 288.125,86 85 247 245,stand,14.5557 92.1277 0,,
|
||||
-1492.88 1423.03 161.934,251 12,crouch,-0.984478 42.2003 0,,
|
||||
-1492.88 1608.88 161.465,250 12,crouch,0.916157 -40.1642 0,,
|
||||
-1528.88 1175.03 184.125,253 10,crouch,-0.638409 33.9002 0,,
|
||||
-1528.88 1376.78 184.125,11 252,crouch,1.08644 -31.5399 0,,
|
||||
-1063.13 1268.19 184.125,10,stand,22.6691 1.09499 0,,
|
||||
-1082.57 1376.78 184.125,10,crouch,1.26223 -142.386 0,,
|
||||
-1071.13 927.025 185.125,9 257 258,crouch,0.394306 129.207 0,,
|
||||
-1243.24 933.363 184.125,256 258 9,stand,10.9302 -90.4156 0,,
|
||||
-1261.44 1065.75 185.125,257 8 9 256,stand,15.072 31.8347 0,,
|
||||
-1409.01 914.91 184.125,8 260,prone,6.95862 -75.5621 0,,
|
||||
-1528.88 1128.78 220.125,8 259,crouch,3.33315 -64.5154 0,,
|
||||
-2016.88 872.875 8.09611,262 5,crouch,0.05373 -18.2519 0,,
|
||||
-2016.87 711.125 8.05506,261 5,crouch,2.12465 29.231 0,,
|
||||
-1572.02 872.875 8.125,5 264,crouch,2.47072 -46.2231 0,,
|
||||
-1626.43 798.507 8.125,263 5 4,stand,11.6223 -0.294785 0,,
|
||||
-1592.88 344.875 8.125,173,crouch,0.224018 -54.0014 0,,
|
||||
-1579.46 -250.59 8.125,170,crouch,-1.16026 46.1444 0,,
|
||||
-1375.1 -554.634 0.658983,0,crouch,0.740376 60.13 0,,
|
||||
-1171.86 -605.444 3.65374,0,crouch,-3.40147 93.6273 0,,
|
||||
-1262.16 -123.463 0.689826,1 270,stand,2.8113 -112.18 0,,
|
||||
-1199.18 73.7638 2.65801,269 112,stand,9.5459 41.1347 0,,
|
||||
-1023.75 -35.1051 1.38635,1 112 94,stand,5.57434 -107.357 0,,
|
||||
299.278 -889.697 8.125,273 58 162,stand,9.02954 94.4843 0,,
|
||||
332.807 -747.427 11.1972,272 59,stand,18.8733 -101.666 0,,
|
||||
776.875 -1208.88 188.765,164,crouch,8.51318 144.186 0,,
|
||||
1223.74 -1239.13 192.125,62,crouch,2.64101 107.058 0,,
|
||||
1287.58 -445.926 208.264,63 278 280,crouch,2.98708 -167.298 0,,
|
||||
807.125 -308.149 198.688,278 279,crouch,3.50344 -51.6119 0,,
|
||||
1015.12 -467.046 192.125,277 276 280 63,stand,6.95862 143.494 0,,
|
||||
824.767 -583.359 200.125,277 280 283,stand,7.65076 -86.8396 0,,
|
||||
1078.6 -674.472 186.125,279 278 63 276 281,stand,26.6406 -104.967 0,,
|
||||
1000.93 -801.724 194.541,63 280 282 61,stand,18.6975 142.28 0,,
|
||||
861.623 -729.947 194.916,281 61 283,stand,24.9158 105.679 0,,
|
||||
854.608 -666.817 198.326,282 279 64,stand,35.6219 -96.156 0,,
|
||||
771.145 -564.011 312.125,64,prone,15.5884 -8.10606 0,,
|
||||
544.167 -491.333 310.125,286 64 288,stand,11.2762 162.133 0,,
|
||||
626.67 -464.653 312.125,285 287 64,stand,14.0393 -97.8918 0,,
|
||||
633.186 -312.654 312.125,286,prone,7.82105 93.7537 0,,
|
||||
408.888 -462.09 312.125,289 285 292,stand,13.6932 -179.734 0,,
|
||||
236.766 -434.937 296.825,65 290 288,stand,13.1714 -168.512 0,,
|
||||
-59.6205 -443.047 299.465,291 65 66 289,stand,10.0677 -179.734 0,,
|
||||
-304.66 -427.181 296.213,66 290 65,stand,13.3472 -120.342 0,,
|
||||
387.649 -617.57 312.125,64 65 288,stand,14.3799 -104.973 0,,
|
||||
124.352 -828.191 312.125,65 294,stand,13.6932 -166.946 0,,
|
||||
5.32583 -810.442 304.125,293 295 147,stand,15.9344 96.8793 0,,
|
||||
-40.5904 -572.222 304.125,66 294 65 147,stand,12.1387 -92.8931 0,,
|
||||
-413.486 -450.189 168.125,141,prone,12.1387 94.7754 0,,
|
||||
1260.48 1208.55 187.402,201 46 204,stand,24.516 153.397 0,,
|
||||
1239.23 1371.53 184.125,204 299 199,stand,15.7104 25.7965 0,,
|
||||
1350.56 1311.27 187.047,201 298 199,stand,12.2607 -37.9187 0,,
|
||||
176.167 -1052.77 2.125,301 161 108,stand,11.2225 -28.9319 0,,
|
||||
387.089 -1098.47 2.125,300 160 162,stand,9.49768 80.8875 0,,
|
||||
|
@@ -0,0 +1,623 @@
|
||||
622
|
||||
-1133.21 -2180.29 -251.875,1 19 20,stand,,,
|
||||
-1117.09 -2208.62 -251.875,0 2 3 4 247,stand,,,
|
||||
-1371.74 -2321.64 -235.875,1 245 247,stand,,,
|
||||
-1326.65 -2116.28 -235.875,1 243 244,stand,,,
|
||||
-940.151 -2365.09 -251.583,1 5 6 7 247,stand,,,
|
||||
-755.273 -2342.07 -243.875,4 251 252,stand,,,
|
||||
-870.617 -2186.63 -243.875,4 248,stand,,,
|
||||
-1014.67 -2571.29 -261.953,4 8 10 247,stand,,,
|
||||
-1029.76 -2996.04 -253.025,7 9 24,stand,,,
|
||||
-547.604 -2973.73 -257.81,8 10 235,stand,,,
|
||||
-527.998 -2500.82 -263.21,9 7 11 234 253,stand,,,
|
||||
-236.715 -2420.48 -255.894,10 12 16 17 255 256,stand,,,
|
||||
-38.8684 -2851.23 -255.91,11 13 233 256,stand,,,
|
||||
486.36 -2817.42 -255.875,12 14 297 296,stand,,,
|
||||
989.421 -2735.41 -255.875,13 129 294 297 295,stand,,,
|
||||
202.209 -2361.5 -255.875,135 255 297 617,stand,,,
|
||||
13.4271 -2065.6 -247.875,11 136 149 257 616,stand,,,
|
||||
-435.046 -2070.8 -212.402,11 18 253 254 149,stand,,,
|
||||
-539.348 -1929.81 -186.958,17 29 254 253 326,stand,,,
|
||||
-870.775 -2036.8 -249.701,0 20 254,stand,,,
|
||||
-1106.49 -1960.19 -229.853,0 21 28 19,stand,,,
|
||||
-1603.33 -1977.3 -240.791,20 22 27,stand,,,
|
||||
-1613.19 -2457.64 -250.049,21 237 239,stand,,,
|
||||
-1646.51 -2964.52 -256.734,24 236 237,stand,,,
|
||||
-1455.49 -2978.97 -255.176,23 8 25,stand,,,
|
||||
-1453.06 -2709.53 -116.375,24 26,stand,,,
|
||||
-1333.02 -2701.68 -116.875,25 242 240,stand,,,
|
||||
-1600 -1809.54 -181.928,21 28 33,stand,,,
|
||||
-1237.25 -1511.44 -127.875,27 20 30 33,stand,,,
|
||||
-746.691 -1389.94 -124.255,18 30 151 190 325 326 327,stand,,,
|
||||
-1056.97 -1477.17 -127.875,29 28 31,stand,,,
|
||||
-1108.02 -1172.51 -55.6536,30 32 35,stand,,,
|
||||
-1109.56 -797.912 7.125,31 36 37,stand,,,
|
||||
-1595.7 -1492.62 -127.874,27 34 35 28 580 581,stand,,,
|
||||
-1611.78 -1151.58 -59.602,33 35 582,stand,,,
|
||||
-1453.21 -1175.45 -73.6335,34 36 31 33,stand,,,
|
||||
-1461.7 -675.178 -37.2284,35 32 40 37 579,stand,,,
|
||||
-1208.72 -491.438 -3.875,32 38 42 36 575,stand,,,
|
||||
-1046.27 -500.06 83.125,37 39,stand,,,
|
||||
-930.658 -497.418 -13.445,38 190 534,stand,,,
|
||||
-1680.11 -591.408 -29.3955,36 41 576 583,stand,,,
|
||||
-1686.03 -366.314 4.15606,40 50 559 557,stand,,,
|
||||
-1215.18 -365.417 4.125,37 43,stand,,,
|
||||
-852.717 -374.293 148.125,42 535 539,stand,,,
|
||||
-844.541 -59.21 148.125,45 536 535 543 544,stand,,,
|
||||
-574.296 -264.23 148.125,44 546 548 549,stand,,,
|
||||
-849.088 385.06 148.125,47 543 552,stand,,,
|
||||
-1333.06 380.077 1.54881,46 48 565,stand,,,
|
||||
-1482.96 371.003 2.42599,47 60 554 564,stand,,,
|
||||
-1956.15 -370.22 7.10356,559 560 570,stand,,,
|
||||
-1347.01 -389.364 2.27185,41 51 571 572 574,stand,,,
|
||||
-1340.68 -0.876709 3.35995,50 52 571,stand,,,
|
||||
-765.037 23.3784 4.125,51 53 54,stand,,,
|
||||
-669.429 -153.737 3.92813,52 187,stand,,,
|
||||
-344.437 3.44399 1.68685,52 55 184,stand,,,
|
||||
-355.435 175.158 -0.87191,54 56 183,stand,,,
|
||||
-646.804 210.118 2.125,55 57,stand,,,
|
||||
-650.075 703.122 -39.4102,56 58 177 178 393,stand,,,
|
||||
-1071.63 720.576 -55.875,57 59 177,stand,,,
|
||||
-1100.62 520.762 -23.875,58 60 585,stand,,,
|
||||
-1479.15 524.393 -23.875,59 48 61 586,stand,,,
|
||||
-1698.02 565.871 -23.875,60 62 69 584,stand,,,
|
||||
-1617.16 953.122 48.125,61 63,stand,,,
|
||||
-1494.78 944.701 48.125,62 64 70,stand,,,
|
||||
-1494.64 703.355 -31.875,63 65,stand,,,
|
||||
-1264.37 737.266 -103.875,64 594 595 599,stand,,,
|
||||
-1239.24 1318.54 -103.875,67 599 601,stand,,,
|
||||
-1339.91 1551.83 -103.875,66 68 181 601 603 604,stand,,,
|
||||
-1766.61 1518.42 -135.535,67 69 73 74 604,stand,,,
|
||||
-1759.82 946.221 -116.512,68 61,stand,,,
|
||||
-1216.8 925.849 48.125,63 71 588 587 589,stand,,,
|
||||
-1228.66 1466.14 48.125,70 72 591 592,stand,,,
|
||||
-1218.87 1843.78 48.125,71 73 593,stand,,,
|
||||
-1629.5 1867.75 -143.875,72 68 76 604,stand,,,
|
||||
-2089.61 1528.63 -135.024,68 75 606,stand,,,
|
||||
-2023.11 2063.34 -143.875,74 76 607 608,stand,,,
|
||||
-1579.14 2059 -143.875,75 73 77,stand,,,
|
||||
-1259.67 1987.68 -139.326,76 78 609,stand,,,
|
||||
-1108.64 1979.53 -143.875,77 181 407 610,stand,,,
|
||||
-1033.95 2567.91 -149.875,80 411 612 614,stand,,,
|
||||
-1033.54 2837.11 -148.975,79 81 613,stand,,,
|
||||
-766.898 2838.96 -143.875,80 418 411,stand,,,
|
||||
-568.661 2329.14 -139.875,83 84 408 413,stand,,,
|
||||
-814.628 2205.32 -139.875,82 407 408 409 410,stand,,,
|
||||
-378.906 2313.92 -135.875,82 416 432,stand,,,
|
||||
-365.235 2902.18 -135.875,416 417 434,stand,,,
|
||||
42.1309 2959.69 -135.875,434 619 620,stand,,,
|
||||
190.62 2634.62 -135.875,91 433 440 619,stand,,,
|
||||
759.238 2523.91 -135.875,89 93 440 444 445 450,stand,,,
|
||||
742.965 2912.62 -135.875,88 437 438 439,stand,,,
|
||||
-139.565 2440.77 -135.875,416 431 433 435 454,stand,,,
|
||||
233.714 2380.94 -135.875,87 92 435 436 444,stand,,,
|
||||
295.788 1973.06 -153.147,91 173 401 402 207 404,stand,,,
|
||||
759.164 2297.33 -135.875,88 94 442,stand,,,
|
||||
962.735 2267.57 -166.134,93 95 207 224 458,stand,,,
|
||||
985.76 2800.16 -176.899,94 96 457,stand,,,
|
||||
1282.07 3040.06 -186.404,95 97 455 456 457,stand,,,
|
||||
1728.8 2653.98 -183.897,96 98 457 459 467 466,stand,,,
|
||||
2317.64 2563.94 -172.811,97 99 226 465,stand,,,
|
||||
2688.57 2682.52 -177.261,98 100 468,stand,,,
|
||||
2889.58 2183.53 -178.667,99 101 464 465,stand,,,
|
||||
2830.04 1626.87 -177.415,100 102 463 472,stand,,,
|
||||
3133.56 1346.65 -174.736,101 103 471 472,stand,,,
|
||||
3129.47 773.532 -159.899,102 104 220 473,stand,,,
|
||||
3460.31 580.085 -159.875,103 105 116 477,stand,,,
|
||||
3417.24 142.926 -170.309,104 106 115 116 473,stand,,,
|
||||
3798.67 138.346 -166.801,105 107 110 477,stand,,,
|
||||
4110.28 115.387 -156.417,106 109 477 481,stand,,,
|
||||
3973.7 674.299 -156.611,477 480 478 479,stand,,,
|
||||
4088.71 -320.801 -149.875,107 110 492 493,stand,,,
|
||||
3790.97 -325.996 -149.875,109 106 489 490 491,stand,,,
|
||||
3834.37 -680.917 -164.139,112 113 485 488 489,stand,,,
|
||||
4204.25 -586.143 -173.106,111 486 487,stand,,,
|
||||
3527.55 -708.468 -168.118,111 114 115 485,stand,,,
|
||||
3105.33 -648.348 -167.931,113 117 118 217 218,stand,,,
|
||||
3373.41 -272.473 -169.102,113 105,stand,,,
|
||||
3023.54 114.913 -177.523,105 117 219 473 104 218,stand,,,
|
||||
3000.93 -461.014 -172.32,116 114 218 217,stand,,,
|
||||
3079.41 -1216.08 -167.191,114 119 494,stand,,,
|
||||
3046.45 -1756.98 -167.625,118 120 496 497,stand,,,
|
||||
2838.7 -2011.8 -171.652,119 121 497,stand,,,
|
||||
2254.92 -2011.66 -164.642,120 122 125 126,stand,,,
|
||||
2101.92 -2398.55 -176.617,121 123 498,stand,,,
|
||||
1899.32 -2419.3 -182.415,122 124 125,stand,,,
|
||||
1474.26 -2377.11 -256.107,123 128 129,stand,,,
|
||||
1919.82 -2001.39 -166.499,123 121 128,stand,,,
|
||||
2248.57 -1637.91 -193.777,121 127 216,stand,,,
|
||||
1767.34 -1656.59 -193.895,126 128 231 232,stand,,,
|
||||
1743.27 -2021.96 -190.956,127 125 124,stand,,,
|
||||
1150.48 -2437.89 -255.875,124 14 130 293 294 299,stand,,,
|
||||
1233.77 -1884.92 -255.875,129 131 298 304 308,stand,,,
|
||||
1013.48 -1479.13 -255.784,130 132 306 307 309,stand,,,
|
||||
820.814 -1487.65 -247.875,131 264 310 312,stand,,,
|
||||
849.669 -1890.17 -239.875,263 264 262 265,stand,,,
|
||||
840.664 -2371.26 -239.875,265 266 269,stand,,,
|
||||
305.773 -2354.54 -255.875,15 257 266 268 617,stand,,,
|
||||
11.2398 -1881.42 -239.875,16 137 258,stand,,,
|
||||
275.02 -1884.28 -239.875,136 138 263,stand,,,
|
||||
267.48 -1606.45 -239.875,137 139 140,stand,,,
|
||||
3.94901 -1617.13 -239.875,138 260 261,stand,,,
|
||||
681.107 -1605.59 -79.875,138 141 272,stand,,,
|
||||
648.916 -1885.84 -79.875,140 142 148 272,stand,,,
|
||||
638.718 -2004.31 -79.875,141 144 285 284,stand,,,
|
||||
652.857 -2334.04 -79.875,285 291 290 289 292,stand,,,
|
||||
867.249 -2009.85 56.125,142 322,stand,,,
|
||||
532.956 -1887.77 56.125,320 322,stand,,,
|
||||
124.248 -1731.07 56.125,147 316 318 320 319,stand,,,
|
||||
553.436 -1588.44 56.125,146 323,stand,,,
|
||||
283.559 -1884.99 -79.875,141 277 278,stand,,,
|
||||
-158.747 -2016.48 -247.875,16 150 17,stand,,,
|
||||
-120.732 -1492.29 -121.875,149 151 313 317 324 325,stand,,,
|
||||
-416.848 -1319.42 -121.875,150 29 152 324,stand,,,
|
||||
-381.3 -1063.49 6.125,151 328 331,stand,,,
|
||||
-97.4868 -1208.32 6.125,154 329 331 332 532,stand,,,
|
||||
110.292 -1131.63 0.125,153 155 188 332 333 334,stand,,,
|
||||
347.046 -985.978 0.124998,154 156 191 335 334,stand,,,
|
||||
320.71 -465.24 0.125,155 157 185,stand,,,
|
||||
323.945 -322.329 2.125,156 180 348 354 355 356,stand,,,
|
||||
1137.32 -527.449 50.125,206 346 511,stand,,,
|
||||
1295.54 -98.5209 50.125,160 192 509,stand,,,
|
||||
1067.89 -52.2642 50.125,159 161 507,stand,,,
|
||||
1038.96 226.808 2.125,160 351 368,stand,,,
|
||||
356.537 800.794 1.04918,178 179 370 395 397 400 399,stand,,,
|
||||
477.613 1273.86 4.125,374 373 377 380 400,stand,,,
|
||||
-50.8697 1216.69 18.125,165 167 380 382 383,stand,,,
|
||||
-91.1568 1415.54 18.125,164 166 384 385,stand,,,
|
||||
-389.127 1388.11 18.125,165 167 386 391,stand,,,
|
||||
-376.345 1188.12 18.125,166 164 168 388,stand,,,
|
||||
-490.205 1195.97 18.125,167 169 387,stand,,,
|
||||
-501.703 1523.16 18.125,168 170,stand,,,
|
||||
85.9419 1573.79 -69.875,169 171 396,stand,,,
|
||||
143.844 1456.41 -69.875,170 172 396,stand,,,
|
||||
399.381 1467.4 -178.628,171 173 208,stand,,,
|
||||
379.029 1688.66 -191.522,172 92 174 207 208 403,stand,,,
|
||||
-34.7254 1694.47 -191.875,173 175 404 182,stand,,,
|
||||
-519.569 1736.34 -193.255,174 176 182 405 181 615,stand,,,
|
||||
-820.671 1418.54 -179.113,175 177 181 394,stand,,,
|
||||
-903.339 911.199 -75.7508,176 58 57 393,stand,,,
|
||||
-146.552 628.135 0.124999,57 162 183 395,stand,,,
|
||||
320.134 216.392 0.124999,162 183 621,stand,,,
|
||||
394.894 -105.836 2.125,157 357 358 621,stand,,,
|
||||
-977.024 1577.82 -149.377,176 78 67 175 603 605 407,stand,,,
|
||||
-542.676 1963.81 -153.251,175 406 174 407,stand,,,
|
||||
-15.9607 243.646 0.124998,178 55 179 184,stand,,,
|
||||
-52.1884 -206.78 0.125001,183 54 185,stand,,,
|
||||
-62.5405 -432.95 0.0803193,184 156 186 188,stand,,,
|
||||
-457.464 -724.025 -6.38167,185 187 189 190 533,stand,,,
|
||||
-712.442 -551.66 -19.5893,186 53,stand,,,
|
||||
46.6553 -852.752 0.00537964,185 154 531,stand,,,
|
||||
-385.177 -948.645 0.0791609,186 531 533,stand,,,
|
||||
-806.038 -883.929 -32.9141,186 29 39 533,stand,,,
|
||||
761.843 -957.95 0.124998,155 339 344 345,stand,,,
|
||||
1310.15 276.451 50.125,159 193 197 506,stand,,,
|
||||
1413.14 502.884 -37.875,192 194 504 505,stand,,,
|
||||
1494.5 235.92 -157.875,193 195 499 500 503,stand,,,
|
||||
1669.22 -173.514 -197.875,194 196 484,stand,,,
|
||||
2150.58 -212.518 -183.505,195 212 213 218,stand,,,
|
||||
1262.3 553.187 162.125,192 198,stand,,,
|
||||
1379.52 551.118 162.125,197 199,stand,,,
|
||||
1354.9 374.287 250.125,198 200 530,stand,,,
|
||||
1036.49 380.341 250.125,199 201 529,stand,,,
|
||||
782.125 547.901 250.125,200 202,stand,,,
|
||||
607.078 433.752 250.125,201 524 527 525 526 528,stand,,,
|
||||
616.411 -110.422 250.125,519 522 524,stand,,,
|
||||
610.269 -700.868 250.125,205 518 519,stand,,,
|
||||
942.47 -822.291 250.125,204 206 516,stand,,,
|
||||
1179.91 -804.448 162.125,205 158 517,stand,,,
|
||||
886.6 1737.58 -191.875,94 208 173 92,stand,,,
|
||||
699.371 1448.84 -179.06,207 172 209 173,stand,,,
|
||||
1092.19 1108.15 -190.707,208 210 225 474,stand,,,
|
||||
1584.6 848.164 -183.559,209 211 476 225,stand,,,
|
||||
1978.16 585.263 -174.84,210 212 221,stand,,,
|
||||
2186.87 218.964 -132.282,211 196 219,stand,,,
|
||||
2135.72 -708.141 -131.515,196 214 227,stand,,,
|
||||
2100.71 -1147.41 -197.993,213 215 227 232,stand,,,
|
||||
2443.24 -1180.24 -192.339,214 216 217,stand,,,
|
||||
2445.18 -1538.42 -192.553,215 126 495,stand,,,
|
||||
2563.04 -661.706 -179.103,215 114 218 117,stand,,,
|
||||
2585.81 -203.75 -175.262,217 219 196 117 116 114,stand,,,
|
||||
2670.09 262.927 -144.443,218 212 220 116 473,stand,,,
|
||||
2725.72 697.762 -159.71,219 103 221 473,stand,,,
|
||||
2299.69 868.707 -142.325,220 211 222 470 474 476,stand,,,
|
||||
2114.87 1365.58 -160.875,221 223 461 470 474,stand,,,
|
||||
1831.95 1770.74 -158.455,222 224 226 458 474,stand,,,
|
||||
1485.94 2032.9 -160.534,223 94 225 458 460,stand,,,
|
||||
1327.42 1498.16 -191.754,224 209 210,stand,,,
|
||||
2085.51 2303.36 -154.499,98 223 460 462,stand,,,
|
||||
1674.51 -845.609 -111.894,213 228 214 229 232,stand,,,
|
||||
1547.01 -347.064 2.45901,227,stand,,,
|
||||
1478.75 -981.729 -120.173,227 230 231,stand,,,
|
||||
1189.84 -889.957 28.125,229 338 339 340,stand,,,
|
||||
1492.21 -1345.37 -139.127,229 127,stand,,,
|
||||
1901.47 -1248.43 -192.105,127 214 227,stand,,,
|
||||
-364.875 -2924.88 -247.875,12 234,crouch,2.41699 50.1286 0,,
|
||||
-341.554 -2650.99 -254.27,233 10,stand,11.5686 -150.328 0,,
|
||||
-409.125 -3114.88 -257.397,9,crouch,1.90063 132.147 0,,
|
||||
-1731.92 -3037.31 -259.952,23,crouch,0.692139 39.9387 0,,
|
||||
-1628.66 -2749.35 -253.203,238 23 22,stand,19.1656 72.2276 0,,
|
||||
-1428.24 -2812.73 -262.011,237,prone,-2.76306 110.899 0,,
|
||||
-1228.06 -2505.38 -248.482,22,crouch,5.35034 165.452 0,,
|
||||
-1190.73 -2856.4 -116.094,26 241,crouch,7.08069 11.7808 0,,
|
||||
-1191.77 -2545.63 -115.875,240 242,crouch,7.25098 43.2072 0,,
|
||||
-1380.47 -2545.63 -116.182,26 241,crouch,3.97156 90.8604 0,,
|
||||
-1491.28 -2179.38 -235.875,3,crouch,2.2467 12.2916 0,,
|
||||
-1375.28 -2073.63 -235.875,3,crouch,3.10913 -35.021 0,,
|
||||
-1491.28 -2347.38 -223.875,246 2,crouch,3.80127 14.5383 0,,
|
||||
-1478.78 -2217.63 -235.875,245,crouch,1.03821 -91.4797 0,,
|
||||
-1143.52 -2404.53 -248.751,1 7 4 2,stand,7.59705 141.441 0,,
|
||||
-788.016 -2079.73 -231.875,249 6,crouch,3.4552 -129.295 0,,
|
||||
-711.751 -2184.7 -243.875,248,crouch,1.90063 144.715 0,,
|
||||
-689.269 -2215.65 -243.875,251,crouch,4.83398 -143.286 0,,
|
||||
-783.214 -2284.12 -243.875,5 250,stand,20.7202 -56.2685 0,,
|
||||
-675.651 -2336.47 -243.875,5,crouch,1.90063 -173.85 0,,
|
||||
-516.074 -2286.21 -242.587,17 10 254 18,stand,7.42676 90.4978 0,,
|
||||
-714.033 -2006.15 -196.129,253 19 18 17,stand,14.848 45.9428 0,,
|
||||
25.2592 -2326.97 -255.963,15 11 256 616,stand,12.9474 44.564 0,,
|
||||
-61.8595 -2528.06 -255.875,255 12 11,stand,19.8578 -100.824 0,,
|
||||
487.875 -1976.93 -228.789,135 16 617,crouch,7.59705 -133.623 0,,
|
||||
-70.875 -1789.13 -239.875,136,crouch,-0.346069 -43.4805 0,,
|
||||
-70.875 -1750.88 -239.875,260,crouch,1.37878 33.8688 0,,
|
||||
6.84355 -1700.63 -239.875,259 139,stand,18.9954 15.5656 0,,
|
||||
170.875 -1723.88 -239.875,139,crouch,4.48792 131.768 0,,
|
||||
633.125 -1612.63 -239.875,264 263 133,crouch,1.03821 -41.069 0,,
|
||||
704.743 -1875.62 -239.875,137 133 262 264,stand,19.1656 47.8544 0,,
|
||||
831.185 -1664.75 -239.875,133 262 263 132,stand,24.6918 -176.085 0,,
|
||||
854.946 -2014.63 -239.875,267 133 134 270,stand,11.2225 -138.633 0,,
|
||||
595.491 -2386.34 -239.875,134 267 135,stand,15.7104 83.5819 0,,
|
||||
626.556 -2022.65 -239.875,265 266 271,stand,16.9189 -3.09471 0,,
|
||||
498.875 -2454.88 -247.875,135,crouch,2.41699 132.098 0,,
|
||||
906.875 -2446.88 -211.875,134,crouch,6.90491 138.827 0,,
|
||||
906.875 -1973.13 -239.875,265,crouch,0.516357 -127.24 0,,
|
||||
537.125 -1989.13 -239.875,267,crouch,6.21826 -29.6816 0,,
|
||||
793.25 -1826.56 -79.875,273 274 141 140,stand,15.8862 106.379 0,,
|
||||
831.95 -1640.87 -79.875,272 275,stand,10.7062 20.9104 0,,
|
||||
884.875 -1918.88 -79.875,272,crouch,2.58728 138.316 0,,
|
||||
777.951 -1573.13 -79.875,273,crouch,1.72485 -122.923 0,,
|
||||
301.908 -1629.06 -79.875,280 277 282,stand,14.3317 -167.132 0,,
|
||||
302.058 -1743.96 -79.875,276 148 279,stand,17.9572 -163.852 0,,
|
||||
-22.4581 -1876.1 -79.875,148 279,stand,16.9189 92.3765 0,,
|
||||
-19.6405 -1748.29 -79.875,278 280 277,stand,17.9572 20.2073 0,,
|
||||
-25.1041 -1623.8 -79.875,276 279 281,stand,18.4735 4.49684 0,,
|
||||
-70.875 -1573.13 -79.875,280,crouch,3.97156 -61.2948 0,,
|
||||
338.871 -1588.13 -39.875,276,crouch,7.76733 -131.574 0,,
|
||||
537.125 -2142.88 -79.875,285 284,crouch,3.10913 35.9122 0,,
|
||||
537.125 -1973.13 -79.875,142 283,crouch,2.07092 -33.5049 0,,
|
||||
635.805 -2095.89 -79.875,287 283 142 143,stand,13.2935 -81.3284 0,,
|
||||
906.875 -2122.38 -79.875,287,crouch,3.62549 175.768 0,,
|
||||
812.231 -2112.14 -79.875,288 286 285,stand,5.00977 172.659 0,,
|
||||
882.375 -1993.63 -79.875,287,crouch,3.4552 -143.319 0,,
|
||||
537.125 -2240.26 -79.875,290 143,crouch,12.085 -177.349 0,,
|
||||
537.129 -2416.89 -79.875,143 289,crouch,10.7062 179.542 0,,
|
||||
906.875 -2264.06 -79.875,143,crouch,11.0522 0.146255 0,,
|
||||
951.392 -2416.36 -69.875,293 143,climb,85 0.486832 0,,
|
||||
953.126 -2415.24 -250.698,292 129 294,climb,-85 179.707 0,,
|
||||
1009.66 -2533.6 -255.875,293 129 14 295,stand,6.34033 -141.967 0,,
|
||||
929.463 -2600.74 -239.875,14 294 296,stand,14.1076 -170.466 0,,
|
||||
609.598 -2606.55 -247.875,297 13 295,stand,13.4155 -172.191 0,,
|
||||
374.38 -2613.75 -255.875,296 15 13 14,stand,18.2495 -153.031 0,,
|
||||
996.223 -2059.85 -228.432,299 130,prone,1.67664 -3.37126 0,,
|
||||
992.577 -2300.79 -226.681,298 129,prone,3.92334 2.32515 0,,
|
||||
945.136 -1867.64 -247.875,301,crouch,4.09363 -1.83317 0,,
|
||||
1002.45 -1870.77 -247.875,302 300 304,stand,58.6572 29.0714 0,,
|
||||
997.973 -1718.01 -247.875,303 301,stand,38.4534 85.8762 0,,
|
||||
945.125 -1723.73 -247.875,302,crouch,7.89488 25.2701 0,,
|
||||
994.35 -1998.87 -247.875,301 305 130,stand,67.9791 -95.2499 0,,
|
||||
945.125 -1998.88 -247.875,304,crouch,3.2312 0.924397 0,,
|
||||
945.125 -1678.88 -255.875,131,crouch,4.95605 45.9793 0,,
|
||||
1189.75 -1411.24 -255.875,308 131 309,stand,17.2168 -62.6315 0,,
|
||||
1379.98 -1743.38 -255.875,130 307,stand,13.9374 -143.436 0,,
|
||||
1021.13 -1319.13 -255.875,307 131,crouch,1.33057 -57.0889 0,,
|
||||
611.125 -1319.13 -255.875,132,crouch,3.40149 -45.6906 0,,
|
||||
151.125 -1394.9 -255.875,314,crouch,4.78577 -8.05143 0,,
|
||||
444.57 -1490.2 -255.875,132 313 314,stand,8.23545 -12.5393 0,,
|
||||
169.257 -1501.14 -121.875,312 315 150,stand,64.6997 178.079 0,,
|
||||
364.387 -1413.97 -255.875,312 311,stand,15.3161 171.526 0,,
|
||||
167.569 -1526.87 -118.568,316 313,climb,-85 -90.5753 0,,
|
||||
167.596 -1528.24 98.125,315 146,climb,85 90.7157 0,,
|
||||
104.875 -1260 -121.875,150 324,crouch,2.63552 -130.631 0,,
|
||||
-70.8749 -1719.62 56.125,146,crouch,12.9956 177.392 0,,
|
||||
-11.5637 -1903.25 56.125,320 146,stand,19.2139 11.1307 0,,
|
||||
235.845 -1883.61 56.125,146 319 145,stand,15.4126 -2.86039 0,,
|
||||
906.42 -1573.13 56.125,323,crouch,11.2708 38.4152 0,,
|
||||
866.246 -1874.02 56.125,323 144 145,stand,16.6211 -175.692 0,,
|
||||
869.694 -1690.63 56.125,321 322 147,stand,19.7302 159.276 0,,
|
||||
-164.598 -1352.93 -121.875,317 151 150,stand,14.0338 3.52816 0,,
|
||||
-391.004 -1556.49 -152.657,150 29 326,stand,5.91492 12.6743 0,,
|
||||
-578.717 -1653.52 -157.93,325 18 29,stand,12.9956 16.135 0,,
|
||||
-463.125 -1069.58 -57.0933,29,crouch,5.57434 -137.361 0,,
|
||||
-424.875 -1033.13 6.125,152,crouch,6.78284 -48.6075 0,,
|
||||
-99.125 -1242.88 6.125,153,crouch,-0.297832 109.563 0,,
|
||||
-352.875 -1222.37 6.125,331,crouch,2.46523 26.8521 0,,
|
||||
-253.977 -1142.35 6.125,153 152 330 532,stand,13.1714 5.79134 0,,
|
||||
31.5467 -1224.32 28.125,153 154,crouch,20.0763 -87.8012 0,,
|
||||
-46.5076 -1038.96 0.124999,154,crouch,4.53615 92.2757 0,,
|
||||
355.362 -1205.82 0.124998,154 335 155,stand,15.5884 158.386 0,,
|
||||
487.351 -1161.15 0.124998,334 155 336,stand,10.9247 0.226765 0,,
|
||||
731.15 -1230.75 0.124998,335 337,stand,12.4792 0.0674629 0,,
|
||||
960.69 -1239.78 0.124998,336 338 339,stand,17.1429 7.8348 0,,
|
||||
1159.78 -1244.05 0.124998,337 230,stand,27.4976 105.388 0,,
|
||||
957.659 -914.765 0.124998,230 191 337 340 345 344,stand,15.4126 -173.643 0,,
|
||||
1133.64 -883.609 0.124999,230 339,prone,-1.68211 -171.572 0,,
|
||||
503.128 -816.875 42.125,343,crouch,1.77309 49.072 0,,
|
||||
503.125 -583.125 42.125,343,crouch,4.88222 -35.1767 0,,
|
||||
503.35 -707.71 42.125,344 341 342,stand,16.275 -8.41398 0,,
|
||||
780.193 -711.264 2.125,345 191 343 347 346 339,stand,20.4224 3.3304 0,,
|
||||
882.28 -705.484 2.125,339 344 346 347 191,stand,19.2139 -78.3475 0,,
|
||||
873.451 -494.171 2.125,347 345 344 349 348 158 362,stand,7.81555 -98.3701 0,,
|
||||
752.88 -476.24 2.125,348 346 344 345 349,stand,13.1714 -125.133 0,,
|
||||
657.649 -294.985 2.125,347 353 346 350 157,stand,11.7871 -70.5692 0,,
|
||||
835.63 -315.473 2.125,350 346 353 347 361 362,stand,8.33191 83.2779 0,,
|
||||
826.495 -113.651 2.125,351 349 348 352 363,stand,12.3035 73.2584 0,,
|
||||
823.684 73.1308 2.125,352 161 350 353 368,stand,10.5786 98.6368 0,,
|
||||
703.289 69.3944 2.125,353 351 350 359 367,stand,13.858 -153.098 0,,
|
||||
662.851 -126.228 2.125,348 352 351 349 359 360,stand,9.19983 -97.3318 0,,
|
||||
464.875 -392.875 2.125,157,crouch,2.28945 132.87 0,,
|
||||
256.625 -392.872 2.125,157,crouch,3.84401 34.4492 0,,
|
||||
256.625 -210.125 2.125,157,crouch,-0.81419 -50.8487 0,,
|
||||
464.872 45.6749 2.125,180,crouch,0.910664 -130.961 0,,
|
||||
247.128 -161.375 2.125,180 621,crouch,-2.36876 43.7711 0,,
|
||||
503.125 -74.868 2.125,360 353 352,crouch,2.8113 32.0377 0,,
|
||||
503.129 136.875 2.125,359 353,crouch,2.8113 -50.4971 0,,
|
||||
1040.88 -175.125 2.125,349,crouch,3.49794 -155.988 0,,
|
||||
1040.88 -337.777 2.125,346 349,crouch,-1.50633 -111.268 0,,
|
||||
944.875 -112.103 2.125,350,crouch,-0.297832 -179.295 0,,
|
||||
527.125 580.633 2.125,365,crouch,-1.68211 -8.70512 0,,
|
||||
724.813 554.74 2.125,367 364 366 371,stand,8.33191 1.82528 0,,
|
||||
874.465 554.616 2.125,365 368 367 371 370,stand,9.02405 -50.8377 0,,
|
||||
776.191 374.268 2.125,368 365 366 352,stand,9.02405 -79.6658 0,,
|
||||
955.236 395.729 2.125,161 367 366 369 351,stand,6.26099 -45.8279 0,,
|
||||
1120.88 397.044 2.125,368,crouch,1.94338 -179.12 0,,
|
||||
548.035 722.828 0.555806,366 162 375,stand,12.8253 176.239 0,,
|
||||
933.35 689.335 0.125,372 366 365 375 376,stand,11.441 130.492 0,,
|
||||
870.951 893.652 0.125,373 371,stand,12.3035 136.194 0,,
|
||||
580.483 1073.07 0.514146,163 372 400,stand,11.9629 139.297 0,,
|
||||
408.313 1358.5 6.81588,163,prone,-0.473614 -52.3538 0,,
|
||||
546.486 623.125 0.124998,370 371,crouch,3.49794 177.612 0,,
|
||||
1046.51 623.125 36.125,371,crouch,10.5786 35.6961 0,,
|
||||
526.448 1379.44 36.1254,163,crouch,14.8962 76.2796 0,,
|
||||
362.148 1182.19 18.125,380 379,crouch,4.36586 152.596 0,,
|
||||
315.176 1388.63 18.125,380 378,crouch,5.39856 -115.717 0,,
|
||||
194.914 1260.62 18.125,378 164 379 163 381,stand,9.37012 -145.765 0,,
|
||||
105.128 1346.16 18.125,380,crouch,0.910664 -38.7198 0,,
|
||||
22.8802 1067.18 18.125,383 164,crouch,-0.81419 122.202 0,,
|
||||
-147.22 1052.3 18.125,382 164,crouch,0.0482368 72.8189 0,,
|
||||
34.8938 1433.55 18.125,385 165,crouch,12.6495 15.3 0,,
|
||||
40.3917 1371.86 18.125,384 165,crouch,1.25673 170.861 0,,
|
||||
-398.085 1454.71 18.125,166,crouch,0.910664 -85.7138 0,,
|
||||
-497.121 978.52 18.125,168 388,crouch,4.88222 63.8101 0,,
|
||||
-416.934 1051.98 18.125,387 167 390 392,stand,13.512 -18.7247 0,,
|
||||
-258.099 999.432 18.125,390,crouch,0.910664 -80.0174 0,,
|
||||
-252.041 1065.77 18.125,389 388 397,stand,21.2848 166.021 0,,
|
||||
-495.037 1385.47 18.125,166,stand,21.4551 0.175223 0,,
|
||||
-567.7 1043.13 -1.675,388 393 394,stand,0.394306 1.72979 0,,
|
||||
-562.748 952.355 16.325,392 57 177 395,stand,28.7115 -179.731 0,,
|
||||
-590.602 1299.89 -133.463,392 176,stand,29.3982 101.189 0,,
|
||||
-294.164 840.786 -0.939438,178 393 162 397,stand,10.9247 -34.1736 0,,
|
||||
75.7944 1406.08 -69.875,171 170,crouch,3.49794 55.9693 0,,
|
||||
-241.204 907.905 0.125,390 395 162 399,stand,25.4266 -86.1609 0,,
|
||||
100.743 1120.92 0.124999,399 400,crouch,2.46523 -30.2185 0,,
|
||||
140.375 935.94 0.124999,398 162 397,stand,16.275 170.93 0,,
|
||||
434.38 1140.24 0.424407,398 162 163 373,stand,19.9005 28.4815 0,,
|
||||
800.172 2096.88 -151.74,92,crouch,3.49792 -139.313 0,,
|
||||
97.125 2170.88 -135.875,92,crouch,3.67371 -41.7541 0,,
|
||||
169.872 1569.93 -182.052,173,crouch,1.77309 32.8431 0,,
|
||||
-34.777 1890.93 -187.638,174 92 405,stand,7.46948 41.3135 0,,
|
||||
-43.2711 2082.81 -145.181,404 406 175,stand,12.4792 -174.161 0,,
|
||||
-309.76 2049.47 -144.249,182 405,stand,12.6495 -164.142 0,,
|
||||
-840.672 1990.63 -148.655,182 78 83 181,stand,6.78284 86.2311 0,,
|
||||
-518.676 2107.19 -139.875,82 83,crouch,0.564594 136.131 0,,
|
||||
-892.875 2095.13 -139.875,83,crouch,1.77309 23.0488 0,,
|
||||
-818.291 2329.08 -139.875,411 83 614,stand,17.1429 -89.5282 0,,
|
||||
-784.904 2601.76 -139.875,412 410 415 79 81,stand,16.9672 144.091 0,,
|
||||
-642.602 2592.43 -139.875,413 411 414 418,stand,17.1429 9.24444 0,,
|
||||
-563.334 2538.76 -139.875,82 412 414 416,stand,14.8962 -4.39511 0,,
|
||||
-520.008 2688.88 -139.875,413 412,crouch,2.46523 -127.645 0,,
|
||||
-892.875 2655.27 -139.875,411,crouch,3.15735 -61.3263 0,,
|
||||
-383.735 2527.46 -135.875,413 84 85 90 454,stand,16.4508 2.04839 0,,
|
||||
-445.991 2982.88 -103.875,85,crouch,4.53613 -45.5938 0,,
|
||||
-645.445 2831.37 -143.875,412 81 419,stand,22.1472 90.7959 0,,
|
||||
-536.764 2739.13 -142.278,420 418,climb,-85 -89.9841 0,,
|
||||
-534.043 2732.55 36.125,419 421,climb,85 92.334 0,,
|
||||
-544.858 2589.21 28.125,420 422 429 430,stand,23.5315 -104.008 0,,
|
||||
-813.641 2625.15 28.125,421 423 428 429,stand,19.7357 -160.434 0,,
|
||||
-785.696 2283.54 28.125,424 422 425 428,stand,11.1005 -99.6576 0,,
|
||||
-900.875 2087.13 28.125,423,crouch,8.5132 -87.3803 0,,
|
||||
-705.876 2087.13 28.125,423 426 428,crouch,5.40407 -88.7481 0,,
|
||||
-483.129 2087.13 28.125,425 427,crouch,9.19985 -28.988 0,,
|
||||
-483.125 2378.79 28.125,426 428,crouch,7.30471 -9.48178 0,,
|
||||
-635.649 2387.23 28.125,427 429 423 425 422,stand,16.6266 34.7217 0,,
|
||||
-641.59 2540.69 28.125,428 421 422,stand,20.9442 47.1528 0,,
|
||||
-483.125 2605.56 28.125,421,crouch,9.02956 -19.6826 0,,
|
||||
-105.613 2152.67 -135.875,432 90,stand,9.89199 -177.166 0,,
|
||||
-388.185 2167.21 -135.875,84 431,stand,8.85927 102.54 0,,
|
||||
-122.295 2642.36 -135.875,90 87 434,stand,9.19985 2.73504 0,,
|
||||
-98.8007 2934.89 -135.875,433 85 86 619,stand,19.906 59.5453 0,,
|
||||
-34.0914 2361.31 -135.875,90 91 436,stand,23.8776 1.19146 0,,
|
||||
65.0084 2281.45 -71.875,435 91,crouch,6.2665 -92.2033 0,,
|
||||
269.125 2982.88 -135.875,89 439,crouch,-0.638409 -47.4957 0,,
|
||||
800.875 2982.88 -135.875,89,crouch,-1.50084 -128.13 0,,
|
||||
456.225 2864.06 -135.875,437 440 618 89,stand,14.5557 -177.003 0,,
|
||||
463.056 2586.43 -135.875,439 87 88 444,stand,9.89199 -29.5331 0,,
|
||||
472.097 2170.59 -135.875,442 444,stand,14.0393 -1.53442 0,,
|
||||
676.47 2168.02 -135.875,441 93 443,stand,7.47499 67.8717 0,,
|
||||
800.875 2135.13 -135.875,442,crouch,1.94887 138.322 0,,
|
||||
466.97 2444.32 -135.875,440 441 88 91 445 450,stand,68.7732 133.317 0,,
|
||||
532.354 2428.73 -103.875,446 444 88,stand,47.3608 -86.3049 0,,
|
||||
537.176 2386.63 -71.875,447 445,stand,2.81679 -83.7122 0,,
|
||||
537.806 2321.86 -26.875,449 448 446,stand,17.489 -87.3431 0,,
|
||||
573.445 2244.98 -26.875,449 447,prone,5.058 -58.6688 0,,
|
||||
542.082 2246.91 -26.875,448 447,prone,2.64101 -144.182 0,,
|
||||
584.347 2533 -103.875,451 444 88,stand,41.6644 93.2709 0,,
|
||||
581.96 2593.41 -71.875,452 450,stand,41.6644 93.2709 0,,
|
||||
580.268 2639.99 -26.875,453 451,stand,40.802 92.7545 0,,
|
||||
528.31 2723.32 -26.875,452,stand,39.7638 72.8967 0,,
|
||||
-291.409 2330.03 -71.875,416 90,crouch,1.6028 -85.4053 0,,
|
||||
1083.13 3176.87 -188.673,96,crouch,1.26223 -44.3109 0,,
|
||||
1437.64 3176.88 -187.201,96,crouch,-3.40147 -129.949 0,,
|
||||
1268.15 2752.36 -187.909,96 95 97 458,stand,4.36586 -74.8639 0,,
|
||||
1464.02 2428.87 -155.853,457 224 459 223 94 460,stand,5.92043 -58.8129 0,,
|
||||
1732.3 2456.21 -122.279,458 97 460,stand,23.0152 -169.489 0,,
|
||||
1877 2266.41 -129.246,459 226 224 458,stand,16.2805 148.235 0,,
|
||||
2246.79 1693.32 -131.928,462 222 463,stand,15.7642 -18.7073 0,,
|
||||
2091.4 1957.54 -111.338,226 461,stand,10.2381 107.85 0,,
|
||||
2532.45 1651.01 -120.47,461 101 470,stand,16.4563 -8.57238 0,,
|
||||
3396.58 2136.14 -165.754,100,crouch,1.94887 173.054 0,,
|
||||
2502.64 2328.94 -175.907,100 98,stand,9.89199 148.192 0,,
|
||||
2113.3 2939.74 -180.214,467 468 97 469,stand,7.99135 178.228 0,,
|
||||
1806.24 2958.18 -179.301,97 466 469,stand,15.4181 -109.081 0,,
|
||||
2367.11 2866.64 -175.328,466 99,stand,5.92043 -33.6377 0,,
|
||||
1739.33 3192.48 -183.439,467 466,crouch,2.47072 -58.335 0,,
|
||||
2484.55 1517.5 -121.795,463 222 221,stand,23.5315 125.016 0,,
|
||||
3358.57 1566.88 -157.563,102,crouch,5.57436 -133.827 0,,
|
||||
2813.28 1284.92 -149.012,101 102,crouch,4.36586 44.8761 0,,
|
||||
2925.4 486.537 -171.495,103 220 116 219 105,stand,13.5175 -87.3663 0,,
|
||||
1820.38 1223.72 -106.434,209 222 221 223 475 476,stand,17.8351 137.98 0,,
|
||||
1633.51 1408.1 -58.9387,474,prone,0.916157 163.666 0,,
|
||||
1991.27 1009.38 -102.298,474 210 221,prone,0.05373 -73.4192 0,,
|
||||
4009.61 359.676 -125.217,107 106 104 108,stand,12.655 80.8014 0,,
|
||||
3813.66 1191.23 -159.875,480 108,crouch,1.94887 -87.8827 0,,
|
||||
3605.33 960.873 -156.815,480 108,crouch,1.43251 -34.8737 0,,
|
||||
3775.38 983.874 -159.875,479 478 108,stand,15.5939 37.1362 0,,
|
||||
4317.36 39.6668 -150.223,107,crouch,2.8113 142.144 0,,
|
||||
1231.13 -240.872 -229.875,484 483,crouch,2.29492 14.3379 0,,
|
||||
1231.13 -85.125 -197.875,482 484,crouch,5.57434 -21.0546 0,,
|
||||
1465.26 -179.83 -197.875,195 482 483,stand,11.4465 -3.61926 0,,
|
||||
3470.31 -1148.88 -143.875,113 111,crouch,1.77856 54.7401 0,,
|
||||
4324.88 -487.125 -163.658,112,crouch,3.6792 -136.911 0,,
|
||||
4011.13 -409.125 -161.187,112,crouch,3.84949 -44.8784 0,,
|
||||
3972.88 -430.125 -149.875,111 489,crouch,2.64099 -147.617 0,,
|
||||
3807.14 -446.012 -149.875,110 111 488,stand,14.9017 -11.046 0,,
|
||||
3639.21 -421.11 -149.875,110,crouch,1.60278 38.1672 0,,
|
||||
3642.13 -175.742 -149.875,110,crouch,2.81128 -36.7705 0,,
|
||||
4114.88 -370.875 -149.875,109,crouch,6.09619 100.152 0,,
|
||||
4016.28 -153.125 -149.875,109,crouch,0.916138 -62.3247 0,,
|
||||
2840.51 -1328.88 -159.807,118 495,stand,21.9769 -174.896 0,,
|
||||
2650.98 -1342.71 -174.53,494 216 496,stand,25.2618 -175.237 0,,
|
||||
2682.71 -1574.67 -175.002,495 119,stand,20.4279 -78.7163 0,,
|
||||
3128.88 -2040.88 -173.207,120 119,crouch,4.01978 133.655 0,,
|
||||
2232.88 -2476.57 -176.941,122,crouch,0.740357 133.655 0,,
|
||||
1739.91 141.366 -156.875,194,crouch,2.12463 168.701 0,,
|
||||
1370.13 263.541 -157.875,501 194,stand,13.8635 96.0103 0,,
|
||||
1339.18 480.375 -157.875,502 500,crouch,8.16711 -73.377 0,,
|
||||
1516.88 480.375 -157.875,501,crouch,4.36584 -116.888 0,,
|
||||
1676.88 300.875 -157.875,194,crouch,4.36584 -140.026 0,,
|
||||
1516.88 508.875 -37.875,193,crouch,3.6792 -120.514 0,,
|
||||
1331.13 508.875 -37.875,193,crouch,3.50342 -54.2058 0,,
|
||||
1175.13 404.875 50.125,192,crouch,4.19556 -55.5901 0,,
|
||||
983.125 -136.875 50.125,160,crouch,1.77856 43.8582 0,,
|
||||
1416.88 -175.125 50.125,509,crouch,6.44226 -130.358 0,,
|
||||
1281.58 -210.687 50.125,159 510 508 512,stand,18.0109 91.6816 0,,
|
||||
1286.03 -345.834 50.125,509 511 513,stand,26.2946 -150.913 0,,
|
||||
1136.93 -342.944 50.125,510 512 514 158,stand,34.2377 170.585 0,,
|
||||
1123.8 -225.667 50.125,511 515 509,stand,29.2334 15.1838 0,,
|
||||
1399.88 -407.875 50.125,510,crouch,4.54163 141.917 0,,
|
||||
1079.13 -424.875 50.125,511,crouch,7.12891 51.0927 0,,
|
||||
1079.13 -200.125 50.125,512,crouch,4.54163 -44.9114 0,,
|
||||
934.61 -657.745 250.125,205,crouch,25.0861 101.328 0,,
|
||||
1162.88 -840.875 162.125,206,crouch,14.5557 118.587 0,,
|
||||
649.366 -638.534 250.125,204,crouch,25.2618 64.3696 0,,
|
||||
612.583 -306.73 250.125,204 520 521 203,stand,20.2521 83.3595 0,,
|
||||
509.125 -177.307 250.125,519,crouch,4.54163 -43.3898 0,,
|
||||
636.824 -224.395 250.125,519,crouch,28.1952 -49.7783 0,,
|
||||
503.125 -136.872 250.125,203 523,crouch,3.6792 45.8741 0,,
|
||||
503.125 264.875 250.125,522 524,crouch,6.44226 -41.4891 0,,
|
||||
613.443 247.84 250.125,523 203 202,stand,31.8207 -112.285 0,,
|
||||
504.54 385.433 250.125,526 527 202,prone,18.8733 -179.966 0,,
|
||||
504.592 442.423 250.125,525 202,prone,19.2194 -178.763 0,,
|
||||
503.125 303.125 250.125,525 202,crouch,3.84949 45.182 0,,
|
||||
510.354 562.875 250.125,202,crouch,4.36584 -41.6704 0,,
|
||||
1136.88 564.375 250.125,200,crouch,6.61255 -133.522 0,,
|
||||
1416.88 351.125 250.125,199,crouch,14.3799 136.517 0,,
|
||||
-185.375 -904.343 0.124997,189 188 532,stand,13.3472 -88.983 0,,
|
||||
-185.89 -1051.34 6.125,531 331 153,stand,20.4279 89.3745 0,,
|
||||
-566.283 -849.525 -12.0674,189 186 190,stand,17.6648 67.7864 0,,
|
||||
-832.342 -471.125 -3.19078,39,crouch,6.78284 -125.782 0,,
|
||||
-850.958 -257.925 148.625,538 44 43,stand,33.551 -107.66 0,,
|
||||
-948.188 18.1777 148.125,44 537,stand,40.2802 -168.617 0,,
|
||||
-1057.27 14.9042 148.125,536 538 541 542,stand,43.9111 -167.063 0,,
|
||||
-1045.48 -247.321 148.125,537 535 540 541,stand,44.0759 -8.21155 0,,
|
||||
-791.125 -424.875 148.125,43,crouch,3.84399 137.341 0,,
|
||||
-1080.88 -296.871 152.125,538,crouch,7.12341 41.1665 0,,
|
||||
-1112.87 -143.682 152.125,538 537,crouch,16.7969 -179.851 0,,
|
||||
-1080.88 56.8749 152.125,537,crouch,4.53613 -42.5823 0,,
|
||||
-848.216 192.898 148.125,46 44 550 551,stand,18.6975 -104.913 0,,
|
||||
-692.676 -2.03058 148.125,44 545,stand,15.0665 9.72913 0,,
|
||||
-483 9.0914 148.125,544 546,stand,18.8678 -83.8579 0,,
|
||||
-477.228 -159.65 148.125,545 45 547,stand,26.4648 -101.815 0,,
|
||||
-423.147 -214.407 148.125,546,crouch,15.4126 -0.977051 0,,
|
||||
-598.514 -424.875 148.125,45,crouch,21.9769 -90.4113 0,,
|
||||
-728.375 -382.875 148.125,45,crouch,8.67798 48.2307 0,,
|
||||
-1112.88 104.632 148.125,543 551,crouch,3.32764 38.0354 0,,
|
||||
-1112.87 220.139 148.125,543 550,crouch,18.0054 -177.275 0,,
|
||||
-879.01 424.875 148.125,46,crouch,19.9005 90.6874 0,,
|
||||
-1681.06 239.704 4.37766,556 554 564,stand,26.1188 -1.1748 0,,
|
||||
-1521.35 248.205 4.01747,553 555 48 565,stand,25.4266 -84.4017 0,,
|
||||
-1523.57 123.051 4.00964,554 557 556,stand,26.4648 -177.807 0,,
|
||||
-1652.36 120.303 5.09429,553 561 555,stand,26.8109 112.265 0,,
|
||||
-1562.83 -146.058 4.125,555 558 41 571,stand,28.3655 -109.61 0,,
|
||||
-1767.47 -155.5 3.72351,557 559 560 561,stand,20.0763 -91.3121 0,,
|
||||
-1767.32 -368.424 4.29674,558 49 41,stand,26.9812 6.59253 0,,
|
||||
-1944.38 -136.793 6.22623,49 558 569,stand,24.74 12.4537 0,,
|
||||
-1821.13 102.921 4.13957,558 556 562 564,stand,19.9005 91.7146 0,,
|
||||
-1952.85 115.398 12.2901,561 563 568,stand,21.2848 3.98877 0,,
|
||||
-1946.05 359.401 8.3398,562 564 567,stand,16.6211 -4.64099 0,,
|
||||
-1772.44 317.346 4.64848,563 553 48 561,stand,23.7018 -20.0054 0,,
|
||||
-1341.29 242.745 4.125,554 47 566,stand,16.6211 9.51489 0,,
|
||||
-1151.53 229.749 4.37401,565,crouch,3.84949 -173.336 0,,
|
||||
-1984.87 424.875 10.8176,563,crouch,1.94885 -38.4899 0,,
|
||||
-1984.88 79.125 8.85364,562,crouch,8.3374 47.1541 0,,
|
||||
-1984.88 -95.125 5.06321,560,crouch,2.64099 -37.968 0,,
|
||||
-1984.88 -424.875 6.5357,49,crouch,7.12891 40.4249 0,,
|
||||
-1423.84 -142.822 4.125,557 50 51 572,stand,22.8448 -96.3274 0,,
|
||||
-1285.06 -232.022 3.0864,571 573 50,stand,30.6122 -3.78955 0,,
|
||||
-1165.13 -236.367 4.98155,572,crouch,3.50342 177.501 0,,
|
||||
-1287.13 -424.875 1.70796,50,crouch,2.81128 134.16 0,,
|
||||
-1330.87 -463.125 -8.5391,37,crouch,5.05798 -47.658 0,,
|
||||
-1484.13 -463.125 -7.18009,40,crouch,6.09619 -150.743 0,,
|
||||
-1750.8 -856.613 -25.5578,578 579,stand,22.8448 13.1129 0,,
|
||||
-1748.8 -982.875 -23.875,577,crouch,5.57434 82.3488 0,,
|
||||
-1643.72 -808.516 -23.875,577 36,stand,34.5837 -103.436 0,,
|
||||
-1766.88 -1319.13 -63.894,33,crouch,9.19983 -40.6047 0,,
|
||||
-1766.88 -1630.81 -106.972,33,crouch,3.50342 42.6167 0,,
|
||||
-1766.88 -1260.88 -50.5381,34,crouch,4.01978 37.2609 0,,
|
||||
-1766.87 -744.375 -29.6376,40,crouch,0.0482178 59.1731 0,,
|
||||
-1835.88 463.125 -23.875,61,crouch,5.05798 50.7026 0,,
|
||||
-1023.13 463.125 -23.875,59,crouch,4.19556 135.292 0,,
|
||||
-1437.13 640.875 -23.875,60,crouch,1.77856 -138.548 0,,
|
||||
-1175.13 811.817 48.125,70 588 589,crouch,9.89197 3.38452 0,,
|
||||
-1175.61 723.881 48.125,70 587 589,crouch,8.85925 -0.757324 0,,
|
||||
-1274.24 757.547 48.125,587 588 70 590,stand,19.906 97.1309 0,,
|
||||
-1361.92 695.125 48.125,589,crouch,18.0109 125.459 0,,
|
||||
-1175.13 1468.11 48.125,592 71,crouch,11.4465 3.04395 0,,
|
||||
-1176.25 1545.23 48.125,591 71,crouch,11.4465 3.04395 0,,
|
||||
-1179.08 1860.96 48.125,72,prone,14.0393 -2.1416 0,,
|
||||
-1183.13 822.87 -103.875,65,crouch,2.81128 -151.655 0,,
|
||||
-1376.95 796.779 -103.875,65 597,stand,15.2478 157.407 0,,
|
||||
-1519.09 724.216 -103.875,597,crouch,4.54163 48.2966 0,,
|
||||
-1518.82 785.398 -103.875,595 596 598,stand,9.02954 4.95007 0,,
|
||||
-1480.48 1142.18 -103.875,597 599,stand,16.1102 -20.9392 0,,
|
||||
-1253.32 1128.89 -103.875,598 66 65 600,stand,25.2618 -79.4744 0,,
|
||||
-1183.13 1124.88 -103.875,599,crouch,1.94885 -148.864 0,,
|
||||
-1450.15 1337.35 -103.875,66 602 67,stand,15.072 -175.116 0,,
|
||||
-1520.88 1267.13 -103.875,601,crouch,5.75012 55.2125 0,,
|
||||
-1190.02 1707.26 -103.875,67 181,stand,25.0861 2.37927 0,,
|
||||
-1549.37 1681.92 -103.875,67 73 68,stand,15.7642 159.138 0,,
|
||||
-1128.88 1266.51 -136.567,181,crouch,8.85925 45.8906 0,,
|
||||
-2217.88 1445.13 -139.2,74,crouch,1.77856 43.1276 0,,
|
||||
-2217.88 1927.07 -143.875,75,crouch,2.98706 31.3887 0,,
|
||||
-1743.13 2326.88 -143.875,75,crouch,2.29492 -120.898 0,,
|
||||
-1455.69 1836.61 -142.887,77,crouch,4.36584 32.4159 0,,
|
||||
-1084.82 2129.9 -148.86,78 611 614,stand,21.1145 4.26892 0,,
|
||||
-931.126 2107.13 -141.97,610,crouch,5.05798 141.373 0,,
|
||||
-1267.87 2559.13 -138.672,79,crouch,7.30469 27.4061 0,,
|
||||
-1267.88 2982.88 -139.852,80,crouch,4.54163 -29.569 0,,
|
||||
-1066.54 2325.17 -149.875,410 610 79,stand,61.1762 -155.615 0,,
|
||||
-511.059 1595.65 -189.067,175,crouch,5.05798 -175.973 0,,
|
||||
26.5482 -2193.05 -255.875,617 16 255,stand,23.6536 -55.6445 0,,
|
||||
217.12 -2196.62 -255.875,616 15 135 257,stand,8.97583 38.7994 0,,
|
||||
241.095 2829.56 -135.875,439 619,stand,13.645 6.51858 0,,
|
||||
62.4212 2860.25 -135.875,618 86 87 434,stand,20.2039 -12.3065 0,,
|
||||
98.875 2982.88 -135.875,86,crouch,3.97156 -130.745 0,,
|
||||
320.172 106.423 2.125,179 180 358,stand,79.4257 -85.6183 0,,
|
||||
|
@@ -0,0 +1,423 @@
|
||||
422
|
||||
1548.28 7473.05 2824.13,1 193 194,stand,,,
|
||||
1201.67 7470.51 2824.13,0 2 132,stand,,,
|
||||
1203.93 7162.68 2824.13,1 136 137 195 196,stand,,,
|
||||
1195.14 6665.43 2824.13,136 137 197 198 200,stand,,,
|
||||
903.55 6672.57 2824.13,5 200 202 254,stand,,,
|
||||
894.827 6837.06 2824.13,4 6 203,stand,,,
|
||||
1065.62 6838.75 2824.13,5 7 156,stand,,,
|
||||
1071.08 6965.36 2824.13,6 8 204,stand,,,
|
||||
640.907 6955.6 2648.13,7 9 267,stand,,,
|
||||
658.652 6885.35 2648.13,8 208 209 267,stand,,,
|
||||
341.951 6695.22 2648.13,11 210 213,stand,,,
|
||||
252.697 6849.44 2648.13,10 214 216,stand,,,
|
||||
-261.936 6788 2648.13,13 157 216,stand,,,
|
||||
-517.427 6734.01 2648.13,12 14 17 173,stand,,,
|
||||
-891.208 6554.49 2648.13,13 15 16 21,stand,,,
|
||||
-629.427 6555.69 2648.13,14 269,stand,,,
|
||||
-899.357 7066.52 2648.13,14 17 28,stand,,,
|
||||
-518.639 7060.68 2648.13,16 18 13 170,stand,,,
|
||||
-417.711 7076.82 2648.13,17 19 373,stand,,,
|
||||
-415.847 6846.23 2722.13,18 20,stand,,,
|
||||
-233.025 6853.84 2776.13,19 77 108 218 231 232 233,stand,,,
|
||||
-1370.92 6556.74 2648.13,14 22 26 369,stand,,,
|
||||
-1389.85 6384.17 2648.13,21 23 141 272 273 276,stand,,,
|
||||
-1369.03 5993.43 2648.13,22 24 274 275,stand,,,
|
||||
-1371.6 5667.87 2776.13,23 25 142 277,stand,,,
|
||||
-1373.5 5329.72 2776.13,24 188 278 279 286 333,stand,,,
|
||||
-1514.4 6650.5 2648.13,21 32 367 369,stand,,,
|
||||
-1532.21 6869.18 2696.13,28 325 366 367,stand,,,
|
||||
-1474.82 7093.3 2648.13,27 16 29 147 325 366,stand,,,
|
||||
-1856.09 7114.44 2648.13,28 40 171 366 368 363 372,stand,,,
|
||||
-1858.17 6893.2 2696.13,365 368,stand,,,
|
||||
-1834.26 6652.36 2648.13,32 365 371,stand,,,
|
||||
-1722.39 6657.35 2648.13,31 26 33 365 367,stand,,,
|
||||
-1730.32 6545.11 2648.13,32 34 370,stand,,,
|
||||
-1345.62 6541.65 2776.13,33 68,stand,,,
|
||||
-2173.24 6660.54 2648.13,36 39 172 271 364 371,stand,,,
|
||||
-2265.59 6670.22 2648.13,35 37 374,stand,,,
|
||||
-2271.79 6904.16 2722.13,36 38,stand,,,
|
||||
-2483.6 6892.75 2776.13,37 83 359,stand,,,
|
||||
-2201.08 6969.32 2648.13,35 40 364 363 375,stand,,,
|
||||
-2169.41 7130.74 2648.13,39 29 270 363,stand,,,
|
||||
-2463.99 6965.75 2648.13,42 148 375,stand,,,
|
||||
-3011.98 6937.72 2648.13,41 43 376,stand,,,
|
||||
-3027.72 7148.1 2648.13,42 44 377,stand,,,
|
||||
-3338.63 7151.66 2648.13,43 45 149 378,stand,,,
|
||||
-3344.02 7001.01 2648.13,44 46 379,stand,,,
|
||||
-3789.06 7001.18 2824.13,45 47 48,stand,,,
|
||||
-3790.79 7174.01 2824.13,46 150 381 380,stand,,,
|
||||
-3783.07 6661.72 2824.13,46 53 382,stand,,,
|
||||
-3188.66 6667.05 2824.13,50 52 388,stand,,,
|
||||
-2915.16 6672.98 2824.13,49 51 348,stand,,,
|
||||
-2896.98 7045.69 2824.13,50 84 158 353,stand,,,
|
||||
-3195.06 6469.03 2824.13,49 393 395 397 413,stand,,,
|
||||
-3802.73 6180.63 2824.13,48 54 399,stand,,,
|
||||
-3789.67 5908.37 2824.13,53 55 404,stand,,,
|
||||
-3431.51 5928.46 2824.13,54 59 67 403,stand,,,
|
||||
-2896.11 6474.95 2824.13,57 58 348 360 361 393,stand,,,
|
||||
-2704.16 6371.45 2824.13,56 58 85 360 361,stand,,,
|
||||
-2902.78 6294.34 2824.13,56 57 343 361 360,stand,,,
|
||||
-2923.35 5938.97 2824.13,55 60 61 343,stand,,,
|
||||
-3056.34 6087.84 2824.13,59,stand,,,
|
||||
-2919.01 5689.37 2824.13,59 86 159 160 335 337,stand,,,
|
||||
-2944.71 5430.93 2824.13,63 64 335 340,stand,,,
|
||||
-2966.94 5205.69 2824.13,62 341 342,stand,,,
|
||||
-3450.16 5434.28 2824.13,62 65 67 134 410,stand,,,
|
||||
-3776.77 5409.84 2824.13,64 66 406 409,stand,,,
|
||||
-3756.98 5220.86 2824.13,65 408,stand,,,
|
||||
-3444.84 5785.35 2824.13,64 55 134 161 405,stand,,,
|
||||
-1201.51 6469.03 2776.13,34 107 185 329,stand,,,
|
||||
-1198.11 6770.48 2775.93,70 321 320 329,stand,,,
|
||||
-1016.04 6772.15 2776.04,69 328 327,stand,,,
|
||||
-1188.56 6998.3 2776.95,72 73 320 321 323 322 324,stand,,,
|
||||
-1349.62 6967.99 2780.28,71 320 326,stand,,,
|
||||
-1228.96 7238.79 2776.13,71 74 79 146,stand,,,
|
||||
-1021.71 7261.05 2776.13,73 75 76,stand,,,
|
||||
-1015.36 7473.04 2776.13,74 308,stand,,,
|
||||
-433.039 7248.11 2776.13,74 77,stand,,,
|
||||
-177.963 7122.44 2776.13,76 20 78 168 218,stand,,,
|
||||
60.6855 7138.43 2776.13,77 133 217,stand,,,
|
||||
-1491.31 7225.58 2776.13,73 80 145,stand,,,
|
||||
-1744.24 7254.95 2776.13,79 81 82,stand,,,
|
||||
-1715.01 7469.54 2776.13,80 301 305,stand,,,
|
||||
-2316.71 7261.93 2776.13,80 83 356,stand,,,
|
||||
-2505.91 7088.26 2776.13,82 38 84 167,stand,,,
|
||||
-2733.32 7058.41 2776.13,83 51 355 357,stand,,,
|
||||
-2545.3 6358.84 2776.13,57 314 358 359,stand,,,
|
||||
-2742.22 5687.79 2776.13,61 87 88 334,stand,,,
|
||||
-2513.47 5821.98 2776.13,86 89 166 317,stand,,,
|
||||
-2313.27 5459.63 2776.13,86 95 89 334,stand,,,
|
||||
-2207.63 5858.79 2776.13,87 90 91 88,stand,,,
|
||||
-2222.11 6071.49 2776.13,89 315 316,stand,,,
|
||||
-1977.67 5843.37 2776.13,89 190,stand,,,
|
||||
-2020.93 6404.13 2776.13,186 314 319 362,stand,,,
|
||||
-1646.14 5985.41 2776.13,94 186 187 191,stand,,,
|
||||
-1844.5 5981.53 2776.13,93 189 313,stand,,,
|
||||
-1823.49 5411.2 2776.13,88 165 188 189,stand,,,
|
||||
-1633.33 5552.08 2847.63,97 191,stand,,,
|
||||
-1546.83 5563.22 2847.63,96 98,stand,,,
|
||||
-1548.71 5843.5 2976.13,97 99 106 298,stand,,,
|
||||
-1559.02 6202.96 2976.13,98 100 297 174,stand,,,
|
||||
-1323.06 6219.81 2976.13,99 101 174,stand,,,
|
||||
-1180.06 5948.97 2976.13,100 102 106 295 296,stand,,,
|
||||
-1169.57 6215.8 2847.63,101 103,stand,,,
|
||||
-1091.59 6211.58 2847.63,102 104,stand,,,
|
||||
-1086.42 6017.09 2776.13,103 105 117 288,stand,,,
|
||||
-1060.13 5418.14 2776.13,104 114 282 286,stand,,,
|
||||
-1341.63 5610.86 2976.13,101 98 292 294 295,stand,,,
|
||||
-916.935 6445.48 2776.13,68 108 290 332,stand,,,
|
||||
-338.318 6501.06 2776.13,107 20 109 110 232 233,stand,,,
|
||||
-119.21 6541.41 2776.13,108 129 139 231,stand,,,
|
||||
-271.211 6105.11 2776.13,108 111 139 236 234,stand,,,
|
||||
-60.6272 5694.79 2792.13,110 118 236 237 238,stand,,,
|
||||
-161.204 5418.03 2776.13,113 237 238,stand,,,
|
||||
-487.003 5444.35 2776.13,112 114 164,stand,,,
|
||||
-505.762 5564.9 2776.13,113 115 105 164 234 235,stand,,,
|
||||
-278.537 5572.11 2776.13,114 140,stand,,,
|
||||
-597.844 6078.92 2776.13,117 236 235 290,stand,,,
|
||||
-901.849 6062.84 2776.13,116 104 290 287,stand,,,
|
||||
89.0847 5698.95 2776.13,111 119 237 238,stand,,,
|
||||
228.904 5707.09 2824.13,118 121 245 248,stand,,,
|
||||
276.101 5273.2 2824.13,138 245 246 247,stand,,,
|
||||
287.385 5963.93 2824.13,119 122 125 126 250 249 262,stand,,,
|
||||
584.511 5948.52 2824.13,121 260 261 126,stand,,,
|
||||
534.324 6390.42 2808.13,252 253 260 263 126 415,stand,,,
|
||||
151.652 6395.08 2824.13,125 139 251 418 417,stand,,,
|
||||
151.562 6130.9 2824.13,124 121 417 419,stand,,,
|
||||
418.988 6217.42 2824.13,121 260 122 123 416,stand,,,
|
||||
526.124 6672.07 2824.13,128 253 254 252,stand,,,
|
||||
312.619 6699.81 2824.13,127 230 251 252 264,stand,,,
|
||||
36.8313 6576.92 2824.13,109 155 251,stand,,,
|
||||
331.281 7190.18 2824.13,131 133 153 220 224,stand,,,
|
||||
321.682 7458.74 2824.13,130 132 221,stand,,,
|
||||
802.414 7465.92 2824.13,131 1 152,stand,,,
|
||||
172.893 7138.98 2824.13,130 78 219,stand,,,
|
||||
-3387.78 5571.43 2824.13,64 67 410,stand,,,
|
||||
-1552.13 7393.11 2944.13,143 144 183,stand,18.6865 -68.3514 0,,
|
||||
1136.09 6965.99 2824.13,3 2,stand,18.7701 83.2599 0,,
|
||||
1328.87 6981.81 2824.13,2 3,stand,18.6877 167.206 0,,
|
||||
163.835 5514.94 2824.13,120,claymore,1.23596 74.4214 0,,
|
||||
-191.624 6364.93 2776.13,124 110 109 163,stand,11.8817 97.3993 0,,
|
||||
-289.587 5675.42 2776.13,115,crouch,-0.137329 -121.124 0,,
|
||||
-1471.78 6450.71 2648.13,22,claymore,8.8385 -11.3269 0,,
|
||||
-1368 5487.11 2776.13,24,claymore,16.908 -89.0497 0,,
|
||||
-1529.89 7488.57 2944.13,135 300 304,stand,10.0787 -3.47168 0,,
|
||||
-1509.59 7411.38 2944.13,135,claymore,17.6538 149.299 0,,
|
||||
-1481.85 7429.19 2776.13,79,crouch,1.1853 -96.7181 0,,
|
||||
-1234.04 7435.05 2776.13,73,crouch,-0.0506592 -94.9878 0,,
|
||||
-1423.86 7191.9 2648.13,28,claymore,4.16502 -119.471 0,,
|
||||
-2411.59 6863.81 2648.13,41,claymore,7.62022 117.779 0,,
|
||||
-3384.32 7199.97 2648.13,44,claymore,11.3281 -43.808 0,,
|
||||
-3732.83 7122.17 2824.13,47,claymore,14.9481 -106.875 0,,
|
||||
6.86213 6814.49 2824.13,264,crouch,3.91783 -11.0083 0,,
|
||||
1054.6 7355.64 2824.13,132,claymore,16.0193 130.6 0,,
|
||||
180.423 7280.84 2824.13,130,claymore,11.4105 -73.3832 0,,
|
||||
-2333.4 6098.55 2776.13,315 316,crouch,5.1483 -20.7202 0,,
|
||||
1.94629 6463.13 2824.13,129,claymore,5.51514 80.6561 0,,
|
||||
958.959 6860.33 2824.13,6,claymore,7.90466 107.413 0,,
|
||||
-296.875 6868.14 2648.13,12,claymore,9.47021 -40.2539 0,,
|
||||
-2847.13 6947.2 2824.13,51,claymore,12.5134 117.164 0,,
|
||||
-3102.28 5688.78 2824.13,61 337 338,stand,9.55261 -0.0439453 0,,
|
||||
-2847.13 5790.1 2824.13,61,claymore,12.2662 -117.449 0,,
|
||||
-3244.81 5780.17 2824.13,67,crouch,0.741577 -177.764 0,,
|
||||
-3005.35 6299.13 2824.13,397,crouch,1.56555 171.37 0,,
|
||||
-293.372 6310.56 2776.13,139,grenade,-36.3098 -179.659 0,,
|
||||
-666.001 5634.91 2776.13,113 235 114 234,grenade,-40.8362 137.368 0,,
|
||||
-1959.84 5514.89 2776.13,95,grenade,-39.0729 14.2383 0,,
|
||||
-2505.73 5922.56 2776.13,87 317,grenade,-40.8801 36.2164 0,,
|
||||
-2372.95 7090.16 2776.13,83,grenade,-32.8162 11.1072 0,,
|
||||
-324.821 7116.21 2776.13,77 169,grenade,-32.4866 -179.324 0,,
|
||||
-304.896 7082.52 2776.13,168,grenade,-48.3728 -133.138 0,,
|
||||
-639.832 7027.05 2648.13,17,grenade,-34.4586 169.036 0,,
|
||||
-1853.91 7031.13 2648.13,29,grenade,-30.921 11.651 0,,
|
||||
-1980.02 6706.18 2648.13,35 371,grenade,-23.0988 -10.3271 0,,
|
||||
-628.848 6756.64 2648.13,13,grenade,-34.0466 -163.762 0,,
|
||||
-1353.12 6315.2 2980.13,100 175 99,climb,1.64795 67.868 0,,
|
||||
-1325.22 6384.88 3042.13,174 176,climb,1.26892 70.1477 0,,
|
||||
-1293.11 6457.9 3042.13,175 184,stand,17.4023 70.5597 0,,
|
||||
-1161.74 6799.53 3042.13,178 184,stand,3.73535 115.345 0,,
|
||||
-1196.28 6851 3034.13,177 179,climb,-0.609741 -53.8385 0,,
|
||||
-1245.83 6902.69 3002.13,178 180,climb,-3.1488 -42.7368 0,,
|
||||
-1270.42 6925.87 3002.13,179 181,stand,14.6326 136.829 0,,
|
||||
-1561.52 7210.88 3002.13,180 182,stand,29.9475 108.094 0,,
|
||||
-1579.32 7285.04 2994.13,181 183,climb,1.80603 -100.497 0,,
|
||||
-1583.51 7334.3 2944.13,182 135,climb,-1.66016 -88.3191 0,,
|
||||
-1221.41 6622.71 3042.13,177 176,crouch,20.7355 -7.43774 0,,
|
||||
-1305.57 6392.69 2776.13,68 187 192,stand,27.8009 -179.352 0,,
|
||||
-1738.54 6425.76 2776.13,93 92 192,stand,24.1754 -3.24097 0,,
|
||||
-1530.08 6328.57 2776.13,93 185,stand,24.1754 16.6223 0,,
|
||||
-1644.87 5378.77 2776.13,25 95 280 283,stand,29.7498 -9.9646 0,,
|
||||
-1828.73 5577.37 2776.13,94 95 191 312,stand,85 92.7686 0,,
|
||||
-1985.5 5983.62 2776.13,91 319,stand,77.2327 92.2467 0,,
|
||||
-1647.99 5802.58 2776.13,93 189 96 311,stand,84.8297 -87.3193 0,,
|
||||
-1484.55 6405.06 2776.13,185 186,stand,78.5632 -4.44946 0,,
|
||||
1616.88 7624.88 2824.13,0,crouch,-0.692139 -137.346 0,,
|
||||
1589.98 7303.13 2824.13,0,crouch,2.58728 151.002 0,,
|
||||
1328.88 7232.88 2824.13,2,crouch,1.37878 -124.222 0,,
|
||||
1135.13 7232.88 2824.13,2,crouch,-1.55457 -52.5641 0,,
|
||||
1297.8 6603.19 2824.13,3,crouch,3.4552 153.243 0,,
|
||||
1135.13 6575.13 2824.13,3,crouch,5.35034 51.8884 0,,
|
||||
1096.88 6575.13 2824.13,200,crouch,4.83398 143.405 0,,
|
||||
1077.91 6663.05 2824.13,201 199 3 4,stand,23.3075 37.5623 0,,
|
||||
1096.88 6752.88 2824.13,200,crouch,6.38855 -142.355 0,,
|
||||
735.217 6575.13 2824.13,4,crouch,2.93335 43.429 0,,
|
||||
769.287 6828.41 2824.13,5,prone,-2.41699 -2.66968 0,,
|
||||
1096.88 6984.88 2824.13,7,crouch,1.03821 -136.307 0,,
|
||||
900.22 6871.13 2648.13,206,crouch,5.87219 168.624 0,,
|
||||
841.831 6871.13 2648.13,207 205,stand,12.9474 174.32 0,,
|
||||
841.816 6896.88 2648.13,208 206,stand,22.2748 178.638 0,,
|
||||
741.157 6896.85 2648.13,9 207,stand,21.9287 178.638 0,,
|
||||
644.249 6732.85 2648.13,210 9 211,stand,45.5823 -117.647 0,,
|
||||
539.415 6682.7 2648.13,209 10 212,stand,33.6676 -170.31 0,,
|
||||
696.875 6698.06 2648.13,209,crouch,2.76306 138.4 0,,
|
||||
573.093 6631.13 2648.13,210,crouch,4.83398 144.278 0,,
|
||||
376.875 6779.97 2648.13,10,crouch,8.80554 -139.922 0,,
|
||||
309.575 6920.88 2648.13,11,crouch,1.2085 -139.23 0,,
|
||||
-24.875 6920.88 2648.13,216,crouch,4.14185 -26.4771 0,,
|
||||
-1.53688 6845.66 2648.13,11 215 12 268,stand,19.682 -168.931 0,,
|
||||
56.6587 7043.83 2776.13,78 218 219,stand,77.7008 143.069 0,,
|
||||
-63.2364 7002.7 2792.13,217 20 77 232,stand,21.0663 -141.13 0,,
|
||||
185.748 7048.98 2824.13,217 133 220 222,stand,55.2502 127.859 0,,
|
||||
324.662 7037.77 2824.13,219 130 264 266,stand,29.0094 164.636 0,,
|
||||
159.129 7624.88 2848.13,131,crouch,9.66797 -42.9071 0,,
|
||||
159.125 6970.31 2850.13,219,crouch,6.55884 49.2902 0,,
|
||||
679.598 7208.84 2824.13,225 224,stand,2.07092 -179.676 0,,
|
||||
541.549 7182.88 2824.13,130 223 228 229,stand,27.8009 13.5297 0,,
|
||||
790.874 7216.38 2824.13,223 226 227,stand,29.5258 -82.1283 0,,
|
||||
783.357 7143.13 2824.13,225,crouch,4.14185 94.3341 0,,
|
||||
781.696 7255.75 2824.13,225,crouch,2.2467 -163.103 0,,
|
||||
503.125 7143.13 2824.13,224,crouch,3.4552 53.7616 0,,
|
||||
503.125 7252.66 2829.63,224,crouch,4.6637 -30.498 0,,
|
||||
27.284 6635.03 2824.13,128 231 251,stand,35.5682 -75.3827 0,,
|
||||
-128.98 6632.15 2776.13,230 109 20 232,stand,73.5535 -92.9993 0,,
|
||||
-119.615 6859.45 2776.13,231 218 20 108 233,stand,18.9954 86.5613 0,,
|
||||
-410.372 6559.2 2776.13,108 20 232,stand,13.6932 -166.723 0,,
|
||||
-507.897 5869.96 2776.13,236 235 114 164 110,stand,16.6266 107.979 0,,
|
||||
-625.782 5907.79 2776.13,234 164 114 116,stand,29.0576 80.8704 0,,
|
||||
-465.125 6071.48 2776.13,116 234 110 111 290,stand,26.1243 -40.166 0,,
|
||||
80.2396 5605.62 2776.13,112 118 111 238 245,stand,9.37561 -2.50488 0,,
|
||||
-94.4222 5562.97 2792.13,112 111 237 118 239,stand,22.4988 83.3447 0,,
|
||||
-172.875 5566.74 2777.52,240 238,climb,-85 -179.8 0,,
|
||||
-177.135 5567.55 2912.13,239 241,climb,85 0.574341 0,,
|
||||
-273.042 5564.74 2912.13,242 244 243 240,stand,42.6971 48.4033 0,,
|
||||
-262.82 5687.33 2912.13,241 243 244,stand,37.3468 95.0238 0,,
|
||||
-375.279 5739.72 2912.13,242 244 241,prone,12.655 140.612 0,,
|
||||
-366.398 5537.83 2912.13,241 243 242,prone,6.61255 -171.735 0,,
|
||||
240.466 5609.33 2824.13,237 119 120 248,stand,24.5697 -176.058 0,,
|
||||
161.125 5183.13 2824.13,120,crouch,4.53613 71.5405 0,,
|
||||
368.875 5183.13 2824.13,120,crouch,3.67371 120.232 0,,
|
||||
368.875 5792.88 2824.13,119 245,crouch,6.0907 -138.93 0,,
|
||||
-32.875 5895.13 2824.13,250 121,crouch,1.77307 21.1353 0,,
|
||||
-32.875 5976.88 2824.13,249 121,crouch,3.50342 -10.1154 0,,
|
||||
130.567 6557.47 2824.13,124 129 230 128 418,stand,24.3939 -86.7889 0,,
|
||||
370.21 6537.37 2824.13,128 123 415 127 253,stand,22.6691 -80.5817 0,,
|
||||
528.15 6539.28 2808.13,123 127 257 252,stand,18.3514 84.8285 0,,
|
||||
647.745 6653.33 2824.13,4 127 255,stand,19.0436 102.956 0,,
|
||||
637.836 6816.6 2824.13,254 256,stand,15.4181 -144.648 0,,
|
||||
547.271 6825.88 2824.13,255,crouch,5.40405 -44.6783 0,,
|
||||
666.324 6537.04 2808.13,253 258,stand,22.6691 -86.2891 0,,
|
||||
652.444 6312.53 2808.13,257,prone,-1.67664 88.1024 0,,
|
||||
696.875 6240.88 2808.13,260,crouch,0.0482178 -151.218 0,,
|
||||
561.798 6210.93 2808.13,123 122 259 126,stand,14.0338 -167.621 0,,
|
||||
689.755 5895.13 2848.13,122,crouch,7.82105 132.982 0,,
|
||||
456.872 5831.13 2859.13,121,crouch,4.36584 122.275 0,,
|
||||
302.812 6247.92 2824.13,123 416,crouch,1.08643 54.7644 0,,
|
||||
318.432 6817.46 2824.13,151 220 128 265,stand,11.9629 -168.835 0,,
|
||||
464.875 6920.88 2824.13,264,crouch,1.08643 -131.19 0,,
|
||||
453.684 6959.13 2850.13,220,crouch,5.05798 148.351 0,,
|
||||
591.125 6947.96 2648.13,9 8,crouch,-0.814209 -34.6753 0,,
|
||||
87.4186 6783.13 2648.13,216,crouch,4.53613 152.993 0,,
|
||||
-591.125 6543.46 2648.13,15,crouch,8.3374 134.52 0,,
|
||||
-2224.88 7248.88 2648.13,40,crouch,2.81128 -52.3138 0,,
|
||||
-2224.88 6511.13 2648.13,35,crouch,5.22827 58.0164 0,,
|
||||
-1255.13 6464.88 2648.13,22,crouch,3.84949 -123.445 0,,
|
||||
-1480.88 6464.88 2648.13,22,crouch,3.50342 -18.2892 0,,
|
||||
-1255.13 6184.88 2648.13,23,crouch,-0.638428 -115.15 0,,
|
||||
-1480.88 6024.88 2648.13,23,crouch,0.223999 -38.3173 0,,
|
||||
-1480.88 6119.13 2648.13,22,crouch,1.4325 65.108 0,,
|
||||
-1255.13 5610.8 2776.13,24,crouch,3.84949 128.12 0,,
|
||||
-1255.13 5191.13 2776.13,25,crouch,2.98706 123.973 0,,
|
||||
-1480.88 5191.13 2776.13,25,crouch,2.64099 51.4465 0,,
|
||||
-1587.2 5150.83 2792.13,188 281,stand,26.6406 73.3752 0,,
|
||||
-1373.32 5149.16 2792.13,280 282 284 285,stand,14.5557 -2.07336 0,,
|
||||
-1166.75 5146.52 2792.13,281 105 286,stand,58.5834 17.7789 0,,
|
||||
-1519.13 5480.88 2776.13,188,crouch,1.94885 -134.849 0,,
|
||||
-1445.69 5152.88 2792.13,281,crouch,4.19556 176.284 0,,
|
||||
-1282.48 5152.65 2792.13,281,crouch,4.01978 2.41455 0,,
|
||||
-1144.91 5373.28 2776.13,105 25 282 287,stand,20.2521 60.2631 0,,
|
||||
-1184.78 5508.58 2776.13,286 288 117,stand,15.5884 91.5192 0,,
|
||||
-1180.14 5890.69 2776.13,287 104 289,stand,11.4465 80.9833 0,,
|
||||
-1204.88 6292.88 2776.13,288 290,crouch,6.60706 -60.2679 0,,
|
||||
-915.628 6264.5 2776.13,289 107 117 236 116,stand,22.4933 -23.1451 0,,
|
||||
-1483.74 5336.94 2948.13,292,prone,12.309 164.188 0,,
|
||||
-1365.36 5355.21 2940.13,291 293 106 299,stand,70.152 -101.549 0,,
|
||||
-1247.64 5361.05 2948.13,292,prone,12.3035 29.5013 0,,
|
||||
-1064.9 5516.13 2974.13,106 295,prone,9.54041 19.306 0,,
|
||||
-1077.85 5743.31 2972.51,294 106 101 296,prone,6.0907 12.9285 0,,
|
||||
-1073.32 6095.35 2973.08,101 295,crouch,15.5884 -5.03418 0,,
|
||||
-1675.3 6107.94 2980.13,298 99,prone,14.3799 179.371 0,,
|
||||
-1672.98 5823.73 2974.36,299 297 98,prone,15.2423 177.646 0,,
|
||||
-1671.9 5561.57 2974.23,298 292,prone,15.4126 177.3 0,,
|
||||
-1638.19 7481.44 2944.13,301 143,climb,85 -179.464 0,,
|
||||
-1647.13 7478.45 2778.43,300 81,climb,-85 0.447998 0,,
|
||||
-1136.04 7352.99 2944.13,303,prone,20.8423 -92.2821 0,,
|
||||
-1129.44 7480.73 2944.13,304 302,prone,9.09788 -20.2612 0,,
|
||||
-1204.39 7495.24 2944.13,303 143,stand,38.9697 -89.3268 0,,
|
||||
-1668.88 7583.47 2792.13,306 81,stand,23.4296 0.107422 0,,
|
||||
-1432.07 7583.57 2792.13,305 307 310,stand,19.458 0.799561 0,,
|
||||
-1235.39 7583.67 2792.13,306 308 309,stand,19.458 0.799561 0,,
|
||||
-1022 7583.81 2792.13,307 75,stand,19.458 0.799561 0,,
|
||||
-1176.77 7583.13 2792.13,307,crouch,7.7191 -0.90332 0,,
|
||||
-1541.01 7583.13 2792.13,306,crouch,4.43968 -178.234 0,,
|
||||
-1555.04 5725.88 2776.13,191 312,stand,16.8707 -88.3215 0,,
|
||||
-1541.14 5556.45 2776.13,311 189,crouch,5.99424 138.206 0,,
|
||||
-1898.88 6048.88 2776.13,94,crouch,4.2639 -39.9652 0,,
|
||||
-2307.08 6362.59 2776.13,92 85 315 359 358 362,stand,15.8325 125.445 0,,
|
||||
-2298.53 6095.41 2776.13,314 154 90 316,stand,65.2161 -87.2723 0,,
|
||||
-2324.95 6071.76 2776.13,154 315 90 317,stand,73.5052 139.782 0,,
|
||||
-2535.18 6065.59 2776.13,316 87 166 358,stand,38.7994 -178.261 0,,
|
||||
-2144.88 6011.13 2776.13,319,crouch,2.11914 54.4952 0,,
|
||||
-2002.77 6049.18 2776.13,318 92 190,stand,27.157 -23.8977 0,,
|
||||
-1286.93 6865.83 2773.37,69 72 71,stand,23.5315 68.4698 0,,
|
||||
-1099.72 6868.65 2777.35,69 71,stand,30.4364 -152.707 0,,
|
||||
-983.125 7028.88 2794.82,323 71,crouch,8.68347 -149.938 0,,
|
||||
-983.125 6948.13 2786.45,322 71,crouch,6.26648 157.574 0,,
|
||||
-1292.87 7120.88 2776.42,71,crouch,1.25671 -26.1554 0,,
|
||||
-1439.13 6955.44 2697.75,326 27 28,climb,-85 0.766602 0,,
|
||||
-1430.73 6955.93 2824.13,325 72,climb,85 177.905 0,,
|
||||
-983.125 6731.13 2779.54,70,crouch,1.08093 149.434 0,,
|
||||
-983.125 6811.88 2776.13,70,crouch,4.71191 -159.112 0,,
|
||||
-1187.13 6660.49 2776.11,330 69 68,stand,24.5642 -172.57 0,,
|
||||
-1384.88 6639.13 2776.85,329 331,crouch,6.95313 38.0817 0,,
|
||||
-1384.88 6763.88 2777.14,330,crouch,5.92041 -7.84668 0,,
|
||||
-743.125 6600.88 2776.13,107,crouch,0.740357 -141.49 0,,
|
||||
-1255.13 5531.35 2776.13,25,crouch,3.50342 -126.472 0,,
|
||||
-2747.1 5592.05 2776.13,86 88 335,stand,18.3514 105.417 0,,
|
||||
-2931.3 5593.89 2824.13,334 62 61 338,stand,25.0861 -0.403442 0,,
|
||||
-3160.88 5816.88 2824.13,337,crouch,5.39856 -25.4248 0,,
|
||||
-3102.33 5812.86 2824.13,336 159 61,stand,49.256 -97.0776 0,,
|
||||
-3106.38 5577.72 2824.13,159 339 335,stand,59.9622 -95.5231 0,,
|
||||
-3160.88 5567.13 2824.13,338,crouch,1.60278 37.4335 0,,
|
||||
-3104.88 5528.88 2824.13,62,crouch,3.67371 -35.7849 0,,
|
||||
-2847.13 5120.13 2848.13,63,crouch,2.6355 133.245 0,,
|
||||
-3096.88 5111.13 2828.13,63,crouch,3.15735 56.7529 0,,
|
||||
-2915.37 6137.91 2824.13,59 58 344,stand,65.1422 7.20459 0,,
|
||||
-2789.06 6144.25 2824.13,343 345 347,stand,71.355 -93.4576 0,,
|
||||
-2785.78 5887.13 2824.13,344 346,stand,38.5498 81.4557 0,,
|
||||
-2655.13 5887.13 2824.13,345,crouch,5.91492 128.939 0,,
|
||||
-2664.19 6195.56 2824.13,344,prone,5.57434 12.3846 0,,
|
||||
-2906.3 6594.58 2824.13,56 50 349,stand,33.3698 1.49719 0,,
|
||||
-2789.8 6596.4 2824.13,348 350 351 352,stand,62.0331 -83.6249 0,,
|
||||
-2666.85 6616.97 2824.13,349 352 351,prone,4.53613 -1.44165 0,,
|
||||
-2795.33 6795.33 2824.13,349 352 350,stand,19.2139 22.2119 0,,
|
||||
-2655.13 6808.88 2824.13,351 350 349,crouch,4.19006 -127.999 0,,
|
||||
-2895.48 7146.65 2824.13,51 354 355,stand,26.6351 -51.8414 0,,
|
||||
-2847.13 7224.88 2824.13,353,crouch,9.54041 -123.154 0,,
|
||||
-2743.57 7149.32 2776.13,353 84 356,stand,11.2708 -176.871 0,,
|
||||
-2627.6 7220.12 2792.13,355 82,stand,14.3799 10.8246 0,,
|
||||
-2800.88 6895.13 2792.13,84,crouch,3.49792 45.5304 0,,
|
||||
-2550.93 6273.35 2776.13,317 85 361 314,stand,22.1472 97.1332 0,,
|
||||
-2529.95 6457.03 2776.13,85 38 360 314,stand,31.1285 -132.333 0,,
|
||||
-2694.99 6451.07 2824.13,359 57 56 58,stand,18.692 -0.771484 0,,
|
||||
-2695.17 6275.49 2824.13,57 58 56 358,stand,37.171 19.2566 0,,
|
||||
-1898.58 6577.12 2776.13,92 314,crouch,4.70642 -143.539 0,,
|
||||
-2055.23 6959.61 2696.12,364 368 39 40 29,stand,15.4126 -87.9315 0,,
|
||||
-2058.9 6791.45 2696.12,365 363 35 39,stand,20.2466 -4.35852 0,,
|
||||
-1855.74 6791.33 2696.12,367 30 31 364 32,stand,25.0806 8.07251 0,,
|
||||
-1674.81 6958.53 2696.12,27 29 28,stand,23.8721 -93.4357 0,,
|
||||
-1514.68 6783.97 2696.12,26 27 365 32,stand,28.0194 127.725 0,,
|
||||
-1879.63 6975.26 2696.12,363 30 29,stand,36.825 -55.8185 0,,
|
||||
-1559.5 6511.13 2648.13,26 21,crouch,2.28943 40.7794 0,,
|
||||
-2032.88 6511.13 2656.13,33 371,crouch,2.28943 45.954 0,,
|
||||
-2018.22 6651.3 2656.13,35 172 370 31,stand,29.2279 -42.7441 0,,
|
||||
-1743.13 7248.88 2648.13,29,crouch,5.05249 -137.721 0,,
|
||||
-335.125 7120.88 2648.13,18,crouch,1.77307 -143.593 0,,
|
||||
-2352.88 6639.13 2648.13,36 375,crouch,3.49792 45.2838 0,,
|
||||
-2334.42 6956.39 2648.13,374 39 41,stand,30.9528 83.4613 0,,
|
||||
-3032.88 6855.13 2648.13,42,crouch,5.74463 39.4556 0,,
|
||||
-2959.13 7200.88 2648.13,43,crouch,3.15186 -132.513 0,,
|
||||
-3380.41 7200.88 2648.13,44,crouch,76.3647 -43.2495 0,,
|
||||
-3279.13 6959.12 2648.13,45,crouch,1.77307 140.804 0,,
|
||||
-3856.88 7224.88 2824.13,47,crouch,3.84399 -63.9478 0,,
|
||||
-3727.13 7224.88 2824.13,47,crouch,2.28943 -128.707 0,,
|
||||
-3606.96 6662.34 2824.13,48 383 388,stand,73.4314 98.1665 0,,
|
||||
-3610.88 6785.63 2824.13,382 384 387,stand,25.6024 91.9372 0,,
|
||||
-3614.36 6901.54 2824.13,383 385,stand,49.0857 -60.1849 0,,
|
||||
-3523.09 6912.88 2824.13,384,crouch,4.70642 -113.546 0,,
|
||||
-3476.13 6759.55 2824.13,387,crouch,6.43677 -140.792 0,,
|
||||
-3569.76 6762.12 2824.13,386 383,stand,60.8246 172.247 0,,
|
||||
-3517.25 6665.2 2824.13,49 382 389,stand,18.0054 -92.2705 0,,
|
||||
-3517.15 6574.4 2824.13,388 390 391,stand,51.673 -93.4845 0,,
|
||||
-3612.87 6498.52 2824.13,389,crouch,1.77307 39.8181 0,,
|
||||
-3423.13 6513.61 2824.13,389,crouch,3.84399 145.139 0,,
|
||||
-2991.13 6572.88 2824.13,393,crouch,1.94336 -132.162 0,,
|
||||
-3041.88 6471 2824.13,392 52 56 394,stand,41.8292 -20.6177 0,,
|
||||
-3067.32 6392.71 2824.13,393,crouch,5.05249 62.6038 0,,
|
||||
-3331.73 6543.85 2824.13,52 397 413,crouch,1.94336 -60.4981 0,,
|
||||
-3147.86 6163.13 2824.13,397,crouch,3.49792 130.301 0,,
|
||||
-3191.47 6290.83 2824.13,396 162 52 395 413 412,stand,21.6309 171.39 0,,
|
||||
-3675.94 6412.87 2824.13,399 414,crouch,2.98157 -30.0989 0,,
|
||||
-3619.9 6221.09 2824.13,400 53 398 411 414,stand,32.5073 -81.8994 0,,
|
||||
-3603.13 6027.13 2824.13,399,crouch,4.53613 131.845 0,,
|
||||
-3287.17 6054.22 2824.13,403,crouch,5.87219 151.853 0,,
|
||||
-3544.88 6093.33 2824.13,403,crouch,6.04248 -12.6892 0,,
|
||||
-3428.62 6071.74 2824.13,401 402 55 411 412,stand,14.502 -15.1062 0,,
|
||||
-3856.88 5855.13 2824.13,54,crouch,4.6637 46.0107 0,,
|
||||
-3552.88 5753.72 2824.13,67,crouch,4.31763 -3.3783 0,,
|
||||
-3851.88 5410.59 2824.13,65 407 409,stand,23.1372 121.448 0,,
|
||||
-3904.88 5528.88 2824.13,406,crouch,1.90063 -48.2849 0,,
|
||||
-3665.37 5111.13 2828.13,66 409,crouch,8.1134 120.234 0,,
|
||||
-3904.88 5119.13 2848.13,408 406 65,crouch,2.76306 39.776 0,,
|
||||
-3199.13 5622.88 2824.13,134 64,crouch,4.31763 -139.455 0,,
|
||||
-3434.34 6191.31 2824.13,414 403 412 399,stand,22.6208 13.5736 0,,
|
||||
-3308.32 6192.46 2824.13,411 403 413 397,stand,24.3457 68.3075 0,,
|
||||
-3301.08 6327.83 2824.13,414 395 52 397 412,stand,34.1895 154.297 0,,
|
||||
-3444.4 6336.51 2824.13,411 399 413 398,stand,20.8905 -106.419 0,,
|
||||
362.465 6443.45 2824.13,416 418 252 123,stand,28.147 -78.8269 0,,
|
||||
347.873 6319.96 2824.13,417 415 263 126,stand,31.5967 -179.313 0,,
|
||||
217.369 6323.28 2824.13,418 124 125 416,stand,36.7767 130.441 0,,
|
||||
219.248 6428.06 2824.13,124 417 415 251,stand,38.8477 -169.124 0,,
|
||||
32.9912 6141.1 2824.13,125 420 421,stand,23.3075 165.833 0,,
|
||||
31.0335 6288.86 2824.13,419,crouch,5.52612 -92.4719 0,,
|
||||
33.9761 6035.13 2824.13,419,crouch,3.27942 84.1663 0,,
|
||||
|
@@ -0,0 +1,606 @@
|
||||
605
|
||||
-3563.5 -2604 256.125,1 10 403 404 405 184,stand,,,
|
||||
-3374.32 -2236.29 256.125,0 405 426 406 591,stand,,,
|
||||
-3451.55 -1629.58 272.125,4 434 437,stand,,,
|
||||
-3436.57 -2018.71 256.125,424 429 427 434 593 594,stand,,,
|
||||
-3300.6 -1629.78 272.125,2 5,stand,,,
|
||||
-3288.4 -1716.89 272.125,4 6,stand,,,
|
||||
-2972.03 -1721.21 264.125,5 16 126 13 448,stand,,,
|
||||
-2971.33 -2228.11 264.125,448 454 455,stand,,,
|
||||
-2949.81 -2447.32 264.125,11 455 459,stand,,,
|
||||
-2977.31 -2803.12 256.125,10 368 399 409 408 398 410 184,stand,,,
|
||||
-3386.96 -2728.25 256.125,9 0 184 398 399,stand,,,
|
||||
-2723.62 -2450.89 264.125,8 12 457 460,stand,,,
|
||||
-2733.87 -2212.88 264.125,11 452 454,stand,,,
|
||||
-2719.33 -1838.87 260.507,125 126 6 451,stand,,,
|
||||
-2718.52 -2823.28 256.125,37 40 368 410 457,stand,,,
|
||||
-3447.4 -1320.33 256.401,16 17 437 440,stand,,,
|
||||
-2949.84 -1318.63 256.125,15 6 126 441 447,stand,,,
|
||||
-3504.87 -970.162 254.492,15 18 441 443,stand,,,
|
||||
-3065.88 -944.792 256.125,17 19 442 447,stand,,,
|
||||
-2708.17 -879.894 264.125,18 20 21 444 127 500,stand,,,
|
||||
-2389.07 -950.341 264.125,19 21 129 126,stand,,,
|
||||
-2362.34 -751.608 272.125,19 20 22,stand,,,
|
||||
-2357.11 -599.211 272.125,21 445 498 495,stand,,,
|
||||
-1811.34 -606.139 272.125,24 494 499,stand,,,
|
||||
-1795.76 -813.587 272.125,23 25 26 446 27,stand,,,
|
||||
-1817.45 -947.494 263.96,24 27 128 129 501,stand,,,
|
||||
-1297.34 -781.703 264.563,24 27 193 501,stand,,,
|
||||
-1254.02 -956.372 252.475,26 25 28 24 501 29,stand,,,
|
||||
-1093.03 -894.675 255.43,27 29 30 193 197,stand,,,
|
||||
-1014.35 -1168.97 253.716,28 198 27 502 505 506,stand,,,
|
||||
-745.564 -762.973 251.833,28 31 192 197 196,stand,,,
|
||||
-385.683 -602.234 256.125,30 32 192 200,stand,,,
|
||||
-503.495 -402.229 251.814,31 33 36,stand,,,
|
||||
-555.614 -25.1692 248.029,32 34 35 191,stand,,,
|
||||
-546.847 497.343 248.125,33 35 185 188 191,stand,,,
|
||||
-261.773 8.35699 248.125,34 33 36,stand,,,
|
||||
-246.164 -344.469 252.074,35 32 130 206,stand,,,
|
||||
-2805.45 -3130.55 263.539,14 38 367 41 42,stand,,,
|
||||
-2799.2 -3542.63 264.761,39 37 42 364 366 41,stand,,,
|
||||
-2808.89 -3754.81 291.85,38 363 362,stand,,,
|
||||
-2537.03 -2791.41 259.965,14 41 462,stand,,,
|
||||
-2522.45 -3301.55 256.125,40 42 81 38 37 369,stand,,,
|
||||
-2513.82 -3532.69 267.139,41 38 43 361 37,stand,,,
|
||||
-2225.03 -3540.95 264.019,42 44 81 359,stand,,,
|
||||
-2221.68 -3804.65 267.19,43 354 353,stand,,,
|
||||
-1719.03 -3499.7 261.35,46 54 86 358,stand,,,
|
||||
-1693.13 -3809.54 264.534,45 47 50 352,stand,,,
|
||||
-1690.8 -3904.87 270.33,46 48,stand,,,
|
||||
-1135.21 -3863.03 269.361,47 350 351 337,stand,,,
|
||||
-922.605 -3416.39 271.816,55 351 603 604,stand,,,
|
||||
-1379.09 -3801.41 448.125,46 51,stand,,,
|
||||
-1320.75 -3770.87 448.125,52 50 339,crouch,,,
|
||||
-1335.76 -3698.08 449.125,51 53 342,crouch,,,
|
||||
-1518.75 -3567.46 448.125,52 343 344 345 346,stand,,,
|
||||
-1446.37 -3436.89 272.125,45 603,stand,,,
|
||||
-687.015 -3425.25 276.988,49 56 64 336,stand,,,
|
||||
-562.524 -3552.61 274.41,55 57 65 64 336,stand,,,
|
||||
-561.038 -3782.73 271.837,56 58 327 328,stand,,,
|
||||
-854.851 -3792.44 384.125,57 62 329,stand,,,
|
||||
-839.91 -3560.38 384.125,60 61 62 333 334 335,stand,,,
|
||||
-848.113 -3398 384.125,59 335,stand,,,
|
||||
-553.324 -3562.75 384.125,59 332,stand,,,
|
||||
-835.346 -3664.52 384.125,63 58 59,stand,,,
|
||||
-724.571 -3666.03 384.125,62 331 330,stand,,,
|
||||
-643.626 -3215.36 247.881,55 67 92 56 90,stand,,,
|
||||
-461.298 -3526.5 263.635,56 66 326,stand,,,
|
||||
-464.174 -3386.78 253.161,65 67 325,stand,,,
|
||||
-435.295 -3205.34 250.169,66 64 93 324,stand,,,
|
||||
40.7186 -3395.4 239.964,69 71 325,stand,,,
|
||||
39.8413 -3712.71 240.452,68 70 320,stand,,,
|
||||
362.474 -3697.63 240.125,69 71 315 312 316 314,stand,,,
|
||||
307.481 -3360.68 240.094,70 68 75 315 312 95,stand,,,
|
||||
936.795 -3541.34 242.848,74 316 317,stand,,,
|
||||
671.173 -2885.33 273.917,74 75 80 311 95,stand,,,
|
||||
860.042 -3181.79 282.39,72 73 75 313 312 314,stand,,,
|
||||
433.974 -3171.49 239.316,73 71 74 312 313 95 80,stand,,,
|
||||
985.488 -2642.05 306.125,77 308 309 311,stand,,,
|
||||
1155.48 -2840.69 306.125,76 78 304,stand,,,
|
||||
1296.35 -2727.9 306.125,77 300 303,stand,,,
|
||||
911.029 -2292.37 292.087,80 142 301 547,stand,,,
|
||||
523.985 -2678.14 247.036,79 73 95 75 321 322,stand,,,
|
||||
-2197.35 -3304 254.757,41 43 82 356 359,stand,,,
|
||||
-2139.55 -3097.54 272.125,81 83 397,stand,,,
|
||||
-1937.64 -3043.68 272.125,82 84 394 396 576,stand,,,
|
||||
-1852.88 -2825.96 272.125,83 85 576,stand,,,
|
||||
-1649.57 -2824.3 263.278,84 88 104 571 575,stand,,,
|
||||
-1626.36 -3211.99 244.336,45 87 356 357 575,stand,,,
|
||||
-1443.11 -3206.49 255.919,86 88 89 603,stand,,,
|
||||
-1446.78 -2837.4 266.125,87 85 105 577,stand,,,
|
||||
-1119.71 -3260.16 256.126,87 90 603 604,stand,,,
|
||||
-864.185 -3158.85 260.431,89 91 604 64,stand,,,
|
||||
-860.086 -2983.69 250.17,90 92 553,stand,,,
|
||||
-598.771 -2968.69 281.52,91 93 64,stand,,,
|
||||
-347.324 -2995.03 266.11,92 94 67 324 325,stand,,,
|
||||
-372.582 -2444.78 256.125,93 145 150 530 531 538 532,stand,,,
|
||||
219.782 -2969.55 248.125,80 75 73 71 324,stand,,,
|
||||
-2106.27 -2922.26 272.125,97 98 392 393 394,stand,,,
|
||||
-2079 -2677.94 264.125,96 104 462 574,stand,,,
|
||||
-2385.13 -2984.75 272.125,96 99 390 391,stand,,,
|
||||
-2425.66 -3127.47 272.125,98 100 389,stand,,,
|
||||
-2160.1 -3112.69 414.346,99 101 376 377,stand,,,
|
||||
-2153.53 -2963.17 422.809,100 103 374 375 378,stand,,,
|
||||
-1928.06 -2998.07 439.588,378 379 382,stand,,,
|
||||
-2400.71 -2959.07 408.125,101 372 371 373,stand,,,
|
||||
-1838.07 -2664.86 266.505,97 85 148 574,stand,,,
|
||||
-1273.39 -2753.44 266.125,88 108 557 561 570,stand,,,
|
||||
-1013.05 -2966.69 266.125,107 558 566,stand,,,
|
||||
-986.343 -2699.46 266.125,106 567 568,stand,,,
|
||||
-1218.41 -2529.52 266.125,105 109 555 556,stand,,,
|
||||
-1108 -2525.98 266.125,108 110,stand,,,
|
||||
-1131.54 -2374.79 264.125,109 111 183 485,stand,,,
|
||||
-1138.14 -2212.41 264.125,110 112 145 144 183,stand,,,
|
||||
-1281.52 -2213.32 264.125,111 146 183 578,stand,,,
|
||||
-1459.22 -1848.01 270.125,114 579 578,stand,,,
|
||||
-1497.46 -1522 270.125,113 581 582 587 590,stand,,,
|
||||
-1230.28 -1486.44 270.125,116 582 585,stand,,,
|
||||
-1201 -1625.73 270.125,115 504 586,stand,,,
|
||||
-1556.94 -1264.84 270.125,118 588 590,stand,,,
|
||||
-1790.09 -1313.96 274.116,117 119 480 488 486 501,stand,,,
|
||||
-2013.98 -1293.96 284.802,118 120 128 486,stand,,,
|
||||
-2221.1 -1360.59 268.125,119 121 127,stand,,,
|
||||
-2178.69 -1550.12 268.125,120 122 486 489 490,stand,,,
|
||||
-2365.93 -1601.62 268.125,121 123 124 491,stand,,,
|
||||
-2406.85 -1411.66 268.125,122 492 493,stand,,,
|
||||
-2245.85 -1907.18 268.125,122 125 464 465 466 468,stand,,,
|
||||
-2558.07 -1980.81 256.125,124 13 461 452 451 126,stand,,,
|
||||
-2630.39 -1381.91 263.084,13 16 127 6 125 20,stand,,,
|
||||
-2310.99 -1223.84 266.614,126 120 128 19,stand,,,
|
||||
-2043.33 -1118.96 256.546,127 119 25 129,stand,,,
|
||||
-2054.39 -938.993 264.467,128 25 20,stand,,,
|
||||
151.888 -273.053 242.196,36 131 203 204,stand,,,
|
||||
429.193 -444.277 243.087,130 132 203 204 208,stand,,,
|
||||
581.359 -873.352 257.036,131 133 203 207,stand,,,
|
||||
295.892 -1310.95 284.903,132 136 274 523,stand,,,
|
||||
790.823 -1608.89 288.125,135 178 179 274 275 299,stand,,,
|
||||
651.259 -1782.12 288.125,134 136 142 541 546 548,stand,,,
|
||||
200.917 -1503.13 280.125,135 133 522 523 524 541,stand,,,
|
||||
1292.27 -1915.59 289.358,138 269 276 294 296,stand,,,
|
||||
1593 -2023.2 288.125,137 139 155 269 153,stand,,,
|
||||
1420.75 -2399.83 288.125,138 140 141 302 300,stand,,,
|
||||
1737.86 -2453.65 288.125,139,stand,,,
|
||||
1452.3 -2719.3 289.21,139,stand,,,
|
||||
1090.06 -2123.26 288.125,79 135 302 547 549,stand,,,
|
||||
-855.561 -1923.21 252.125,144 152 511 512 516,stand,,,
|
||||
-862.494 -2162.21 252.125,143 111 516 532 528,stand,,,
|
||||
-816.03 -2529.84 256.125,94 111 554,stand,,,
|
||||
-1494.03 -2244.97 264.071,112 147 182 483 482 148,stand,,,
|
||||
-1487.88 -2420.81 264.09,146 182 485 572 577,stand,,,
|
||||
-1858.24 -2462.93 277.755,104 149 481 146 572 574,stand,,,
|
||||
-2403.13 -2535.06 264.125,148 461 462 573,stand,,,
|
||||
-75.5565 -2393.98 256.125,94 533 534 538,stand,,,
|
||||
-154.382 -1835.07 264.125,152 524 518 543 520,stand,,,
|
||||
-572.837 -1905.63 264.125,151 143 518 520 525 529 524,stand,,,
|
||||
1907.9 -2430.13 288.31,154 291 138,stand,,,
|
||||
2166.93 -2234.47 289.688,153 155 291,stand,,,
|
||||
1755.99 -1838.51 288.116,154 138 156 269,stand,,,
|
||||
1855.12 -1691.98 288.009,155 157 164 180 278,stand,,,
|
||||
2116.69 -1861.74 360.125,156 236 288,stand,,,
|
||||
2427.12 -1379.06 432.125,159 234 235 240 239,stand,,,
|
||||
2178.73 -1196.66 432.125,158 160 173 231 242,stand,,,
|
||||
2296.18 -1013.27 432.125,159 161 232,stand,,,
|
||||
1992.24 -850.173 296.125,160 162 233 282,stand,,,
|
||||
1776.27 -1217.32 296.125,161 165 277 281,stand,,,
|
||||
2126.01 -1443.89 296.125,281 283 284 285 286,stand,,,
|
||||
1574.66 -1500.86 296.125,156 269 277,stand,,,
|
||||
1612.24 -1067.71 296.125,162 166 279,stand,,,
|
||||
1720.91 -916.862 296.125,165 167 280,stand,,,
|
||||
1386.04 -705.871 296.125,166 168 257 263,stand,,,
|
||||
1062.07 -474.762 432.125,167 222 224,stand,,,
|
||||
900.885 -781.588 432.125,211 220 221 224,stand,,,
|
||||
713.971 -1048.34 432.125,211 212 213,stand,,,
|
||||
1380.02 -1091.53 432.125,172 174 218 255,stand,,,
|
||||
1589.98 -843.837 432.125,171 173 225,stand,,,
|
||||
1830.82 -1007.8 432.125,172 174 159 226 227,stand,,,
|
||||
1677.95 -1266.74 432.125,173 171 228 229 230 244,stand,,,
|
||||
1111.68 -1525.24 432.125,176 252 253 255,stand,,,
|
||||
1365.12 -1707.34 432.125,175 247 248 250 251,stand,,,
|
||||
1224.36 -986.878 296.125,260 261 263 271,stand,,,
|
||||
909.603 -1460.09 288.125,134 267 270,stand,,,
|
||||
625.13 -1279.49 288.125,134 272 274 595,stand,,,
|
||||
2226.64 -1695.7 296.125,156 278,stand,,,
|
||||
-1865.35 -1819.12 250.029,480 477 482,stand,,,
|
||||
-1750.35 -2223.52 270.74,146 481 482 483 147 572,stand,,,
|
||||
-1204.9 -2301.89 264.125,111 112 110 485,stand,,,
|
||||
-3373.97 -2618.11 256.125,10 0 406 408 9,stand,,,
|
||||
-720.302 758.688 248.125,34 186 190 191,stand,15.0238 116.409 0,,
|
||||
-650.798 908.403 248.125,185 187 190,stand,26.0706 6.24878 0,,
|
||||
-451.432 903.863 248.125,186 188 189,stand,19.8578 -77.8406 0,,
|
||||
-440.229 666.256 248.125,187 34,stand,18.8196 -98.5608 0,,
|
||||
-363.559 972.984 256.125,187,crouch,2.76306 -106.839 0,,
|
||||
-859.843 851.801 256.125,186 185,crouch,2.93335 -47.4469 0,,
|
||||
-666.026 463.076 248.125,185 34 33,stand,15.8862 -87.5031 0,,
|
||||
-773.45 -651.93 264.125,30 31 193,stand,20.7202 -158.129 0,,
|
||||
-1135.54 -735.997 264.125,192 26 28,stand,23.4833 -159.513 0,,
|
||||
-627.029 -991.364 293.125,195 196,stand,61.6443 -164.177 0,,
|
||||
-825.8 -1050.25 293.125,194 197 198,stand,26.9385 -170.219 0,,
|
||||
-650.997 -904.396 337.125,194 30 197,stand,60.0897 -158.821 0,,
|
||||
-855.698 -975.542 337.125,30 195 28 196,stand,52.4927 111.223 0,,
|
||||
-890.41 -1095.69 337.125,195 29 509,stand,58.1891 -155.031 0,,
|
||||
-112.575 -933.043 254.346,200 201 522 523,stand,10.8765 105.351 0,,
|
||||
-268.038 -748.505 256.29,31 199 205 206,stand,15.5402 130.905 0,,
|
||||
-27.5932 -897.898 295.583,199 202,stand,22.4451 38.7134 0,,
|
||||
95.6691 -731.265 284.359,201 203 204,stand,28.6633 52.3529 0,,
|
||||
321.395 -675.206 274.548,202 132 131 130 204,stand,28.6633 -49.5178 0,,
|
||||
-3.14075 -623.553 262.974,202 130 203 131 205 206,stand,13.9856 -132.228 0,,
|
||||
-107.546 -688.411 291.725,204 200,stand,57.1509 68.9845 0,,
|
||||
-196.795 -594.866 256.125,36 200 204,stand,10.5304 -78.6333 0,,
|
||||
639.567 -799.939 253.503,132 208 209,stand,45.412 -38.4123 0,,
|
||||
586.403 -616.204 241.593,207 131,stand,21.4124 130.283 0,,
|
||||
693.975 -845.531 267.793,207 210,climb,-85 -32.8807 0,,
|
||||
698.608 -843.492 464.125,209 211,climb,85 147.377 0,,
|
||||
794.839 -920.203 432.125,210 170 169 213,climb,31.6449 -50.5867 0,,
|
||||
677.672 -1099.05 432.125,170,crouch,7.12341 -125.524 0,,
|
||||
797.216 -1072.41 464.125,211 170,crouch,21.9714 -84.2653 0,,
|
||||
978.552 -912.781 432.125,220 215,crouch,12.6495 -115.175 0,,
|
||||
1064.95 -968.932 432.125,220 219 216 214,crouch,13.1659 -116.038 0,,
|
||||
1141.11 -1017.32 432.125,219 218 217 215,crouch,14.2041 -123.118 0,,
|
||||
1217.74 -1068.03 432.125,218 216,crouch,11.7871 -125.014 0,,
|
||||
1263.23 -998.159 432.125,171 219 217 216,stand,15.4126 151.243 0,,
|
||||
1152.73 -921.327 432.125,218 220 215 216,stand,23.8721 148.996 0,,
|
||||
1031.49 -848.923 432.125,219 169 214 215,stand,35.4407 147.964 0,,
|
||||
915.24 -886.718 432.125,169,crouch,1.94336 95.9874 0,,
|
||||
1041.96 -394.593 432.125,168,crouch,4.8822 -74.7731 0,,
|
||||
1050.68 -692.882 464.125,224,crouch,31.4691 -22.6375 0,,
|
||||
974.3 -636.632 432.125,223 169 168,stand,35.2704 -175.957 0,,
|
||||
1493.84 -786.765 432.125,172,crouch,12.4792 150.37 0,,
|
||||
1671.77 -996.459 432.125,173,crouch,6.77734 20.0115 0,,
|
||||
1862.83 -935.765 432.125,173,crouch,14.2041 -17.1003 0,,
|
||||
1704.61 -1063.4 432.125,174,crouch,6.26099 -85.4792 0,,
|
||||
1686.82 -1387.79 432.125,174,crouch,6.77734 96.6796 0,,
|
||||
1840.27 -1151.49 432.125,174,crouch,5.56885 -159.895 0,,
|
||||
2113.26 -1283.12 432.125,159,crouch,11.9574 90.8074 0,,
|
||||
2375.82 -1031.87 443.625,160,crouch,9.19434 -173.535 0,,
|
||||
1971.79 -769.493 318.125,161,crouch,4.87671 -77.8822 0,,
|
||||
2171.62 -1321.06 432.125,158,crouch,5.05249 -8.30029 0,,
|
||||
2539.62 -1367.18 443.625,158,crouch,6.77734 -168.014 0,,
|
||||
2220.43 -1687.73 432.125,157 240 241,stand,35.0946 -122.086 0,,
|
||||
2277.24 -1771.21 476.125,238,crouch,12.4792 105.65 0,,
|
||||
2348.78 -1661.01 476.125,237 239,stand,61.687 104.612 0,,
|
||||
2397.65 -1579.92 466.125,238 240 158,stand,47.5256 127.403 0,,
|
||||
2316.77 -1538.75 432.125,239 158 236,stand,47.1851 53.8494 0,,
|
||||
2141.59 -1683.12 432.125,236,crouch,12.6495 28.2897 0,,
|
||||
2371.89 -1258.25 432.125,159,crouch,7.64526 -166.828 0,,
|
||||
1452.45 -1416.36 432.125,244 245 246,stand,28.5358 74.8937 0,,
|
||||
1530.01 -1476.91 432.125,174 243 250,stand,34.408 29.4817 0,,
|
||||
1304.38 -1444.68 466.125,243,crouch,12.9956 15.4851 0,,
|
||||
1422.98 -1262.06 452.125,243,crouch,11.9574 -69.4612 0,,
|
||||
1373.1 -1870.86 432.125,176,crouch,8.16162 102.167 0,,
|
||||
1333.63 -1844.56 432.125,176,crouch,14.8962 -124.195 0,,
|
||||
1514.14 -1653.69 432.125,250,crouch,17.3132 -35.6178 0,,
|
||||
1450.11 -1599.96 432.125,249 176 244,stand,49.256 -150.958 0,,
|
||||
1130.1 -1713.05 454.125,176,crouch,11.9574 14.7985 0,,
|
||||
962.366 -1604.12 432.125,175,crouch,5.05249 25.1641 0,,
|
||||
1098.02 -1692.22 432.125,175,crouch,10.2325 85.2483 0,,
|
||||
1262.5 -1438.94 432.125,255,crouch,9.54041 88.1816 0,,
|
||||
1205.73 -1376.2 432.125,254 175 171 256,stand,27.4976 53.9977 0,,
|
||||
1103.07 -1387.49 432.125,255,crouch,17.4835 152.237 0,,
|
||||
1247.51 -717.377 296.125,167 258 259 263,stand,38.8959 -23.8789 0,,
|
||||
1138.25 -613.546 296.125,257,crouch,11.441 -42.5282 0,,
|
||||
1123.61 -777.868 296.125,257 260,stand,25.4266 -7.82239 0,,
|
||||
1039.64 -880.992 296.125,259 177 598,stand,26.9812 -68.2527 0,,
|
||||
1359.19 -1076.22 296.125,177 262 264 602,stand,22.6636 -83.9686 0,,
|
||||
1447.35 -955.258 296.125,261 263,stand,22.8339 139.109 0,,
|
||||
1323.58 -849.884 296.125,262 167 177 257,stand,23.8721 109.067 0,,
|
||||
1440.82 -1149.56 296.125,261,crouch,8.50769 147.03 0,,
|
||||
1252.25 -1267.7 296.125,266 271 270 602,stand,20.5927 166.888 0,,
|
||||
1114.09 -1477.94 296.125,265 267 270 271,stand,19.7302 -173.947 0,,
|
||||
1028.14 -1600.31 296.125,266 268 178 275,stand,17.6538 149.793 0,,
|
||||
1260.12 -1745.57 296.125,269 267 276,stand,18.8623 -36.3374 0,,
|
||||
1357.91 -1814.65 296.125,268 137 164 138 155,stand,36.825 -114.895 0,,
|
||||
975.635 -1392.44 288.125,266 178 271 265 596,stand,35.957 -157.198 0,,
|
||||
1104.7 -1176.34 288.125,177 270 265 266 597,stand,21.9714 -53.6079 0,,
|
||||
580.675 -1137.82 320.125,179 273,stand,44.0759 -86.078 0,,
|
||||
538.559 -1175.67 347.125,272,crouch,11.7871 153.918 0,,
|
||||
450.627 -1409.72 285.068,179 134 133 297,stand,34.5782 179.302 0,,
|
||||
953.728 -1726.36 291.724,134 276 267,stand,26.4594 78.9861 0,,
|
||||
1181.69 -1851.3 290.012,275 137 268,stand,24.7345 1.28528 0,,
|
||||
1690.2 -1338.08 296.125,164 278 162,stand,24.0424 57.398 0,,
|
||||
1918.4 -1496.82 296.125,277 180 156,stand,40.2747 -90.3956 0,,
|
||||
1511.17 -1111.56 296.125,165,crouch,7.81555 7.32227 0,,
|
||||
1788.11 -919.683 296.125,166,crouch,8.84827 -174.49 0,,
|
||||
1918.42 -1312.38 296.125,282 162 163 286,stand,50.1184 60.6939 0,,
|
||||
2091.64 -1023.66 296.125,161 281 287,stand,40.9668 148.409 0,,
|
||||
2215.48 -1376.08 318.125,163,crouch,11.441 -161.702 0,,
|
||||
2152.71 -1518.13 296.125,163,crouch,8.33191 -123.201 0,,
|
||||
2074.44 -1476.51 296.125,286 163,crouch,9.71069 -124.755 0,,
|
||||
1987.99 -1414.75 296.125,285 281 163,crouch,9.88647 -125.623 0,,
|
||||
2167.28 -1059.22 296.125,282,crouch,8.84827 150.633 0,,
|
||||
2059.44 -1943.45 340.425,157 289,stand,58.5779 9.90955 0,,
|
||||
2144.47 -2123.05 340.425,290 288,stand,65.1367 -37.9194 0,,
|
||||
2346.93 -2238.86 340.425,289,crouch,10.7489 -177.946 0,,
|
||||
2088.03 -2472.96 289.822,154 153 292 293,stand,23.6963 -165.169 0,,
|
||||
2159.05 -2502.2 290.958,291 293,crouch,6.77734 160.29 0,,
|
||||
2056.75 -2540.57 290.137,291 292,crouch,6.77734 108.495 0,,
|
||||
1458.02 -2122.85 290.125,137,crouch,2.45972 112.978 0,,
|
||||
1188.24 -1905.33 347.125,296,crouch,9.71069 -126.859 0,,
|
||||
1245.62 -1952.59 318.125,295 137,stand,56.3312 -7.8938 0,,
|
||||
481.708 -1489.55 314.125,274 298,stand,17.6538 -115.988 0,,
|
||||
541.194 -1521.49 347.125,299 297,crouch,8.15613 -127.035 0,,
|
||||
596.386 -1550.28 314.125,298 134,stand,59.0942 -157.594 0,,
|
||||
1203.36 -2629.65 306.125,78 301 139,stand,24.0424 107.781 0,,
|
||||
1097.45 -2504.03 306.125,300 79 302,stand,24.2181 114.856 0,,
|
||||
1316.49 -2296.91 288.125,301 139 142 552,stand,34.2322 -70.0709 0,,
|
||||
1437.63 -2855.24 306.125,78,crouch,3.32214 150.243 0,,
|
||||
1137.41 -2904.87 306.125,77 305,stand,42.8674 -51.092 0,,
|
||||
1197.28 -2973 306.125,304 306,stand,36.9952 -46.0823 0,,
|
||||
1244.28 -2936.95 306.125,305 307,stand,48.9099 -63.177 0,,
|
||||
1268.37 -2994.09 306.125,306,crouch,3.49792 119.668 0,,
|
||||
976.711 -2527.27 306.125,76,crouch,7.2937 -94.4276 0,,
|
||||
892.606 -2554.98 306.125,76,crouch,10.9247 -94.944 0,,
|
||||
779.248 -2894.8 306.125,311,stand,6.60706 86.8688 0,,
|
||||
740.638 -2817.32 306.125,76 73 310,stand,36.8195 -125.849 0,,
|
||||
480.785 -3368.78 240.125,313 315 70 71 75 74,stand,43.3838 -71.9771 0,,
|
||||
635.932 -3373.65 244.059,314 312 74 75 316,stand,41.8292 -82.1614 0,,
|
||||
634.754 -3504.66 239.166,315 313 316 70 74 319 318,stand,33.54 -167.8 0,,
|
||||
497.827 -3505.2 240.125,70 314 312 71 316 319 318,stand,29.5685 -147.426 0,,
|
||||
770.292 -3587.36 240.125,314 72 70 315 313 318,stand,37.6874 32.9808 0,,
|
||||
1040.88 -3620.66 254.417,72,crouch,8.84827 146.244 0,,
|
||||
653.706 -3667.44 240.125,316 319 315 314,prone,1.427 119.652 0,,
|
||||
527.859 -3696.12 241.699,318 314 315,prone,3.49792 88.2311 0,,
|
||||
-2.875 -3768.88 242.009,69,crouch,6.26099 47.8289 0,,
|
||||
731.466 -2718.6 291.22,80,crouch,17.6538 179.214 0,,
|
||||
444.292 -2589.59 285.583,80 323,stand,45.6305 95.6468 0,,
|
||||
517.065 -2513 306.125,322,prone,6.60706 38.1499 0,,
|
||||
-189.492 -2986.71 272.125,95 93 325 67,stand,21.6254 -159.714 0,,
|
||||
-224.48 -3384.14 260.125,324 68 66 93,stand,41.8292 -29.0205 0,,
|
||||
-466.367 -3744.88 280.501,65,crouch,6.60706 90.6316 0,,
|
||||
-646.875 -3628.13 303.864,57,crouch,18.1757 -46.6426 0,,
|
||||
-527.125 -3821.88 266.92,57,crouch,4.53613 124.294 0,,
|
||||
-868.875 -3821.88 384.125,58,crouch,8.85376 49.6801 0,,
|
||||
-685.125 -3717.88 384.125,63,crouch,8.67798 146.376 0,,
|
||||
-685.125 -3628.13 384.125,63,crouch,11.095 -153.369 0,,
|
||||
-574.156 -3538.36 384.125,61,prone,10.2325 107.007 0,,
|
||||
-718.289 -3485.7 384.125,59,prone,10.5786 62.4462 0,,
|
||||
-787.828 -3473.34 384.125,59,prone,14.7205 43.9781 0,,
|
||||
-864.875 -3438.55 384.125,60 59,crouch,18.1757 177.967 0,,
|
||||
-760.875 -3589.88 296.276,56 55,crouch,15.929 44.1594 0,,
|
||||
-1217.88 -3612.39 265.241,338 351 48,climb,-85 -175.814 0,,
|
||||
-1219.25 -3612.01 468.125,337 341,climb,85 4.43835 0,,
|
||||
-1195.67 -3784.7 448.125,51 341,stand,57.0288 179.19 0,,
|
||||
-1208.95 -3500.44 448.125,341,crouch,16.2805 54.0122 0,,
|
||||
-1186.66 -3605.54 448.125,340 339 338,stand,82.0667 -132.805 0,,
|
||||
-1258.43 -3724.32 448.125,52,crouch,4.70642 156.256 0,,
|
||||
-1595.15 -3750.72 480.125,53,crouch,5.05249 51.4524 0,,
|
||||
-1612.02 -3509.56 448.125,53,crouch,5.22827 -32.637 0,,
|
||||
-1275.09 -3486 448.125,53,crouch,7.46948 -141.934 0,,
|
||||
-1541.92 -3497.03 448.125,53 347,stand,56.1609 88.0424 0,,
|
||||
-1551.64 -3444.88 448.125,346 348 349,stand,41.6589 -1.74341 0,,
|
||||
-1617.04 -3437.73 448.125,347,crouch,24.0479 136.739 0,,
|
||||
-1280.11 -3414.17 448.125,347,crouch,30.2606 34.6982 0,,
|
||||
-903.13 -3842.17 294.45,48 351,crouch,7.64526 136.767 0,,
|
||||
-994.443 -3639.16 268.253,49 337 350 48,stand,43.7299 93.4366 0,,
|
||||
-1639.52 -3664.57 264.125,46,crouch,5.56885 -117.369 0,,
|
||||
-2165.97 -3855.83 285.125,44,crouch,5.74463 115.382 0,,
|
||||
-2259.28 -3851.54 285.125,44,crouch,6.26099 75.1444 0,,
|
||||
-1924.13 -3175.13 262.162,356,crouch,6.77734 -137.243 0,,
|
||||
-1962.68 -3269.22 256.214,355 81 86 357 360,stand,55.6445 20.5698 0,,
|
||||
-1869.65 -3356.34 254.756,356 86 358,stand,27.6733 -5.48425 0,,
|
||||
-1861.9 -3507.94 270.125,357 45 360,stand,42.5214 -29.1378 0,,
|
||||
-2120.82 -3540.93 270.125,43 360 81,stand,31.991 35.4398 0,,
|
||||
-1983.64 -3544.31 270.125,359 358 356,stand,28.0194 79.1215 0,,
|
||||
-2487.61 -3601.17 273.125,42,crouch,8.16162 81.5384 0,,
|
||||
-2872.67 -3804.88 290.069,39,crouch,11.9574 68.0692 0,,
|
||||
-2765.13 -3804.88 288.326,39,crouch,7.46948 111.41 0,,
|
||||
-2936.88 -3560.88 278.125,38 366,crouch,7.46948 39.7684 0,,
|
||||
-2904.29 -3245.67 310.058,366 367,stand,27.3273 77.7372 0,,
|
||||
-2904.39 -3382.86 256.371,365 38 364,stand,32.6776 -77.3074 0,,
|
||||
-2903.13 -3153.19 256.125,365 37 368,stand,61.1707 -24.8257 0,,
|
||||
-2897.72 -2914.62 262.087,367 9 14 398,stand,52.8815 86.2131 0,,
|
||||
-2424.72 -3183.13 266.229,41 370,climb,-85 90.0419 0,,
|
||||
-2424.62 -3178.3 440.125,369 373,climb,85 -90.046 0,,
|
||||
-2279.13 -3056.88 408.125,103,crouch,7.12341 131.828 0,,
|
||||
-2279.13 -2866.31 408.125,103,crouch,5.74463 -153.234 0,,
|
||||
-2423.6 -3053.69 408.125,103 370,stand,29.7443 83.6533 0,,
|
||||
-2240.88 -2799.13 409.174,375 101,crouch,5.39856 -47.9189 0,,
|
||||
-2118.95 -2797.13 426.125,374 101,crouch,10.4083 -118.017 0,,
|
||||
-2111.13 -3202.88 424.125,100 377,crouch,8.67798 132.345 0,,
|
||||
-2240.88 -3200.88 408.125,376 100,crouch,15.7587 52.4137 0,,
|
||||
-2023.4 -2987.03 435.9,102 101 379 380 388,stand,27.8436 20.2897 0,,
|
||||
-2051.22 -2797.13 426.125,378 380 102 382,crouch,6.60706 -57.2408 0,,
|
||||
-1848.55 -2852.29 413.126,379 378 382,crouch,8.85376 -139.259 0,,
|
||||
-1816.32 -2978.11 415.031,382 383,crouch,28.5358 -10.7797 0,,
|
||||
-1888.4 -2934.87 434.617,381 380 102 379 383,stand,58.2318 69.1678 0,,
|
||||
-1858.25 -3060.83 428.905,382 381 384 387,stand,64.2743 -64.4753 0,,
|
||||
-1817.06 -3124.4 410.492,383 387,crouch,22.6636 -5.7644 0,,
|
||||
-1906.84 -3194.67 411.347,387,crouch,34.2322 -89.3319 0,,
|
||||
-2012.35 -3194.93 409.475,388,crouch,30.777 -93.4793 0,,
|
||||
-1925.22 -3140.8 421.287,383 388 385 384,stand,24.0479 149.121 0,,
|
||||
-2000.32 -3110.26 428.784,387 378 386,stand,33.7158 148.429 0,,
|
||||
-2432.88 -3136.88 272.125,99,crouch,9.54041 49.9967 0,,
|
||||
-2432.88 -2893.13 272.125,98,crouch,5.05249 -29.4344 0,,
|
||||
-2279.13 -3064.88 310.125,98,crouch,21.109 134.948 0,,
|
||||
-2240.88 -2829.13 272.125,96,crouch,7.46948 -39.9594 0,,
|
||||
-2071.13 -3008.88 272.125,96,crouch,10.0568 118.551 0,,
|
||||
-2005.92 -2934.13 272.125,96 83 395 576,stand,31.4691 -2.66077 0,,
|
||||
-2032.88 -2799.13 272.125,394,crouch,5.74463 -59.6304 0,,
|
||||
-1807.13 -3104.88 310.125,83,crouch,12.3035 145.666 0,,
|
||||
-2240.88 -3136.88 272.125,82,crouch,5.91492 20.6522 0,,
|
||||
-3094.94 -2938.58 264.418,368 10 399 9,stand,27.8436 47.3984 0,,
|
||||
-3399.73 -2862.28 256.125,10 398 9 400,stand,17.9999 -21.3156 0,,
|
||||
-3566.66 -2881.3 260.125,399 401 402,stand,17.4835 -168.433 0,,
|
||||
-3666.49 -2968.52 265.888,400 402,crouch,9.54041 53.0948 0,,
|
||||
-3672.88 -2867.22 256.125,400 401 403,stand,25.943 -18.569 0,,
|
||||
-3672.88 -2731 256.125,402 0,stand,19.7302 49.6396 0,,
|
||||
-3672.88 -2289 261.367,0 405,crouch,8.67798 -50.8523 0,,
|
||||
-3508.53 -2322.68 260.751,404 1 0,stand,21.6254 4.05737 0,,
|
||||
-3334.52 -2445.02 256.125,184 407 1,stand,14.7205 16.4829 0,,
|
||||
-3045.13 -2465.94 256.125,406 408,stand,27.4976 -92.2927 0,,
|
||||
-3067.28 -2679.16 264.125,407 409 9 184,stand,22.6636 -29.7915 0,,
|
||||
-2971.67 -2677.95 256.125,408 9 459 410,stand,45.6305 102.484 0,,
|
||||
-2836.18 -2814.37 256.125,9 14 411 409,stand,28.7115 21.3169 0,,
|
||||
-2827.96 -2682.21 314.737,410 412,stand,16.2805 91.4087 0,,
|
||||
-2828.38 -2663.13 321.856,413 411,climb,-85 89.8541 0,,
|
||||
-2827.81 -2651.38 424.125,412 414,climb,85 -90.5908 0,,
|
||||
-2827.39 -2542.57 416.125,413 415 416 417,stand,30.0903 -87.1521 0,,
|
||||
-2925.9 -2548.91 416.125,414 417 416,stand,21.8066 126.598 0,,
|
||||
-2828.58 -2375.64 416.125,417 414 415,stand,27.3273 -144.138 0,,
|
||||
-2958.01 -2368.47 416.125,416 415 414 418,stand,24.9103 -162.09 0,,
|
||||
-2945.63 -2190.11 416.125,417 419 421 420,stand,23.1854 7.96756 0,,
|
||||
-2827.11 -2187.3 416.125,418 420 421,stand,36.6547 -1.17858 0,,
|
||||
-2829.76 -1948.37 416.125,419 421 418,stand,55.1282 110.882 0,,
|
||||
-2971.38 -1957.84 416.125,420 418 419 422,stand,41.8347 -158.986 0,,
|
||||
-3050.51 -1960.37 424.125,421 423,climb,85 -179.009 0,,
|
||||
-3061.13 -1963 257.201,422 424 425,climb,-85 0.727565 0,,
|
||||
-3162.9 -1962.8 256.125,423 425 427 3 594,stand,12.7289 -171.598 0,,
|
||||
-3062.56 -2093.36 256.125,424 426 423 594,stand,44.5013 -91.8268 0,,
|
||||
-3066.88 -2239 256.125,425 1,stand,34.0674 178.217 0,,
|
||||
-3122.16 -1839.97 264.125,424 428 3,stand,51.1566 1.56253 0,,
|
||||
-3039.13 -1834.17 324.697,427,stand,28.0194 1.39224 0,,
|
||||
-3672.88 -1863.13 264.125,3,crouch,5.57434 -40.9216 0,,
|
||||
-3536.44 -2238.91 256.125,431 433 592,stand,57.5452 179.728 0,,
|
||||
-3672.88 -2240.88 256.125,430 432,crouch,9.02954 41.4209 0,,
|
||||
-3672.87 -2084.96 256.125,431 433,crouch,7.64526 2.21072 0,,
|
||||
-3563.81 -2081.88 256.125,432 430 593 592,stand,57.721 11.7029 0,,
|
||||
-3430.8 -1796.67 272.125,2 435 3 436,stand,20.2521 -129.351 0,,
|
||||
-3368.13 -1821.92 272.125,434,crouch,7.82105 133.437 0,,
|
||||
-3584.88 -1824.88 272.125,434,crouch,9.37012 26.7267 0,,
|
||||
-3443.66 -1475.54 272.125,15 2 438 439,stand,19.7302 -132.619 0,,
|
||||
-3584.88 -1423.13 272.125,437,crouch,8.3374 -35.4285 0,,
|
||||
-3367.13 -1423.13 272.125,437,crouch,5.05798 -141.804 0,,
|
||||
-3672.88 -1392.88 262.342,15,crouch,7.59705 42.6794 0,,
|
||||
-3284.79 -1114.33 256.125,17 16,stand,19.8578 -35.0214 0,,
|
||||
-3409 -691.351 264.125,18 443 444,crouch,5.87219 -42.2723 0,,
|
||||
-3491.98 -834.08 256.125,442 17,stand,42.1326 25.7605 0,,
|
||||
-3045.15 -734.451 264.125,19 442,stand,18.8196 -20.5139 0,,
|
||||
-2536.88 -519.125 306.125,22,crouch,12.9474 -38.9874 0,,
|
||||
-1968.88 -716.512 272.125,24,crouch,8.28918 -20.871 0,,
|
||||
-3059.34 -1131.24 256.125,18 16,stand,75.108 -89.5795 0,,
|
||||
-2973.68 -2094.77 264.125,6 7 449,stand,66.0046 -4.4519 0,,
|
||||
-2817.06 -2111.23 264.125,448 450 452 454,stand,24.9103 15.2301 0,,
|
||||
-2822.25 -1974.71 264.125,449 451 453,stand,30.4364 8.49548 0,,
|
||||
-2719.67 -1975.8 264.125,450 452 13 125,stand,22.8394 -93.551 0,,
|
||||
-2724.74 -2109.08 264.125,12 451 449 125,stand,34.408 -100.11 0,,
|
||||
-2846.88 -1919.13 264.125,450,crouch,7.81555 -58.1586 0,,
|
||||
-2843.69 -2210.74 263.678,7 12 449,stand,52.1893 27.8314 0,,
|
||||
-2957.4 -2334.57 264.125,8 7 456,stand,44.9384 10.3906 0,,
|
||||
-2796.36 -2339.91 264.125,455,crouch,7.81555 -2.73254 0,,
|
||||
-2722.45 -2512.73 264.125,11 14 458,stand,25.4266 -157.794 0,,
|
||||
-2826.33 -2516.29 264.125,457 459,stand,24.9103 0.0140381 0,,
|
||||
-2951.7 -2523.65 264.125,458 8 409,stand,32.8534 131.751 0,,
|
||||
-2647.37 -2367.14 256.125,11 461,stand,20.4224 78.5773 0,,
|
||||
-2459.58 -2309.94 257.355,460 149 125,stand,26.1188 -97.3743 0,,
|
||||
-2359.32 -2731.54 264.125,149 463 40 97 573,stand,18.8678 173.702 0,,
|
||||
-2279.13 -2824.88 264.125,462,crouch,10.0623 138.997 0,,
|
||||
-2448.21 -1787.75 268.125,124,crouch,7.64526 -27.7924 0,,
|
||||
-2122.48 -1811.1 268.125,124 466,crouch,5.05249 -118.441 0,,
|
||||
-2125.04 -1935.93 268.125,467 465 124,stand,24.9103 164.727 0,,
|
||||
-2093.9 -2047.01 268.125,468 470 466,stand,25.7727 -142.094 0,,
|
||||
-2264.87 -2103.4 268.125,469 472 467 124,stand,23.7018 -91.5021 0,,
|
||||
-2233.22 -2282.21 268.125,470 471 468,stand,20.5927 -22.7826 0,,
|
||||
-2086.23 -2238.26 268.125,469 467 473 474,stand,40.4504 -54.209 0,,
|
||||
-2146.67 -2396.1 268.125,469,crouch,10.0623 119.15 0,,
|
||||
-2372.81 -2152.07 274.125,468,crouch,4.01978 16.933 0,,
|
||||
-2026.47 -2370.55 268.125,470,crouch,5.91492 103.615 0,,
|
||||
-2001.84 -2252.52 268.125,470 475,stand,67.0428 17.2791 0,,
|
||||
-1928.08 -2236.27 268.125,474 476 481,stand,46.4929 113.97 0,,
|
||||
-1955.55 -2076.06 268.125,475 477 482,stand,38.7256 28.5071 0,,
|
||||
-2007.54 -1862.49 268.125,476 478 479 181,stand,29.0521 25.0519 0,,
|
||||
-2079.44 -1709.37 268.125,477 479,crouch,6.43677 -40.9045 0,,
|
||||
-2024.77 -1757.18 268.125,478 477 480,stand,21.9769 -42.2888 0,,
|
||||
-1850.41 -1716.84 248.125,479 181 118 486 487 488,stand,31.991 -128.79 0,,
|
||||
-1924.18 -2298.38 268.125,182 475 148,stand,34.754 137.623 0,,
|
||||
-1794.51 -2029.27 248.125,476 181 182 484 483 146,stand,24.74 71.4911 0,,
|
||||
-1574.75 -2081.01 256.125,484 146 482 182,stand,14.5502 128.999 0,,
|
||||
-1646.14 -1885.38 273.052,482 483,stand,20.5927 177.69 0,,
|
||||
-1309.44 -2397.16 264.125,183 110 147,stand,26.2891 -164.017 0,,
|
||||
-1988.15 -1509.81 260.125,121 119 480 118,stand,18.5217 -173.861 0,,
|
||||
-1610.77 -1759.21 256.162,480 488,crouch,4.36035 146.758 0,,
|
||||
-1722.47 -1539.04 266.536,480 487 118,stand,30.9528 -9.84619 0,,
|
||||
-2208.31 -1680.27 268.125,121,crouch,11.2708 72.1722 0,,
|
||||
-2079.23 -1670.21 268.125,121,crouch,6.0907 111.882 0,,
|
||||
-2409.21 -1740.35 268.125,122,crouch,6.60706 58.703 0,,
|
||||
-2487.75 -1370.86 268.125,123,crouch,4.70642 -34.0106 0,,
|
||||
-2337.36 -1338.89 304.125,123,crouch,8.16162 -103.939 0,,
|
||||
-1751.13 -519.125 306.125,23,crouch,7.64526 -141.743 0,,
|
||||
-2211.08 -655.519 272.125,498 496 22,stand,21.4551 -3.09509 0,,
|
||||
-2060.63 -656.438 272.125,495 497 499,stand,21.109 1.91467 0,,
|
||||
-2059.01 -540.298 272.125,496 498 499,stand,30.4364 -119.814 0,,
|
||||
-2220.89 -540.515 272.125,22 495 497,stand,31.1285 -162.117 0,,
|
||||
-1968.51 -605.798 272.125,496 497 23,stand,15.929 4.34265 0,,
|
||||
-2575.13 -720.766 264.125,19,crouch,3.84399 -137.414 0,,
|
||||
-1806.76 -1106.86 255.037,26 25 118 27,stand,16.6211 -129.125 0,,
|
||||
-1199.44 -1129.87 265.407,29 505,crouch,7.46948 60.4608 0,,
|
||||
-920.377 -1549.72 252.109,504 506 510 513,stand,23.526 132.289 0,,
|
||||
-1034.33 -1560.07 256.125,503 505 513 116,stand,23.1854 114.157 0,,
|
||||
-1082.07 -1404.67 268.166,506 504 502 29,stand,20.5927 36.8018 0,,
|
||||
-957.711 -1363.61 254.048,508 507 505 503 29,stand,21.9769 18.504 0,,
|
||||
-855.156 -1221.67 270.125,506 509,crouch,7.99133 -113.244 0,,
|
||||
-768.068 -1447.17 270.125,506,crouch,7.64526 149.027 0,,
|
||||
-894.842 -1189.17 308.125,198 507,stand,28.1897 103.275 0,,
|
||||
-739.206 -1648.14 264.125,503 511 519,stand,19.5544 -51.4349 0,,
|
||||
-746.125 -1800 264.125,510 143 512 515 518,stand,20.4224 -106.334 0,,
|
||||
-881.216 -1796.32 252.125,143 513 511 515,stand,20.7684 114.497 0,,
|
||||
-1012.55 -1684.2 268.407,512 504 503 517,stand,25.2563 106.378 0,,
|
||||
-861.295 -1670.8 311.304,515,prone,4.19006 117.947 0,,
|
||||
-799.242 -1728.62 299.409,514 511 512,stand,58.924 -105.999 0,,
|
||||
-1049.76 -1867.44 274.627,143 517 144,stand,14.3744 98.2483 0,,
|
||||
-1074.2 -1738.9 281.012,516 513,stand,25.4266 88.5803 0,,
|
||||
-623.729 -1789.92 264.125,511 152 519 151,stand,34.5782 -8.28613 0,,
|
||||
-628.835 -1645.55 264.125,518 510 520 524,stand,29.9146 145.204 0,,
|
||||
-198.339 -1476.92 264.125,519 521 524 152 151,stand,18.0054 16.7407 0,,
|
||||
-116.735 -1440.49 291.088,520 522,stand,36.9952 38.3234 0,,
|
||||
-18.5961 -1359.05 285.857,521 199 136 523,stand,34.408 35.7306 0,,
|
||||
151.635 -1209.36 274.787,133 199 522 136,stand,14.8962 146.231 0,,
|
||||
10.8464 -1672.27 264.125,520 136 151 519 542 152,stand,20.9387 -117.952 0,,
|
||||
-449.447 -2025.2 264.125,152 526 527 537,stand,31.2988 -126.065 0,,
|
||||
-408.64 -2162.79 264.125,525 527 530,stand,25.943 -86.5198 0,,
|
||||
-519.626 -2177.2 264.125,526 528 529 525 531,stand,23.8721 -149.197 0,,
|
||||
-635.989 -2159.03 264.125,527 529 532 144,stand,25.7727 150.543 0,,
|
||||
-638.57 -2043.09 264.125,528 152 527,stand,22.4933 123.781 0,,
|
||||
-369.87 -2311.9 256.351,526 94 538 531,stand,21.9769 176.432 0,,
|
||||
-516.669 -2314.97 256.872,527 532 530 94,stand,23.1854 170.906 0,,
|
||||
-643.125 -2308.3 259.546,528 531 94 144,stand,26.4648 70.2496 0,,
|
||||
48.875 -2576.88 264.125,150,crouch,6.43677 143.287 0,,
|
||||
-73.2491 -2268.8 264.125,150 535 537 538,stand,30.0903 85.1031 0,,
|
||||
48.8749 -2263.47 263.574,534,crouch,4.70642 -176.311 0,,
|
||||
-241.478 -2198.38 290.173,537 538,stand,25.7727 18.0975 0,,
|
||||
-78.0206 -2184.36 291.518,534 536 525 539 543,stand,39.2419 -60.2844 0,,
|
||||
-228.814 -2310.21 257.037,536 530 534 94 150,stand,26.1188 -162.501 0,,
|
||||
231.827 -2179.06 288.338,537 540 542 543,stand,58.924 63.8281 0,,
|
||||
399.246 -1890.68 298.874,539 541 542,stand,17.1375 63.8281 0,,
|
||||
476.682 -1780.04 292.733,540 135 136 544,stand,42.005 38.8013 0,,
|
||||
244.619 -1936.69 290.89,540 539 543 524,stand,17.3132 14.4501 0,,
|
||||
101.096 -2060.47 288.928,542 537 539 151,stand,14.8962 -149.581 0,,
|
||||
529.471 -1868.83 331.41,541 545,stand,72.2174 -62.5476 0,,
|
||||
610.579 -1898.26 346.226,544,prone,5.91492 -23.3539 0,,
|
||||
730.715 -1988.86 292.324,135 547,stand,21.109 -61.6852 0,,
|
||||
874.348 -2114.22 288.125,546 79 142,stand,15.4126 -104.164 0,,
|
||||
912.022 -1802.17 290.104,135,crouch,4.53613 -95.177 0,,
|
||||
1143.19 -1968.11 290.793,142 550,stand,23.1854 -101.049 0,,
|
||||
1225.71 -2023.51 324.794,549 551,stand,56.6772 -30.9509 0,,
|
||||
1286.17 -2052.49 341.441,550 552,crouch,9.19434 57.1045 0,,
|
||||
1359.75 -2125.5 288.125,551 302,stand,18.3459 -114.694 0,,
|
||||
-918.875 -2935.13 253.175,91,crouch,4.36035 -45.3046 0,,
|
||||
-883.107 -2591.41 256.125,145,crouch,4.36035 53.1055 0,,
|
||||
-1326.88 -2489.13 266.125,108,crouch,6.26099 -25.282 0,,
|
||||
-1326.88 -2578.88 266.125,108,crouch,5.05249 21.6846 0,,
|
||||
-1310.88 -2625.13 266.125,105,crouch,6.95313 -54.978 0,,
|
||||
-1119.87 -2957.92 266.125,559 562 563 565 106,stand,42.6917 176.218 0,,
|
||||
-1157.69 -3036.14 266.125,558 560 565,stand,27.3273 102.489 0,,
|
||||
-1296.44 -3026.43 266.125,561 559 564,stand,28.3655 92.4805 0,,
|
||||
-1288.2 -2861.32 266.125,105 562 560 570,stand,20.2466 -2.66113 0,,
|
||||
-1160.02 -2868.99 266.125,561 558 563,stand,20.2466 -2.66113 0,,
|
||||
-1081.02 -2798.65 266.125,562 558 569 570,stand,25.7727 92.3047 0,,
|
||||
-1326.88 -3066.88 266.125,560,crouch,7.98584 58.7909 0,,
|
||||
-1083.13 -3052.88 266.125,559 558,crouch,9.88647 134.245 0,,
|
||||
-1005.43 -3043.95 266.125,106,crouch,6.60706 91.7774 0,,
|
||||
-998.015 -2617.13 304.625,107,crouch,11.441 -90.9033 0,,
|
||||
-957.125 -2646.86 266.125,107,crouch,3.84399 -102.302 0,,
|
||||
-1069.13 -2625.13 293.625,563 570,crouch,10.0623 -124.049 0,,
|
||||
-1121.22 -2706.23 266.125,569 563 105 561,stand,33.3698 -109.382 0,,
|
||||
-1621.92 -2656.24 256.793,85 572 577,stand,11.9574 87.7948 0,,
|
||||
-1656.91 -2442.96 263.814,571 148 147 182,stand,16.7969 170.67 0,,
|
||||
-2241.22 -2594.03 264.125,574 149 462,stand,20.5927 0.250244 0,,
|
||||
-1952.75 -2582.08 295.625,104 97 148 573,stand,26.1188 -8.38501 0,,
|
||||
-1635.62 -2972.16 263.469,85 86 576,stand,17.6593 109.713 0,,
|
||||
-1848.79 -2969.73 272.125,575 83 84 394,stand,20.9387 -2.34253 0,,
|
||||
-1453.96 -2717.71 266.125,571 88 147,stand,28.0194 -81.7682 0,,
|
||||
-1325.73 -2084.61 270.125,112 579 113 580,stand,24.7345 107.46 0,,
|
||||
-1356.26 -1869.1 270.125,578 113,stand,19.7302 177.91 0,,
|
||||
-1383.76 -2143.17 270.125,578,crouch,2.28943 75.6989 0,,
|
||||
-1623.04 -1517.51 270.125,114,crouch,7.2992 -37.9108 0,,
|
||||
-1382.58 -1498.71 270.125,115 583 584 114,stand,26.9812 -79.0051 0,,
|
||||
-1387.26 -1746.23 270.125,582,crouch,5.74463 92.4475 0,,
|
||||
-1299.25 -1699.6 270.125,582,crouch,7.81555 118.172 0,,
|
||||
-1212.91 -1422.25 270.125,115,crouch,7.64526 -98.3466 0,,
|
||||
-1128.11 -1682.81 270.125,116,crouch,4.8822 128.532 0,,
|
||||
-1557.02 -1751.17 270.125,114,crouch,5.91492 48.244 0,,
|
||||
-1399.01 -1351.04 270.125,117 590,crouch,2.80579 172.73 0,,
|
||||
-1625.08 -1469.43 270.125,590,crouch,9.19434 49.6228 0,,
|
||||
-1524.84 -1433.65 270.125,117 114 589 588,stand,30.0903 -43.4369 0,,
|
||||
-3356.36 -2150.02 256.125,594 1 592,stand,35.2222 128.809 0,,
|
||||
-3485.61 -2161.38 256.125,591 430 433,stand,35.744 109.644 0,,
|
||||
-3493.74 -2044.68 256.125,433 3,stand,36.2604 25.2081 0,,
|
||||
-3352.9 -2030.59 256.125,3 591 424 425,stand,29.696 -131.396 0,,
|
||||
864.773 -1236.38 288.125,596 179 598,stand,33.1512 -44.7253 0,,
|
||||
960.363 -1311.67 288.089,597 270 595,stand,29.696 -0.351563 0,,
|
||||
1049.83 -1196.54 287.331,598 271 596,stand,26.7627 130.182 0,,
|
||||
948.225 -1112.24 287.361,597 595 600 260,stand,15.8862 62.6715 0,,
|
||||
926.487 -939.63 349.125,600,crouch,11.9147 -85.8967 0,,
|
||||
856.608 -1050.71 318.232,599 598,stand,64.4019 -45.1484 0,,
|
||||
1384.19 -1236.87 296.125,602,crouch,5.18005 156.346 0,,
|
||||
1305.39 -1197.92 296.125,601 265 261,stand,30.564 149.095 0,,
|
||||
-1081.28 -3436.66 275.062,89 49 54 87,stand,23.6316 77.973 0,,
|
||||
-917.076 -3290.04 269.153,90 49 89,stand,18.5065 89.7064 0,,
|
||||
|
@@ -0,0 +1,284 @@
|
||||
283
|
||||
1407.54 433.186 8.125,1 191,stand,,,
|
||||
1375.87 270.503 -6.17176,0 2 4 3,stand,,,
|
||||
1054.1 243.797 -7.875,1 3 192 193 4,stand,,,
|
||||
1065.82 12.6915 -7.875,2 4 61 1,stand,,,
|
||||
1413.09 98.9247 -7.875,1 3 5 2,stand,,,
|
||||
1590.26 99.9675 0.124998,4 6 106 190,stand,,,
|
||||
1612.55 -442.844 0.124998,5 9 11 107,stand,,,
|
||||
1937.41 -427.007 59.125,107 108,stand,,,
|
||||
1942.57 160.645 108.125,108 179 188,stand,,,
|
||||
1209.76 -413.007 0.124999,6 10 187 270,stand,,,
|
||||
1227.06 -649.182 0.124999,9 11 12,stand,,,
|
||||
1536.62 -734.667 0.124999,10 6,stand,,,
|
||||
1270.43 -961.813 0.124999,10 13 62 15 186,stand,,,
|
||||
1368.97 -1261.42 -7.875,12 14 94,stand,,,
|
||||
1362.98 -1531.56 0.124998,13 15 16 139,stand,,,
|
||||
972.568 -1453.18 -7.875,14 70 17 12 63,stand,,,
|
||||
1192.49 -1708.39 0.125001,14 17,stand,,,
|
||||
1038.19 -1698.58 51.625,16 18 15 140,stand,,,
|
||||
1015.29 -1980.49 32.125,17 19 21 111 112,stand,,,
|
||||
538.206 -1937.44 0.124999,18 20 110,stand,,,
|
||||
389.791 -1887.89 0.124999,19 24 70 110 178,crouch,,,
|
||||
1034.29 -2162.44 32.125,18 22,stand,,,
|
||||
757.042 -2145.4 176.125,21 224,stand,,,
|
||||
927.191 -1936.59 176.125,113 114 115 224 225 226 227 228 229,stand,,,
|
||||
-121.854 -1878.52 0.125,20 25,stand,,,
|
||||
-315.289 -1898.62 0.125,24 26 116,stand,,,
|
||||
-901.314 -1886.74 0.125,25 27 71 73 221 222 223,stand,,,
|
||||
-909.753 -2173.48 80.125,26 28 180 220,stand,,,
|
||||
-602.012 -2170.72 80.125,27 29 123 219,stand,,,
|
||||
-598.056 -1640.72 136.125,28 30 166,stand,,,
|
||||
-596.738 -1231.14 136.125,29 31 217,stand,,,
|
||||
-757.628 -1233.31 136.125,30 35 117 152 218,stand,,,
|
||||
-762.271 -666.281 -3.875,33 34 35 181 239,stand,,,
|
||||
-1092.96 -650.045 -15.3067,32 93 103 101 173 34,stand,,,
|
||||
-747.231 -541.161 -3.875,32 183 33 238,stand,,,
|
||||
-767.259 -865.319 -3.875,31 32 151 239,stand,,,
|
||||
-384.197 -741.201 -3.875,37 67 182,stand,,,
|
||||
-393.544 -547.858 -3.875,36 147 148 183,stand,,,
|
||||
-594.037 -941.792 136.125,39 51 165 217,stand,,,
|
||||
-597.905 -670.449 136.125,38 40 43 50 208,stand,,,
|
||||
-868.41 -674.95 136.125,39 41 122 160 209,stand,,,
|
||||
-870.365 -392.675 136.125,40 158 210,stand,,,
|
||||
-602.58 -244.974 136.125,43 44 49 210,stand,,,
|
||||
-592.24 -438.678 136.125,42 39,crouch,,,
|
||||
-593.593 8.94884 136.125,42 45,stand,,,
|
||||
-590.93 270.374 137.376,44 46 48 125 156 157,stand,,,
|
||||
-958.37 312.276 136.125,45 47,stand,,,
|
||||
-967.818 851.358 80.125,46 56 105,stand,,,
|
||||
-378.585 242.759 173.85,45 49 211 213,stand,,,
|
||||
-389.616 -297.047 168.898,48 42 164 185 215,stand,,,
|
||||
-354.17 -680.921 136.125,51 39 124 162 201 204,stand,,,
|
||||
-364.836 -963.227 136.125,50 38 118 161 206 207,stand,,,
|
||||
7.86196 -399.957 8.125,67 68 53 153 154 203,stand,,,
|
||||
-104.568 -83.6461 8.125,58 68 52 194,stand,,,
|
||||
-69.3895 488.351 8.125,55 57 58 136,stand,,,
|
||||
-0.946591 827.391 80.125,54 56 135 172,stand,,,
|
||||
-555.358 823.954 80.125,55 47,stand,,,
|
||||
-112.603 663.492 8.125,54,stand,,,
|
||||
-81.0311 236.895 0.125,53 54 59,stand,,,
|
||||
359.911 225.659 0.124999,58 60 68,stand,,,
|
||||
748.772 253.143 1.64666,59 61,stand,,,
|
||||
765.607 -95.3974 4.125,60 3 68 138 278,stand,,,
|
||||
730.776 -1054.45 -7.875,12 63 94 70 274 273,stand,,,
|
||||
403.072 -1079.78 -7.875,62 64 69 70 15,stand,,,
|
||||
254.428 -1057.77 -7.49806,63 65 234,stand,,,
|
||||
50.6656 -1053.44 9.40091,64 230 231,stand,,,
|
||||
205.302 -749.96 0.124998,67 69 233 234,stand,,,
|
||||
-3.86622 -749.08 0.124998,66 36 52 144 145 237,stand,,,
|
||||
234.434 -84.6453 8.125,52 53 59 61 155 175,stand,,,
|
||||
406.195 -731.508 0.124999,66 63 143 233 236,stand,,,
|
||||
388.732 -1526.45 -7.875,63 20 15 177 62,stand,,,
|
||||
-1225.91 -1889.77 0.125,26 72 167 264 265,stand,,,
|
||||
-1225.33 -1656.73 0.125,71 73 74 169 263,stand,,,
|
||||
-926.962 -1680.23 0.125,72 98 26,stand,,,
|
||||
-1416.22 -1648 -7.875,72 75 168 266,stand,,,
|
||||
-1428.03 -1873.55 -7.875,74 76 267 268,stand,,,
|
||||
-1755.48 -1856.8 -11.875,75 77 78,stand,,,
|
||||
-1755.64 -2130.28 -5.68121,76 269,stand,,,
|
||||
-1756.35 -1535.19 -11.875,76 79 80,stand,,,
|
||||
-1810.44 -1242.42 -11.875,78 81 97 99,stand,,,
|
||||
-2026.72 -1517.2 -55.875,78 81 261,stand,,,
|
||||
-2014.04 -1263.29 -7.875,80 82 96 79,stand,,,
|
||||
-2205.05 -1260.63 40.125,81 83 260,stand,,,
|
||||
-2201 -827.769 128.125,82 84 129 259,stand,,,
|
||||
-2365.09 -580.262 128.125,83 85 126,stand,,,
|
||||
-2254.05 -289.904 128.125,84 86 127 128 170,stand,,,
|
||||
-2267.82 211.781 16.125,85 87 130,stand,,,
|
||||
-1973.04 209.616 0.124999,86 88 131 258,stand,,,
|
||||
-1664.87 233.039 -7.875,87 89 133 249,stand,,,
|
||||
-1467.35 242.443 -7.875,88 104,stand,,,
|
||||
-1862.11 -26.4765 -7.875,91 243 246 254 255,stand,,,
|
||||
-1877.45 -298.026 -7.875,90 95 252,stand,,,
|
||||
-1200.21 -19.3744 -14.7732,241 242 244 245 279 282,stand,,,
|
||||
-1260.56 -333.213 -13.0063,102 33 240 281 280,stand,,,
|
||||
1138.23 -1188.92 -7.875,13 62,stand,,,
|
||||
-1856.5 -631.747 -5.10964,91 96 101,stand,,,
|
||||
-2019.54 -955.326 -7.85078,95 81 99,stand,,,
|
||||
-1261.1 -1193.7 -11.875,79 98 103,stand,,,
|
||||
-950.652 -1239.06 0.125001,97 73 262,stand,,,
|
||||
-1784.62 -947.437 -8.69118,79 96 100,stand,,,
|
||||
-1478.68 -903.924 -7.40464,99 101 103,stand,,,
|
||||
-1466.92 -606.276 -7.97525,100 95 33 102,stand,,,
|
||||
-1500.7 -328.772 -7.875,93 101 253,stand,,,
|
||||
-1181.66 -925.803 -11.875,33 97 100,stand,,,
|
||||
-1445.26 474.2 -7.875,89 105 132,stand,,,
|
||||
-1398.09 793.96 -7.875,104 47 134,stand,,,
|
||||
1538.13 -46.0446 0.124999,5,stand,,,
|
||||
1864.63 -427.537 0.125001,6 7,stand,,,
|
||||
1932.19 -246.8 108.125,7 8 189,stand,,,
|
||||
-664.875 -1095.85 136.125,217,crouch,-0.411987 59.848 0,,
|
||||
369.974 -1927.23 0.124999,20 19,stand,,,
|
||||
800.413 -1812.8 32.125,18,crouch,1.73035 -50.0153 0,,
|
||||
793.804 -2057.52 32.125,18,stand,,,
|
||||
727.407 -1851.51 176.125,23,crouch,15.6445 178.539 0,,
|
||||
914.329 -2102.07 210.125,23,crouch,59.3591 -58.7109 0,,
|
||||
1113.38 -1799.13 176.125,23,crouch,14.7382 119.619 0,,
|
||||
-317.935 -2016.87 0.125,25,crouch,3.46069 89.2694 0,,
|
||||
-760.55 -1344.88 136.125,31,crouch,2.22473 87.6544 0,,
|
||||
-480.875 -1032.87 136.125,51,crouch,3.2135 59.0515 0,,
|
||||
-192.919 -408.281 184.019,185,climb,5.18555 176.968 0,,
|
||||
-213.612 400.875 184.125,211,crouch,16.6333 -43.6761 0,,
|
||||
-912.875 -271.967 136.125,210,crouch,6.91589 -169.64 0,,
|
||||
-967.875 -556.664 136.125,40,crouch,7.57507 -179.44 0,,
|
||||
-582.27 -2050.58 113.457,28,crouch,0.247192 88.2697 0,,
|
||||
-472.875 -479.132 176.125,50,crouch,10.5359 -43.5443 0,,
|
||||
-761.552 337.591 136.125,45,claymore,13.7494 -162.51 0,,
|
||||
-2007.13 -562.096 128.125,84,crouch,11.2775 -4.53001 0,,
|
||||
-2007.13 -332.364 128.125,85,crouch,11.8542 -14.4891 0,,
|
||||
-2361.84 -231.125 128.125,85 171,claymore,10.2887 -34.4128 0,,
|
||||
-2300.22 -912.875 128.125,83,claymore,8.81104 37.2949 0,,
|
||||
-2167.13 278.204 16.125,86,claymore,5.84473 -132.307 0,,
|
||||
-1928.4 304.867 -7.875,87,crouch,6.00952 -135.103 0,,
|
||||
-1536.87 524.272 -7.875,104,claymore,5.67993 -50.8813 0,,
|
||||
-1802.15 304.875 -7.875,88,claymore,3.94958 -37.3791 0,,
|
||||
-1203.05 708.547 -7.875,105,stand,,,
|
||||
-242.875 735.125 80.125,55,crouch,3.86719 30.0495 0,,
|
||||
48.8696 481.125 8.125,54,claymore,-2.30713 145.829 0,,
|
||||
548.509 -679.952 0.124999,273,crouch,0.741577 -6.37267 0,,
|
||||
671.125 -189.912 0.263316,61,claymore,16.6333 48.0481 0,,
|
||||
1525.85 -1728.87 0.125001,14,crouch,4.69116 138.993 0,,
|
||||
793.936 -1721.01 51.625,17,crouch,3.2135 166.657 0,,
|
||||
151.125 -619.202 0.125002,233,claymore,14.5734 -59.1785 0,,
|
||||
151.125 -864.227 0.125002,234,claymore,12.9254 60.6659 0,,
|
||||
347.248 -819.56 0.125,69,crouch,4.60876 170.381 0,,
|
||||
48.8746 -870.98 0.125001,67 146,claymore,13.0902 108.715 0,,
|
||||
-248.872 -659.889 0.125001,67,claymore,7.98706 -28.5815 0,,
|
||||
-93.6775 -543.125 0.125001,144,claymore,19.7589 -55.141 0,,
|
||||
-307.54 -500.633 -3.875,37,crouch,9.14063 -143.894 0,,
|
||||
-287.126 -639.974 -3.875,37,claymore,14.6558 -106.107 0,,
|
||||
-952.784 -491.388 -3.9703,238,crouch,6.00952 -16.5295 0,,
|
||||
-946.037 -776.875 -3.87483,239,crouch,0.0823975 25.8722 0,,
|
||||
-828.875 -904.875 -3.875,35,claymore,9.47021 60.2374 0,,
|
||||
-808.875 -1265.57 136.125,31,claymore,19.1821 41.6266 0,,
|
||||
112.01 -440.875 8.125,52,claymore,15.1501 149.727 0,,
|
||||
176.875 -424.497 8.125,52,crouch,6.99829 147.425 0,,
|
||||
368.875 -173.189 8.125,68,claymore,19.5941 114.57 0,,
|
||||
-672.875 125.859 136.125,45,claymore,16.1389 65.423 0,,
|
||||
-603.089 337.475 136.125,45,crouch,5.76233 -90.4291 0,,
|
||||
-711.125 -412.489 136.125,41,crouch,5.67993 169.128 0,,
|
||||
-754.111 -250.588 136.125,210,claymore,7.98706 -8.78966 0,,
|
||||
-745.094 -652.009 136.125,40,claymore,9.8822 -17.3535 0,,
|
||||
-275.431 -937.92 136.125,51,claymore,12.7606 163.69 0,,
|
||||
-337.784 -587.877 136.125,50 163,claymore,13.5846 -125.421 0,,
|
||||
-248.458 -526.005 136.125,162,claymore,15.4797 -14.8486 0,,
|
||||
-419.971 -173.357 174.248,49,grenade,-30.0531 10.0629 0,,
|
||||
-519.125 -1096.88 136.125,38,claymore,6.99829 113.686 0,,
|
||||
-686.633 -1892.15 168.125,29,grenade,-59.7711 3.42714 0,,
|
||||
-1132.3 -1883.71 0.125,71,crouch,-0.164795 1.3672 0,,
|
||||
-1488.88 -1730.57 28.125,74,claymore,15.7269 -56.723 0,,
|
||||
-1031.13 -1603.99 0.125001,72,claymore,15.8093 -152.804 0,,
|
||||
-2207.13 -16.9391 97.1374,85,claymore,24.5325 104.924 0,,
|
||||
-2496.88 -231.125 128.125,128,crouch,0.823975 -42.8418 0,,
|
||||
-176.644 738.069 80.125,55,claymore,3.70239 20.2197 0,,
|
||||
-950.757 -683.009 -3.875,33,grenade,-5.92712 -1.67601 0,,
|
||||
174.064 -799.726 0.125002,234,grenade,-5.26794 174.891 0,,
|
||||
298.942 39.3569 0.124999,68 176,grenade,-31.1188 173.078 0,,
|
||||
314.022 89.0491 0.124999,175,grenade,-31.778 -150.53 0,,
|
||||
200.58 -1748.52 32.125,70,claymore,36.4746 -67.984 0,,
|
||||
312.351 -1813.59 0.125001,20,grenade,-60.9247 -169.811 0,,
|
||||
1586.71 300.381 107.125,8,crouch,1.97754 -162.565 0,,
|
||||
-795.079 -2111.13 80.125,27,claymore,6.91589 -153.657 0,,
|
||||
-685.931 -730.248 -2.58831,32 182 184,stand,,,
|
||||
-520.739 -732.714 4.21268,181 36 183,stand,,,
|
||||
-536.165 -531.841 -3.875,182 37 34,stand,,,
|
||||
-588.262 -712.953 43.3986,181,stand,,,
|
||||
-210.142 -405.799 184.125,119 49,stand,,,
|
||||
1527.26 -859.414 0.125001,12,crouch,1.72485 -141.141 0,,
|
||||
1013.29 -260.458 0.125001,9,crouch,4.14185 149.623 0,,
|
||||
1843.01 87.778 108.125,8,crouch,1.55457 175.182 0,,
|
||||
1779.39 -235.337 108.125,108,crouch,8.63525 -177.567 0,,
|
||||
1678.4 157.743 0.125,5,crouch,2.2467 -172.903 0,,
|
||||
1565.29 439.61 8.125,0,crouch,3.62549 -155.989 0,,
|
||||
970.052 321.095 1.63486,2,crouch,5.69641 -57.2223 0,,
|
||||
981.349 169.633 -7.52379,2,crouch,1.03821 -176.193 0,,
|
||||
-164.496 -168.095 8.125,53 195,stand,6.43677 -88.8354 0,,
|
||||
-166.756 -220.873 8.125,196 194,climb,7.2992 -90.2197 0,,
|
||||
-159.218 -341.905 70.125,195 197 203,stand,59.2755 -88.1433 0,,
|
||||
-159.727 -360.345 70.125,196 198,climb,5.05798 -86.2482 0,,
|
||||
-161.785 -411.283 120.125,197 199,stand,83.2751 -57.4091 0,,
|
||||
-135.463 -440.865 120.125,198 200,climb,4.36584 -89.3518 0,,
|
||||
-134.012 -479.128 136.125,199 201,climb,16.7969 89.5221 0,,
|
||||
-140.895 -565.456 136.125,200 50 202 205,stand,32.6776 121.47 0,,
|
||||
-156.234 -481.458 136.125,201,crouch,14.7205 50.5042 0,,
|
||||
-104.823 -336.439 8.125,196 52,climb,4.36035 -179.138 0,,
|
||||
-468.605 -764.489 136.125,50,crouch,2.11914 45.8459 0,,
|
||||
-129.127 -718.441 150.482,201,crouch,3.50342 146.673 0,,
|
||||
-231.035 -813.153 136.125,51,crouch,1.4325 -141.669 0,,
|
||||
-444.557 -833.015 136.125,51,crouch,5.57434 -40.1495 0,,
|
||||
-511.125 -729.262 136.125,39,crouch,20.2521 164.443 0,,
|
||||
-970.153 -763.522 136.125,40,crouch,4.19006 43.2367 0,,
|
||||
-815.098 -286.002 136.125,41 42 121 159 216,stand,33.3752 21.4673 0,,
|
||||
-317.497 372.95 176.125,48 120 212,stand,58.7537 21.6321 0,,
|
||||
-461.57 393.621 176.125,211,crouch,5.05798 -47.0929 0,,
|
||||
-248.108 133.477 176.125,48,crouch,13.0011 -5.13611 0,,
|
||||
-248.444 -154.549 176.125,215,crouch,14.2096 14.7162 0,,
|
||||
-286.541 -257.452 176.125,49 214,stand,58.5834 42.3358 0,,
|
||||
-888.481 -137.018 136.125,210,crouch,4.36584 -59.5294 0,,
|
||||
-595.098 -1056.51 136.125,38 109 30,stand,84.1376 -100.624 0,,
|
||||
-807.416 -1340.04 136.125,31,crouch,6.95862 76.3495 0,,
|
||||
-514.799 -2255.15 80.125,28,crouch,3.50342 142.828 0,,
|
||||
-1015.76 -2255.33 80.125,27,crouch,5.57434 42.6764 0,,
|
||||
-706.564 -1794.2 0.125001,26,crouch,6.26099 -141.207 0,,
|
||||
-705.028 -2070.78 0.125001,26,crouch,1.427 131.259 0,,
|
||||
-708.032 -1960.4 0.125001,26,claymore,35.7922 91.7139 0,,
|
||||
777.149 -2050 176.125,22 23,stand,29.2279 22.1265 0,,
|
||||
831.787 -1808.71 176.125,23,crouch,12.6495 94.8175 0,,
|
||||
972.812 -1811.87 176.125,23,crouch,14.726 93.0872 0,,
|
||||
1042.19 -1815.64 176.125,23,crouch,13.858 98.432 0,,
|
||||
885.817 -1806.28 176.125,23,crouch,12.4792 94.2902 0,,
|
||||
1128.88 -2081.76 176.125,23,crouch,5.57434 156.621 0,,
|
||||
15.1253 -1083.01 32.125,65,crouch,6.60706 18.4845 0,,
|
||||
15.1253 -1000.06 0.125001,65,crouch,4.71191 -12.4255 0,,
|
||||
157.768 -556.377 0.125,233,crouch,6.43677 -71.6473 0,,
|
||||
221.668 -601.413 0.125,69 232 141 66,stand,15.0665 -40.0507 0,,
|
||||
227.985 -883.159 0.125,66 64 235 142 174,stand,19.5599 -96.3336 0,,
|
||||
171.043 -914.377 0.125,234,crouch,6.0907 63.891 0,,
|
||||
490.349 -733.749 0.125,69,crouch,1.427 -179.736 0,,
|
||||
-243.584 -901.867 30.125,67,crouch,5.22827 49.5593 0,,
|
||||
-887.324 -519.435 -3.875,34 149,stand,66.6968 170.233 0,,
|
||||
-862.728 -749.426 -3.875,32 150 35,stand,80.6824 -150.914 0,,
|
||||
-963.13 -305.712 -7.875,93,crouch,1.77856 -138.142 0,,
|
||||
-1058.46 103.8 -7.875,92,crouch,3.15735 -125.706 0,,
|
||||
-1364.58 137.543 -7.875,92,crouch,2.98706 -71.488 0,,
|
||||
-1760.71 54.4279 -7.875,90 246 249,stand,19.5599 -1.21399 0,,
|
||||
-1586.23 50.7499 -7.875,245 249 92 256 279,stand,29.0576 -2.42249 0,,
|
||||
-1600.77 -103.899 -7.875,244 246 248 247 92 257,stand,25.7782 -109.473 0,,
|
||||
-1738.34 -106.854 -7.875,245 243 90 247 248,stand,46.8445 104.106 0,,
|
||||
-1753.09 -177.869 -7.875,246 245 250,climb,5.57434 -89.2694 0,,
|
||||
-1588.02 -179.875 -7.875,245 246 251,climb,5.57434 -88.5828 0,,
|
||||
-1668.88 46.2505 -7.875,244 243 88,stand,28.7115 94.2682 0,,
|
||||
-1752.83 -231.125 -7.875,247 252,climb,11.9629 89.7693 0,,
|
||||
-1583.78 -231.125 -7.875,248 253,climb,13.6932 91.8347 0,,
|
||||
-1751.94 -316.75 -7.875,253 91 250,stand,20.2521 85.2704 0,,
|
||||
-1581.11 -332.339 -7.875,102 252 251,stand,20.0818 5.67444 0,,
|
||||
-2002.43 -183.856 -7.875,90,crouch,2.81128 29.8444 0,,
|
||||
-2007.07 92.9264 -7.875,90,crouch,1.94885 -24.2029 0,,
|
||||
-1441.55 67.8372 -7.875,244,crouch,2.29492 -54.9371 0,,
|
||||
-1418.22 -186.689 -7.875,245,crouch,2.4707 140.861 0,,
|
||||
-2127.52 290.021 36.125,87,crouch,9.19983 -19.8798 0,,
|
||||
-2149.55 -743.116 128.125,83,crouch,13.8635 -0.725098 0,,
|
||||
-2240.88 -1304.88 40.125,82,crouch,1.60278 41.9348 0,,
|
||||
-2079.07 -1544.66 -55.875,80,crouch,1.25671 44.0057 0,,
|
||||
-901.662 -1160.2 0.125,98,crouch,2.81128 -125.211 0,,
|
||||
-1035.26 -1598.23 0.125,72,crouch,9.37561 -105.183 0,,
|
||||
-1261.11 -1984.88 19.125,71,crouch,5.40405 62.2925 0,,
|
||||
-1296.88 -1794.94 0.124999,71,crouch,1.4325 -18.6877 0,,
|
||||
-1336.91 -1567.13 -7.875,74,crouch,2.4707 -102.772 0,,
|
||||
-1379.16 -1984.88 -7.875,75,crouch,2.64099 102.343 0,,
|
||||
-1463.22 -1984.78 -7.875,75,crouch,4.19556 86.4569 0,,
|
||||
-1586.08 -2205.78 9.58091,77,crouch,1.4325 118.229 0,,
|
||||
959.532 -535.293 0.125,9,crouch,0.916138 23.4283 0,,
|
||||
828.995 -630.776 0.0961747,272 274 276 278,stand,31.5967 177.929 0,,
|
||||
673.365 -623.13 0.114539,273 271 275 278,stand,28.3173 -128.029 0,,
|
||||
658.349 -755.154 0.0404898,274 272 62 137,stand,23.6536 -64.4843 0,,
|
||||
841.882 -747.891 0.011383,273 271 62 277,stand,29.5258 -143.74 0,,
|
||||
543.125 -608.521 0.125,272,crouch,4.31763 -15.639 0,,
|
||||
888.875 -605.459 0.125,271,crouch,3.4552 -152.726 0,,
|
||||
844.105 -790.404 0.125,274,crouch,3.62549 -120.262 0,,
|
||||
781.236 -459.721 2.47921,271 272 61,stand,24.516 146.843 0,,
|
||||
-1275.14 -74.9703 -15.1364,92 280 244,stand,50.246 -90.2307 0,,
|
||||
-1269.75 -194.501 -13.6997,279 281 93,stand,36.0846 -76.7615 0,,
|
||||
-1111.77 -198.769 -14.668,280 282 93,stand,39.1937 32.1899 0,,
|
||||
-1113.87 -67.4605 -15.1007,281 92,stand,58.3594 103.326 0,,
|
||||
|
@@ -0,0 +1,559 @@
|
||||
558
|
||||
932.372 -2869.11 -159.875,1 228 427,stand,,,
|
||||
1063.41 -2739.13 -159.875,2 6 0 228,stand,,,
|
||||
1156.27 -2728.45 -159.875,1 3 429,stand,,,
|
||||
1178.86 -2494.01 -159.875,2 4 5,stand,,,
|
||||
1284.99 -2473.65 -159.875,3 7 47 430,stand,,,
|
||||
969.36 -2489.49 -159.875,3 6 10 426,stand,,,
|
||||
945.167 -2691.07 -159.875,5 1,stand,,,
|
||||
1415.48 -2493.97 -202.444,4 8 49 421 424 425,stand,,,
|
||||
1552.47 -2353.12 -194.259,7 9 38 421 425,stand,,,
|
||||
1571.72 -2100.15 -189.04,8 14 38 40 435 436 441,stand,,,
|
||||
977.484 -2398.01 -159.875,5 11 15 16,stand,,,
|
||||
1229.69 -2384.57 -159.875,10 12 229 445,stand,,,
|
||||
1371.98 -2276.73 -177.294,11 13 229,stand,,,
|
||||
1459.01 -2249.69 -191.875,12 14 442,stand,,,
|
||||
1460.07 -2127.28 -184.904,13 9 437 435 436 439,stand,,,
|
||||
816.527 -2379.28 -191.875,10 82 450,stand,,,
|
||||
932.795 -2334.57 -159.875,10 447,stand,,,
|
||||
939.65 -2212.28 -111.875,18 447,stand,,,
|
||||
1005.06 -2212.37 -111.875,17 19,stand,,,
|
||||
998.46 -2349.51 -31.875,18 20 262 448,stand,,,
|
||||
1044.99 -2522.24 -31.875,19 263,stand,,,
|
||||
2112.8 -1847 -191.539,22 36 27 261 441,stand,,,
|
||||
1925.87 -1704.58 -200.221,21 27 36 232,stand,,,
|
||||
1563.57 -1634.06 -195.875,232 433 431 465,stand,,,
|
||||
1578.18 -1403.67 -195.875,25 234 460 462 463 464 465 466,stand,,,
|
||||
1805.2 -1427.88 -199.875,24 26 458 459,stand,,,
|
||||
1824.61 -1235.42 -207.875,25 27 28 29 461,stand,,,
|
||||
2007 -1311.72 -211.556,22 26 35 34 36 21 545,stand,,,
|
||||
1577.66 -913.185 -191.875,26 32 30 461 547,stand,,,
|
||||
1872.46 -832.291 -191.116,26 30 31 233 544 33,stand,,,
|
||||
1729.12 -691.017 -153.942,29 31 32 454 28,stand,,,
|
||||
1897.7 -425.366 -131.699,30 29 33 235 452 451 454 544,stand,,,
|
||||
1530.47 -678.741 -199.567,30 206 210 454 28,stand,,,
|
||||
2495.01 -761.129 -154.112,31 34 451 452 544 29,stand,,,
|
||||
2525.47 -1207.94 -155.815,33 35 27 545 544,stand,,,
|
||||
2604.45 -1435.82 -157.453,34 36 27 260,stand,,,
|
||||
2464.56 -1694.39 -173.048,35 21 22 27 261,stand,,,
|
||||
2594.15 -2167.79 -164.244,40 41 260 261 413 419,stand,,,
|
||||
1730.91 -2365.96 -180.514,9 8 39 40 46 422,stand,,,
|
||||
2035.32 -2441.17 -167.875,38 40 44 45 46 422,stand,,,
|
||||
2296.86 -2178.18 -175.875,39 37 9 38 413 441,stand,,,
|
||||
2745.95 -2201.79 -143.875,37 42 416 417 418,stand,,,
|
||||
2736.97 -2509.06 -143.875,41 43 258 409 410 415 418,stand,,,
|
||||
2739.36 -2660.8 -147.707,42 45 58 60 403 402 414,stand,,,
|
||||
2296.08 -2501.12 -160.349,39 45 410,stand,,,
|
||||
2321.04 -2722.17 -140.19,44 43 39 46 59 414,stand,,,
|
||||
1770.91 -2748.48 -161.181,45 39 50 38 406 57 59 56 423 422,stand,,,
|
||||
1272.36 -2999.93 -162.924,4 48 49 52 268,stand,,,
|
||||
1011.01 -3017.73 -169.774,47 53 268 523,stand,,,
|
||||
1363.71 -2994.78 -161.822,7 47 50 51 52 424 423,stand,,,
|
||||
1609.56 -3014.84 -160.11,46 49 51 423 424,stand,,,
|
||||
1540.17 -3339.25 -135.969,50 49 55,stand,,,
|
||||
1234.56 -3423.6 -136.717,47 49 53 55,stand,,,
|
||||
1015.01 -3462.3 -146.513,52 48 54 55,stand,,,
|
||||
972.486 -3894.8 -149.512,53 55 74 67 76,stand,,,
|
||||
1315.4 -3689.86 -128.892,53 52 54 51 56 65 75,stand,,,
|
||||
1620.35 -3627.22 -122.363,55 57 66 62 46,stand,,,
|
||||
2031.11 -3232.56 -180.847,56 59 58 62 46,stand,,,
|
||||
2358.48 -3201.42 -175.875,57 59 43 60,stand,,,
|
||||
2163.18 -3012.54 -178.914,57 58 45 46,stand,,,
|
||||
2821.11 -3104.09 -174.92,43 58 61 62 402 403,stand,,,
|
||||
2879.56 -3464.4 -154.592,60 62 401 402 407,stand,,,
|
||||
2494.25 -3667.34 -177.221,61 60 57 63 56 66 401 407,stand,,,
|
||||
2255.17 -3954.51 -119.957,62 64 398,stand,,,
|
||||
2062.25 -4148.86 -119.425,63 65 255 396 398,stand,,,
|
||||
1925.23 -3949.95 -143.318,64 66 67 55 75,stand,,,
|
||||
1879.16 -3735.76 -133.752,65 56 62 75,stand,,,
|
||||
1388.69 -3985.64 -127.389,65 68 54 75,stand,,,
|
||||
1377 -4121.51 -119.875,67 69 72 257 256 382,stand,,,
|
||||
1631.08 -4149.46 -119.875,68 70 379,stand,,,
|
||||
1600.36 -4446.1 -119.875,69 71 378,stand,,,
|
||||
1144.62 -4438.13 -119.875,70 72 73 257,stand,,,
|
||||
1140.77 -4212.01 -119.875,71 68 256,stand,,,
|
||||
950.257 -4473.24 -165.051,71 74 84 374 375 377,stand,,,
|
||||
823.594 -4148.97 -126.155,73 54 77 76 373 374,stand,,,
|
||||
1568.82 -3915.72 -126.371,55 67 66 65,stand,,,
|
||||
611.035 -3855.82 -182.792,54 77 74 79 550,stand,,,
|
||||
606.044 -4040.63 -181.341,74 76 550,stand,,,
|
||||
-125.239 -3941.82 -163.875,367 552,stand,,,
|
||||
608.476 -3685.29 -171.875,76 80 524 526,stand,,,
|
||||
537.993 -3429.39 -171.875,79 81 525,stand,,,
|
||||
780.897 -3440.88 -194.419,80 527 530 531,stand,,,
|
||||
720.665 -2470.49 -228.615,15 83 227 450,stand,,,
|
||||
535.94 -2393.56 -276.615,82 107 110 111,stand,,,
|
||||
670.196 -4489.23 -211.093,73 371 374,stand,,,
|
||||
386.131 -4634.8 -210.658,86 108 370 371,stand,,,
|
||||
58.4701 -4781.56 -283.749,85 87 108 140 358 356,stand,,,
|
||||
-303.565 -5102.01 -238.809,86 88 356 358 360 361 362,stand,,,
|
||||
-227.484 -4753.59 -270.649,87 138,stand,,,
|
||||
-502.931 -5138.2 -164.24,90 340 341 345 342 362,stand,,,
|
||||
-599.308 -5009.04 -165.898,89 91 254 340,stand,,,
|
||||
-617.531 -4825.12 -162.848,90 254 333 337 339,stand,,,
|
||||
-1081.94 -4831.41 -135.809,93 252 339 350,stand,,,
|
||||
-1156.83 -4532.95 -123.875,92 94 100 95,stand,,,
|
||||
-1612.56 -4537.45 -119.875,93 95 100 253,stand,,,
|
||||
-1619.3 -4114.93 -119.875,94 100 93 251 311,stand,,,
|
||||
-1533.33 -3446.82 -122.146,100 124 122 310 311 470,stand,,,
|
||||
-1488.97 -2850.95 -172.91,98 122 121 145 470,stand,,,
|
||||
-1836.84 -2860.2 -188.037,97 99 307,stand,,,
|
||||
-1826.73 -3141.41 -153.197,98 308 310,stand,,,
|
||||
-1130.35 -3931.79 -123.875,93 95 94 96 101 124 311,stand,,,
|
||||
-730.61 -3940.07 -131.876,100 102 131 331,stand,,,
|
||||
-518.626 -3961.37 -136.215,101 103 332 335 367,stand,,,
|
||||
-425.543 -3827.09 -159.38,102 104,stand,,,
|
||||
-431.688 -3539.95 -162.432,103 105,stand,,,
|
||||
-265.806 -3277.71 -314.75,104 106 109 139 140 110,stand,,,
|
||||
25.0022 -2920.23 -341.44,105 107 110 109 140,stand,,,
|
||||
287.479 -2459.18 -323.875,106 110 83 111 113 534,stand,,,
|
||||
176.726 -4375.2 -282.201,86 85 109 138,stand,,,
|
||||
194.997 -3744.76 -296.752,108 105 110 140 106,stand,,,
|
||||
349.165 -2905.92 -337.633,109 106 107 83 140 105,stand,,,
|
||||
513.726 -2183.21 -339.546,107 83 112 535,stand,,,
|
||||
706.77 -2042.15 -335.269,111 223 224 535,stand,,,
|
||||
-121.474 -2367.93 -203.64,107 114 475 476 477 478,stand,,,
|
||||
-333.491 -2258.78 -181.73,113 115 478 477,stand,,,
|
||||
-475.611 -2412.3 -135.875,114 158 475,stand,,,
|
||||
-332.412 -2602.73 -179.677,118 119 474 475,stand,,,
|
||||
-741.091 -3304.42 -105.527,120 119 122 127 471,stand,,,
|
||||
-559.447 -2586.07 -181.366,116 119 141 144 474,stand,,,
|
||||
-573.502 -2916.39 -197.136,116 120 117 118 122 141 472 474,stand,,,
|
||||
-777.38 -2869.09 -187.788,119 117 121 144 141,stand,,,
|
||||
-1015.4 -2848.56 -177.109,120 122 144 97 152 151,stand,,,
|
||||
-1041.83 -3164.01 -133.191,121 119 117 97 123 96 152 470,stand,,,
|
||||
-1106.55 -3320.27 -123.758,122 124,stand,,,
|
||||
-1118.46 -3479.73 -119.875,123 96 100 125,stand,,,
|
||||
-958.015 -3473.67 -107.875,124 126 312 313 316 315,stand,,,
|
||||
-756.38 -3558.6 -107.875,125 127 130 316 315,stand,,,
|
||||
-746.126 -3465.86 -107.875,126 117 128,stand,,,
|
||||
-563.019 -3446.71 -91.503,127 129 318 319,stand,,,
|
||||
-559.054 -3679.98 -91.8977,128 130 320,stand,,,
|
||||
-736.532 -3659.28 -107.875,129 126 131,stand,,,
|
||||
-737.24 -3789.82 -107.875,130 101 132,stand,,,
|
||||
-1036.37 -3774.21 28.125,131 133 321,stand,,,
|
||||
-1019.56 -3677.81 28.125,132 134 322,stand,,,
|
||||
-923.109 -3683.18 28.125,133 137 328,stand,,,
|
||||
-924.085 -3440.54 28.125,136 325 326 327 328,stand,,,
|
||||
-731.853 -3444.27 28.125,135 137 324,stand,,,
|
||||
-765.465 -3701.45 28.125,136 134 323,stand,,,
|
||||
-238.004 -4290.32 -278.031,88 108 139,stand,,,
|
||||
-87.4378 -3984.53 -288.879,138 105 140,stand,,,
|
||||
57.9382 -3786.51 -296.693,139 86 109 105 110 106,stand,,,
|
||||
-777.784 -2436.8 -175.875,118 142 144 119 120,stand,,,
|
||||
-945.797 -2199.01 -183.724,141 143 502 153,stand,,,
|
||||
-1036.15 -2301.46 -183.875,142 144 149 150,stand,,,
|
||||
-995.736 -2524.19 -183.877,143 141 118 120 121 150 152,stand,,,
|
||||
-1419.91 -2739.33 -182.212,97 152 505,stand,,,
|
||||
-1456.7 -2091.65 -183.875,147 250 305 504 505,stand,,,
|
||||
-1415.45 -1677.98 -183.203,146 148 154,stand,,,
|
||||
-1232.95 -1684.64 -179.875,147 154 155 503,stand,,,
|
||||
-1169.51 -2212.62 -198.256,150 143 151 502 153 503 504,stand,,,
|
||||
-1153.35 -2390.06 -194.52,149 144 143 151,stand,,,
|
||||
-1249.8 -2466.55 -188.036,150 152 121 149 505,stand,,,
|
||||
-1294.19 -2773.81 -187.579,151 145 121 144 122,stand,,,
|
||||
-1142.75 -1851.1 -193.112,502 149 142 503 501,stand,,,
|
||||
-1273.9 -1470.41 -181.338,147 148 172 249 155,stand,,,
|
||||
-1061.57 -1507.72 -184.142,148 171 175 170 249 154,stand,,,
|
||||
-741.372 -1935.45 -135.875,157 499 500,stand,,,
|
||||
-583.548 -2010.81 -135.875,156 158 159,stand,,,
|
||||
-704.882 -2207 -135.875,157 115 479,stand,,,
|
||||
-394.193 -1974.77 -135.875,157 160 480 483,stand,,,
|
||||
-367.171 -2141.85 -135.875,159 161 246 483,stand,,,
|
||||
-531.936 -2332.13 0.125,160 486 487 488,stand,,,
|
||||
-649.853 -2220.16 0.125,163 488 490 491,stand,,,
|
||||
-543.944 -1961.33 0.125,162 164 165 491 494,stand,,,
|
||||
-459.05 -1764.68 0.125,163 165 495,stand,,,
|
||||
-389.801 -1945.43 0.125,164 163 166,stand,,,
|
||||
-284.122 -2007.61 0.125,165 167 496,stand,,,
|
||||
-211.471 -1901.15 0.125,166 168 497,stand,,,
|
||||
-414.201 -1732.13 -135.875,167 169 498,stand,,,
|
||||
-310.682 -1634.01 -146.491,168 170 173 174 217 243 242,stand,,,
|
||||
-456.783 -1556.32 -177.806,169 171 174 175 173 219 155 482,stand,,,
|
||||
-726.42 -1722.69 -182.565,170 155 172 175 482 500 501,stand,,,
|
||||
-905.159 -1260.46 -183.875,154 171 191 249,stand,,,
|
||||
-442.063 -1066.41 -179.875,174 190 177 191 169 170 200 219 201,stand,,,
|
||||
-505.561 -1187.75 -190.029,173 170 176 169 219,stand,,,
|
||||
-755.103 -1426.99 -194.637,176 155 170 171,stand,,,
|
||||
-623.283 -1253.24 -180.399,175 174,stand,,,
|
||||
-716.221 -745.012 -183.277,178 190 173 191 200,stand,,,
|
||||
-864.79 -420.833 -183.875,177 189 295 296 301,stand,,,
|
||||
-725.365 -42.2323 -175.875,180 189 296,stand,,,
|
||||
-675.609 208.65 -175.875,179 181 240 291 293,stand,,,
|
||||
-454.009 210.609 -175.875,180 182 185 238 239 287,stand,,,
|
||||
-177.492 195.039 -175.857,181 184 187 277,stand,,,
|
||||
47.9153 620.831 -175.875,237 273 277 280 281 284,stand,,,
|
||||
-1.39137 -116.542 -175.875,182 187 194 188 195 271 274 193,stand,,,
|
||||
-596.985 84.1431 -170.251,181 186 288,stand,,,
|
||||
-474.985 -6.70551 -175.875,185 187 288 289 298,stand,,,
|
||||
-272.092 -7.30256 -173.63,186 184 182 188,stand,,,
|
||||
-314.647 -177.742 -181.151,187 189 184 297 195 300,stand,,,
|
||||
-539.499 -259.903 -183.875,188 179 178 190 195 296 297 300,stand,,,
|
||||
-425.089 -629.568 -183.875,189 177 173 191 192 200 299,stand,,,
|
||||
-648.315 -1029.81 -183.302,172 173 177 190,stand,,,
|
||||
173.724 -586.251 -183.894,190 193 200 276,stand,,,
|
||||
377.644 -560.132 -171.963,192 194 199 203 198 184 276,stand,,,
|
||||
375.596 -124.443 -171.707,193 184 195 197 198 199 270 271 276,stand,,,
|
||||
-139.946 -334.774 -183.918,189 194 184 276 188 300,stand,,,
|
||||
674.28 562.726 -174.984,197 209 237 275 279,stand,,,
|
||||
668.187 141.652 -167.875,196 194 198 236 270 237,stand,,,
|
||||
604.301 -253.531 -173.72,197 194 199 270 193,stand,,,
|
||||
620.27 -687.439 -171.845,198 194 193 203 204 205,stand,,,
|
||||
-246.419 -918.46 -177.024,192 173 190 201 177,stand,,,
|
||||
-201.157 -1096.47 -180.55,200 202 218 219 173 214,stand,,,
|
||||
297.229 -1049.39 -185.88,201 203 213 214 215 216,stand,,,
|
||||
420.269 -849.855 -185.665,193 202 199 214,stand,,,
|
||||
727.834 -903.269 -189.84,199 521 522,stand,,,
|
||||
807.399 -690.748 -175.941,199 206 212,stand,,,
|
||||
1185.31 -720.668 -334.101,205 32 207 210 211 212,stand,,,
|
||||
1096.98 -294.759 -299.485,206 208 212 538,stand,,,
|
||||
1054.59 372.804 -299.331,207 209 210 538 539 542 543,stand,,,
|
||||
861.672 536.177 -216.997,208 196 275 539,stand,,,
|
||||
1417.63 -330.253 -273.682,208 206 32 543,stand,,,
|
||||
1141.7 -1110.96 -348.232,206 226 225 536 537,stand,,,
|
||||
1002.63 -568.251 -277.434,205 207 206,stand,,,
|
||||
617.112 -1185.03 -175.875,202 214 215 516 522,stand,,,
|
||||
453.665 -1253.12 -188.696,213 203 202 215 201 516,stand,,,
|
||||
366.323 -1415.03 -167.875,214 216 213 202 511 516,stand,,,
|
||||
271.206 -1400.25 -183.875,215 217 202 510,stand,,,
|
||||
158.683 -1565.84 -179.583,216 169 218 242 510,stand,,,
|
||||
-189.353 -1330.69 -193.035,217 201 219,stand,,,
|
||||
-316.869 -1281.58 -198.101,218 173 170 201 174,stand,,,
|
||||
409.257 -1730.35 -164.295,221 241 511 512 513,stand,,,
|
||||
642.721 -1487.41 -166.196,220 241 515 517,stand,,,
|
||||
769.543 -1483.3 -167.875,223 517,stand,,,
|
||||
794.753 -1821.74 -312.73,222 112 224,stand,,,
|
||||
924.484 -1852.02 -342.018,223 112 226 225,stand,,,
|
||||
901.483 -1406.71 -343.875,211 224 537,stand,,,
|
||||
1282.84 -1545.25 -350.338,224 211 536,stand,,,
|
||||
679.937 -3021.41 -215.265,82 531 533,stand,,,
|
||||
1055.34 -2847.17 -159.875,0 1 428,stand,,,
|
||||
1167.36 -2253.7 -159.875,11 12 443 444,stand,,,
|
||||
1485.6 -1554.01 -193.109,231 465,stand,,,
|
||||
1469.06 -1722.55 -191.875,230 433,stand,,,
|
||||
1772.06 -1667.83 -197.232,22 23 431 433,stand,,,
|
||||
1588.84 -1221.53 -210.509,29 457 461,stand,,,
|
||||
1700.63 -1334.19 -195.916,24 460,stand,,,
|
||||
1823.92 -185.433 -117.698,31 453 452,stand,,,
|
||||
477.447 259.328 -178.535,197 237 270 272,stand,,,
|
||||
415.424 502.072 -176.149,236 196 183 272 197 278,stand,,,
|
||||
-294.775 444.616 -175.875,239 181 286,stand,,,
|
||||
-568.384 418.463 -175.875,238 181 285,stand,,,
|
||||
-671.156 277.691 -175.875,180 290 291 293,stand,,,
|
||||
622.77 -1678.13 -162.311,220 221 514,stand,,,
|
||||
246.363 -1714.84 -174.577,243 217 169 509 510,stand,,,
|
||||
-43.6699 -1902.63 -207.066,244 242 169,stand,,,
|
||||
-124.632 -2104.74 -207.888,243 506 507,stand,,,
|
||||
-489.846 -2185.43 -135.875,246 484 485,stand,,,
|
||||
-417.56 -2112.78 -135.875,245 160 483,stand,,,
|
||||
-1545.08 -1155.93 -179.875,248 303 302,stand,,,
|
||||
-1317.26 -1176.19 -179.875,247 249 302,stand,,,
|
||||
-1158.87 -1334.89 -181.48,248 172 154 155,stand,,,
|
||||
-1849.32 -1811.81 -179.875,146 304 305,stand,,,
|
||||
-1807.52 -4093.43 -134.156,95 467 468 469,stand,,,
|
||||
-1447.59 -4899.67 -151.342,92 253 346 350 349 348 347,stand,,,
|
||||
-1609.15 -4735.25 -130.532,252 94 354,stand,,,
|
||||
-683.68 -4924.15 -168.078,90 91 338 339,stand,,,
|
||||
1805.76 -4083.01 -135.399,64 396 399,stand,,,
|
||||
1143.81 -4068.73 -119.875,72 380 68,stand,,,
|
||||
1340.36 -4332.29 -119.875,68 71,stand,,,
|
||||
2791.79 -2543.23 -143.875,42 408,stand,,,
|
||||
2747.47 -2069.48 -158.093,260 420,stand,,,
|
||||
2631.94 -2004.02 -164.395,259 37 261 35,stand,,,
|
||||
2463.14 -1871.51 -170.033,260 36 37 21 441,stand,,,
|
||||
1307.95 -2334.21 -31.875,19 449,stand,,,
|
||||
1033.05 -2776.94 -31.875,20 269,stand,,,
|
||||
1141.42 -4197.1 -13.875,383 384 385,stand,,,
|
||||
1177.95 -4400.04 -13.875,385 386 387,stand,,,
|
||||
1593.62 -4431.4 -13.875,267 387 389 393,stand,,,
|
||||
1651.43 -4133.27 -13.875,266 390 392 394,stand,,,
|
||||
1085.57 -2964.97 -170.51,48 47 269,climb,65.2972 90.6024 0,,
|
||||
1086.23 -2923.96 -31.875,263 268,climb,85 -113.985 0,,
|
||||
405.787 106.042 -175.481,194 236 197 198 271,stand,69.5819 65.7367 0,,
|
||||
246.598 29.916 -177.429,272 194 184 274 270,stand,16.7487 76.9537 0,,
|
||||
253.755 329.179 -178.315,271 273 237 236,stand,19.682 177.962 0,,
|
||||
34.1535 317.201 -178.099,183 274 272 277,stand,10.1898 7.20703 0,,
|
||||
16.8234 58.5558 -177.635,271 184 273,stand,17.6111 76.6132 0,,
|
||||
777.053 376.763 -170.79,209 196,stand,19.1656 -86.5448 0,,
|
||||
147.335 -370.016 -183.875,195 192 193 194,stand,18.1274 -72.0154 0,,
|
||||
-90.6549 335.464 -178.992,273 182 183 284,stand,42.4731 -163.004 0,,
|
||||
492.079 708.694 -176.564,237 279 280,stand,11.0522 67.1375 0,,
|
||||
676.875 808.875 -160.142,278 196,crouch,4.01978 -128.837 0,,
|
||||
339.613 779.667 -167.875,278 183 281,stand,16.1047 -177.177 0,,
|
||||
-231.847 741.343 -167.875,183 282 283 284 280,stand,81.5448 -166.992 0,,
|
||||
-413.477 808.875 -167.875,281 283,crouch,0.570068 -32.1405 0,,
|
||||
-416.875 631.125 -169.882,281 282,crouch,6.0907 18.6218 0,,
|
||||
-142.087 580.481 -175.875,281 183 277,stand,15.072 -67.0221 0,,
|
||||
-608.875 464.875 -175.875,239,crouch,4.71191 -47.1643 0,,
|
||||
-271.125 464.872 -175.875,238,crouch,9.02954 -127.112 0,,
|
||||
-271.125 127.125 -175.875,181,crouch,5.40405 135.676 0,,
|
||||
-606.683 -34.5898 -175.875,185 186,crouch,3.84949 36.7493 0,,
|
||||
-367.128 64.875 -175.875,186,crouch,5.05798 -131.946 0,,
|
||||
-647.125 322.875 -175.875,240,crouch,4.36584 -127.123 0,,
|
||||
-833.895 279.388 -175.875,240 292 180 293,stand,15.5884 -102.953 0,,
|
||||
-963.875 322.32 -175.875,291,crouch,2.98706 -49.5978 0,,
|
||||
-850.802 88.1882 -175.875,291 180 240 294,stand,17.6593 -97.597 0,,
|
||||
-941.665 -47.5287 -175.875,293 295,stand,14.2096 -46.9995 0,,
|
||||
-904.079 -235.185 -183.917,294 178 296,stand,22.1527 -54.6021 0,,
|
||||
-793.016 -235.223 -183.875,295 179 178 189,stand,25.9485 47.6147 0,,
|
||||
-434.384 -135.442 -178.64,189 298 188,stand,22.2266 91.8182 0,,
|
||||
-439.72 -39.2125 -175.875,297 186,stand,63.3209 86.1218 0,,
|
||||
-269.556 -529.711 -183.875,300 190,crouch,1.8524 -109.512 0,,
|
||||
-277.653 -370.196 -183.875,299 195 188 189,stand,32.5867 -13.8538 0,,
|
||||
-963.875 -659.125 -183.875,178,crouch,3.40696 54.5142 0,,
|
||||
-1377.19 -909.508 -179.929,248 247,crouch,4.0991 -91.0437 0,,
|
||||
-1646.97 -1161.59 -179.875,247,crouch,3.40696 -1.42822 0,,
|
||||
-1913.37 -1710.7 -177.761,250,crouch,3.06089 -57.887 0,,
|
||||
-1795.5 -2127.42 -179.875,250 146 306,stand,35.6958 -116.592 0,,
|
||||
-1871.22 -2182.82 -179.875,305,crouch,3.23118 24.9939 0,,
|
||||
-1916.97 -2793.13 -199.799,98,crouch,-0.910664 -42.3523 0,,
|
||||
-1943.57 -3261.89 -158.712,99 309 310,stand,7.54881 -107.1 0,,
|
||||
-2024.23 -3374.88 -145.98,308,crouch,3.75303 37.7655 0,,
|
||||
-1687.31 -3311.38 -132.696,308 99 96 470,stand,9.10337 -13.5132 0,,
|
||||
-1581.01 -3806.51 -119.973,95 96 100,stand,19.2932 -12.8265 0,,
|
||||
-817.625 -3343.63 -107.875,125,crouch,5.82396 -135.247 0,,
|
||||
-1039.38 -3343.63 -107.875,125,crouch,2.89061 -52.5421 0,,
|
||||
-1039.38 -3721.38 -107.875,315,crouch,5.64817 55.7227 0,,
|
||||
-974.224 -3630.57 -107.875,314 316 125 126,stand,12.7289 53.1299 0,,
|
||||
-870.168 -3637.83 -107.875,315 317 126 125,stand,27.923 -23.8733 0,,
|
||||
-817.625 -3721.38 -107.875,316,crouch,6.51609 122.201 0,,
|
||||
-501.625 -3343.63 -74.4311,128,crouch,7.54881 -120.729 0,,
|
||||
-655.375 -3561.38 -107.875,128,crouch,3.23118 47.6093 0,,
|
||||
-501.625 -3809.38 -60.3337,129,crouch,2.71482 121.849 0,,
|
||||
-1039.38 -3809.38 28.125,132,crouch,22.7429 46.9061 0,,
|
||||
-1039.38 -3639.63 28.125,133,crouch,11.3501 -38.9081 0,,
|
||||
-689.625 -3809.38 28.125,137,crouch,3.06089 119.773 0,,
|
||||
-734.155 -3343.63 28.125,136,crouch,11.1743 93.1805 0,,
|
||||
-1039.37 -3407.2 28.125,135,crouch,16.0083 178.66 0,,
|
||||
-967.052 -3354.13 28.125,135,crouch,13.0749 93.186 0,,
|
||||
-809.625 -3343.63 64.125,135,crouch,17.7386 -136.285 0,,
|
||||
-925.393 -3573.43 28.125,135 134 329 330,stand,25.506 -92.2577 0,,
|
||||
-809.625 -3601.38 60.125,328,crouch,15.3216 148.436 0,,
|
||||
-1016.96 -3601.38 28.125,328,crouch,8.93309 42.0721 0,,
|
||||
-885.067 -4030.88 -130.247,101,crouch,5.82396 31.1957 0,,
|
||||
-554.47 -4221.14 -135.875,102 334 335 333,stand,17.2168 -99.5032 0,,
|
||||
-586.764 -4456.43 -130.382,332 336 91,stand,17.2168 -94.6692 0,,
|
||||
-648.875 -4292.88 -128.416,332,crouch,8.58702 54.8547 0,,
|
||||
-433.664 -4153.37 -142.581,332 102,crouch,10.6579 83.8641 0,,
|
||||
-648.875 -4371.13 -128.159,333,crouch,7.54881 -56.3489 0,,
|
||||
-473.809 -4975.97 -165.751,91,crouch,2.71482 134.786 0,,
|
||||
-736.875 -4984.88 -170.247,254,crouch,2.36876 46.5546 0,,
|
||||
-862.709 -4828.41 -161.275,254 92 91 350,stand,15.838 164.13 0,,
|
||||
-660.086 -5121.77 -164.319,341 90 89 344 343,stand,18.0847 -102.64 0,,
|
||||
-622.466 -5292.19 -167.875,340 89 342 343 344,stand,17.2168 42.9181 0,,
|
||||
-479.128 -5368.88 -159.875,341 89,crouch,6.85667 131.49 0,,
|
||||
-728.875 -5331.59 -164.577,341 340 344,crouch,5.47789 39.8035 0,,
|
||||
-728.875 -5023.13 -159.875,340 343 341,crouch,6.17002 -45.3186 0,,
|
||||
-479.125 -5023.13 -160.871,89,crouch,6.51609 -136.483 0,,
|
||||
-1800.83 -5022.89 -167.73,252 347 348 352 353,stand,15.6677 131.484 0,,
|
||||
-1838.51 -5229.02 -167.875,346 348 252 351,stand,22.5726 0.950317 0,,
|
||||
-1479.19 -5234.71 -166.574,347 349 350 252 346,stand,10.3119 3.36731 0,,
|
||||
-1118.28 -5236.33 -170.129,348 350 252 355,stand,10.6579 22.0111 0,,
|
||||
-1054.01 -4891.05 -145.151,349 339 92 252 348,stand,10.1416 38.5895 0,,
|
||||
-1955.6 -5308 -155.889,347,crouch,2.02269 39.6222 0,,
|
||||
-1799.13 -4753.13 -138.94,346 353,crouch,10.4877 -107.314 0,,
|
||||
-1984.95 -4753.13 -141.429,352 346,crouch,9.44944 -51.8939 0,,
|
||||
-1730.28 -4771.51 -138.782,253,crouch,3.57725 48.598 0,,
|
||||
-983.125 -5289.01 -176.602,349,crouch,3.40696 131.473 0,,
|
||||
-128.609 -5206.37 -271.853,87 357 358 86 360,stand,41.2219 -1.30737 0,,
|
||||
181.416 -5153.45 -301.719,356 358 359,stand,53.1311 84.8474 0,,
|
||||
213.368 -4982.42 -288.713,357 86 87 356,stand,27.5769 114.543 0,,
|
||||
178.326 -5301.15 -313.322,357,crouch,-1.6028 98.6627 0,,
|
||||
-432.875 -5392.88 -182.018,356 87 362,crouch,6.86216 49.9658 0,,
|
||||
-413.525 -4968.23 -167.36,87 362 363,stand,57.7948 -56.9147 0,,
|
||||
-411.881 -5124.12 -189.6,361 89 87 360,stand,37.4207 -172.425 0,,
|
||||
-389.984 -4871.84 -152.187,361 364,stand,59.5252 78.1073 0,,
|
||||
-376.783 -4613.32 -143.419,363 365,stand,18.255 96.405 0,,
|
||||
-398.271 -4327.71 -145.972,364 366,stand,20.5017 87.4292 0,,
|
||||
-351.372 -4119.9 -182.77,365 367,stand,72.4725 92.7795 0,,
|
||||
-350.208 -3950.84 -163.875,366 102 78,stand,44.8474 91.7413 0,,
|
||||
361.212 -5237.15 -179.536,369,crouch,9.27916 111.389 0,,
|
||||
386.216 -4978.38 -175.688,368 370,stand,15.1459 76.6828 0,,
|
||||
412.578 -4792.18 -191.551,369 85,stand,25.3357 88.0811 0,,
|
||||
527.783 -4552.58 -210.044,84 85 372,stand,14.9756 120.2 0,,
|
||||
509.529 -4291.38 -150.759,371 373 376,stand,20.672 50.9583 0,,
|
||||
636.594 -4231.52 -138.476,372 74 374,stand,30.1697 -126.196 0,,
|
||||
713.503 -4303.83 -154.339,373 84 74 73,stand,49.8517 -97.8735 0,,
|
||||
1053.19 -4181.13 -129.531,73,crouch,9.27916 -130.508 0,,
|
||||
479.128 -4263.13 -150.849,372,crouch,5.99424 -32.0929 0,,
|
||||
1046.9 -4525.09 -135.915,73,crouch,8.07066 143.677 0,,
|
||||
1690.32 -4469 -119.875,70,crouch,4.43968 146.951 0,,
|
||||
1683.16 -4059.31 -101.875,69,crouch,6.51609 -132.239 0,,
|
||||
1097.5 -4069.54 -119.875,256,crouch,6.17002 -31.9171 0,,
|
||||
1222.16 -4124.74 -13.875,382 383,climb,85 1.58572 0,,
|
||||
1231.43 -4121.3 -119.767,68 381,climb,-85 179.257 0,,
|
||||
1144.71 -4110.75 -13.875,381 264,stand,40.2802 143.15 0,,
|
||||
1089.03 -4258.69 -13.875,264 385,prone,13.6932 -176.102 0,,
|
||||
1158.05 -4293.52 -13.875,384 265 264,stand,57.0288 -68.1994 0,,
|
||||
1087.79 -4429.52 -13.875,265,crouch,6.61255 54.397 0,,
|
||||
1273.96 -4411.09 -13.875,265 388 266,stand,30.2661 169.902 0,,
|
||||
1232.96 -4500.99 -13.875,387,crouch,6.78284 50.9363 0,,
|
||||
1698.73 -4492.86 -13.875,266,crouch,7.82105 136.064 0,,
|
||||
1695.16 -4058.91 10.125,267,crouch,14.5557 -125.691 0,,
|
||||
1508.19 -4171.29 -13.875,392,crouch,21.9769 160.234 0,,
|
||||
1582.15 -4179.09 -13.875,267 391,stand,28.7115 23.3112 0,,
|
||||
1698.55 -4307 -13.875,266 394,prone,11.6168 47.4866 0,,
|
||||
1685.8 -4269.43 -13.875,393 267 395,stand,67.735 -176.459 0,,
|
||||
1770.87 -4276.22 -87.875,394 396 400 399,stand,52.0245 5.17276 0,,
|
||||
1847.52 -4268.33 -129.844,395 255 64 397 400,stand,57.721 5.34305 0,,
|
||||
1999.46 -4450.7 -122.953,396 398 400,stand,46.4984 64.2243 0,,
|
||||
2083.27 -4313.32 -122.958,397 64 63,stand,23.1854 70.2668 0,,
|
||||
1729.28 -4051.13 -135.875,255 395,crouch,4.01978 -31.7798 0,,
|
||||
1736.96 -4491.37 -126.462,397 396 395,crouch,3.50342 54.029 0,,
|
||||
3043.94 -3613.22 -116.728,402 62 61 406 407,stand,15.2478 85.6256 0,,
|
||||
3130 -3303.62 -126.353,403 401 61 60 43 405 404 406,stand,14.5557 86.6584 0,,
|
||||
3016.94 -2834.26 -151.794,43 402 60 404 405,stand,11.9629 133.795 0,,
|
||||
3169.91 -2867.15 -135.135,403 405 402,crouch,10.9302 -174.75 0,,
|
||||
3229.78 -3225.89 -123.329,404 402 403 406,crouch,6.95862 175.411 0,,
|
||||
3187.86 -3421.61 -116.153,402 405 401 46,crouch,9.37561 159.86 0,,
|
||||
2863.44 -3790.91 -116.689,401 62 61,crouch,6.78284 121.172 0,,
|
||||
2818.88 -2570.88 -143.875,258,crouch,9.72168 144.139 0,,
|
||||
2619.13 -2421.13 -143.875,42,crouch,7.12891 -37.1521 0,,
|
||||
2428.38 -2497.55 -143.875,42 44 411 412 415,stand,21.2903 175.043 0,,
|
||||
2381.13 -2570.88 -143.875,410,crouch,8.68347 -173.212 0,,
|
||||
2438.27 -2421.13 -143.875,410 413,crouch,11.7926 94.585 0,,
|
||||
2432.61 -2341.8 -166.115,412 37 40 419,stand,8.16711 -90.3314 0,,
|
||||
2559.38 -2639.89 -136.377,45 43 415,stand,31.6504 -88.4362 0,,
|
||||
2557.94 -2570.88 -143.875,410 42 414,crouch,4.8822 -89.1284 0,,
|
||||
2821.93 -2230.88 -143.875,41,crouch,10.9302 169.682 0,,
|
||||
2665.13 -2133.13 -143.875,41,crouch,11.1005 -54.9444 0,,
|
||||
2669.13 -2327.3 -143.875,419 41 42,crouch,7.99133 177.795 0,,
|
||||
2584.32 -2327.99 -162.633,418 413 37,stand,24.0533 6.68338 0,,
|
||||
2814.73 -2059.9 -125.5,259,crouch,8.3374 160.877 0,,
|
||||
1486.98 -2555.53 -204.882,424 422 7 8,stand,21.9769 -66.1725 0,,
|
||||
1639.24 -2622.44 -179.856,421 423 46 38 39,stand,28.7115 -102.949 0,,
|
||||
1598 -2741.46 -181.994,422 424 50 49 46,stand,27.5031 173.824 0,,
|
||||
1433.12 -2681.81 -203.005,421 423 49 50 7 430,stand,23.3612 72.4695 0,,
|
||||
1407.13 -2335.13 -192.432,8 7,crouch,4.19556 -44.5898 0,,
|
||||
919.125 -2471.13 -159.875,5,crouch,7.99133 -34.2352 0,,
|
||||
919.125 -2912.88 -159.875,0,crouch,4.36584 57.6215 0,,
|
||||
1080.88 -2912.88 -159.875,228,crouch,3.84949 116.843 0,,
|
||||
1192.88 -2760.88 -159.875,2,crouch,6.09619 129.45 0,,
|
||||
1231.13 -2716.47 -159.875,424 4,crouch,8.51318 -1.08395 0,,
|
||||
1738.79 -1789.73 -191.325,432 232 23 434,crouch,3.33313 -99.494 0,,
|
||||
1613.53 -1762.48 -193.758,433 431 435,crouch,1.94885 -97.5988 0,,
|
||||
1628.29 -1722.58 -194.048,432 23 231 232,stand,33.3752 -84.4702 0,,
|
||||
1736.82 -1842.02 -203.984,431 435 441,stand,25.2618 83.0109 0,,
|
||||
1600.88 -1835.26 -203.4,434 432 436 440 9 14,stand,19.3896 75.2436 0,,
|
||||
1408.35 -1838.7 -191.084,435 437 440 14 9 439,stand,6.09619 -156.815 0,,
|
||||
1218.4 -2117.56 -183.875,436 14 438 439,stand,13.0011 22.0587 0,,
|
||||
1171.23 -2168.88 -183.875,437,crouch,1.77856 23.2672 0,,
|
||||
1149.04 -2045.85 -183.875,437 436 14,crouch,5.22827 -7.64279 0,,
|
||||
1411.3 -1784.94 -195.948,436 435,crouch,3.6792 -46.8365 0,,
|
||||
2097.17 -1940.81 -182.176,434 21 40 261 9,stand,19.7357 62.9883 0,,
|
||||
1500.88 -2296.88 -191.875,13,crouch,3.50342 137.739 0,,
|
||||
1079.13 -2207.13 -159.875,229 444,crouch,2.81128 -37.1685 0,,
|
||||
1079.13 -2304.88 -159.875,229 443,crouch,2.64099 24.4757 0,,
|
||||
1368.88 -2432.88 -159.875,11,crouch,2.46521 145.161 0,,
|
||||
1008.87 -2297.61 -159.875,447,crouch,6.43677 -178.238 0,,
|
||||
936.961 -2301.05 -158.664,446 16 17,stand,46.6687 -178.755 0,,
|
||||
919.125 -2359.43 -31.875,19,crouch,18.6975 47.6075 0,,
|
||||
1224.55 -2253.18 -31.875,262,crouch,6.95862 -141.989 0,,
|
||||
814.782 -2174.39 -185.414,15 82,prone,4.01978 77.8144 0,,
|
||||
2532.31 -567.12 -132.733,33 452 31,stand,3.50342 141.876 0,,
|
||||
2140.11 -288.54 -170.675,451 31 235 33,stand,2.11914 166.913 0,,
|
||||
1769.63 -121.818 -93.4538,235,crouch,9.5459 -50.9948 0,,
|
||||
1714.44 -504.46 -103.18,31 30 32 455,stand,47.8772 5.29361 0,,
|
||||
1705.99 -288.965 -80.3819,454 456,stand,9.37012 88.6853 0,,
|
||||
1695.52 -144.391 -83.1878,455,prone,7.64526 -175.657 0,,
|
||||
1567.73 -1043.23 -198.059,233,crouch,1.60278 -175.311 0,,
|
||||
1824.31 -1552.98 -199.875,25,crouch,4.53613 99.9134 0,,
|
||||
1732.82 -1508.92 -199.875,25,crouch,4.36584 56.2372 0,,
|
||||
1625.56 -1302.35 -197.743,461 234 24 464,stand,15.7587 80.0611 0,,
|
||||
1637.66 -1227.56 -214.025,460 233 26 28,stand,52.5409 109.587 0,,
|
||||
1495.74 -1460.24 -198.896,24 466,crouch,4.36584 39.4776 0,,
|
||||
1690.37 -1529.36 -197.973,24,crouch,5.05798 116.31 0,,
|
||||
1521.62 -1278.5 -194.625,460 24 466,crouch,4.53613 -61.5307 0,,
|
||||
1561.58 -1561.85 -195.894,230 23 24,stand,34.0619 1.83292 0,,
|
||||
1503.61 -1383.28 -199.151,24 464 462,crouch,1.94885 168.792 0,,
|
||||
-2020.87 -3985.13 -114.165,251 469 468,crouch,6.38855 -28.6041 0,,
|
||||
-2020.87 -4142.87 -115.148,251 467,crouch,6.21826 24.4049 0,,
|
||||
-1747.13 -3985.32 -134.183,251 467,crouch,1.37878 -143.076 0,,
|
||||
-1500.86 -3103.43 -143.87,310 96 97 122,stand,17.9572 63.9447 0,,
|
||||
-507.626 -3300.04 -125.315,117 472,stand,57.1509 57.9022 0,,
|
||||
-426.649 -3132.41 -175.832,471 119 473,stand,13.8153 69.6411 0,,
|
||||
-371.289 -2962.39 -195.285,472 474,stand,12.9474 101.93 0,,
|
||||
-415.088 -2805.19 -202.199,473 116 119 118,stand,17.9572 76.8921 0,,
|
||||
-281.277 -2538.95 -177.12,116 113 476 115,stand,21.0663 -150.162 0,,
|
||||
-187.386 -2625.32 -179.157,475 113,crouch,5.18005 115.048 0,,
|
||||
-91.9416 -2232.46 -199.843,113 478 114,crouch,0.170288 -148.608 0,,
|
||||
-296.308 -2168.04 -191.742,477 114 113,crouch,6.73462 -54.8505 0,,
|
||||
-796.68 -2195.52 -135.875,158,crouch,5.18005 -0.632915 0,,
|
||||
-464.636 -1883.92 -135.875,159 481,stand,12.9474 134.395 0,,
|
||||
-547.226 -1826.17 -135.875,482 480,crouch,7.76733 142.338 0,,
|
||||
-615.061 -1775.32 -173.101,171 170 481 508,stand,4.14185 -39.6509 0,,
|
||||
-252.716 -1992.6 -135.875,159 160 246,crouch,3.10913 -175.892 0,,
|
||||
-548.423 -2211.9 -135.875,245,crouch,7.59705 32.5128 0,,
|
||||
-449.191 -2289.14 -135.875,245,crouch,5.69641 112.801 0,,
|
||||
-540.11 -2405.93 0.125,161 487,crouch,10.7062 85.0055 0,,
|
||||
-655.119 -2316.39 0.125,161 488 486,crouch,11.5686 15.4181 0,,
|
||||
-603.52 -2274.95 0.125,162 161 489 487,stand,25.9003 16.2805 0,,
|
||||
-514.185 -2135.36 0.125,488,crouch,13.4692 -90.4187 0,,
|
||||
-759.083 -2235.46 0.125,162 491 492,crouch,10.7062 -123.389 0,,
|
||||
-671.734 -2107.2 0.125,162 163 490 492 493,stand,18.4735 77.2492 0,,
|
||||
-825.561 -2183.71 0.125,491 490,crouch,8.1134 15.7752 0,,
|
||||
-650.368 -1932.62 0.125,491,crouch,7.59705 -80.3992 0,,
|
||||
-585.261 -1875.03 0.125,163,crouch,8.45947 -37.5855 0,,
|
||||
-411.2 -1713.32 0.125,164,crouch,17.7869 54.2713 0,,
|
||||
-328.796 -2134.48 0.125,166,crouch,6.90491 79.1278 0,,
|
||||
-155.721 -1912.16 0.125,167,crouch,14.1614 169.084 0,,
|
||||
-476.647 -1735.51 -135.875,168,crouch,11.2225 3.15187 0,,
|
||||
-875.636 -1947.96 -178.961,500 156 502,stand,31.7725 43.9002 0,,
|
||||
-802.117 -1857.31 -177.408,171 499 156 501,stand,29.0094 146.117 0,,
|
||||
-924.321 -1801.54 -183.818,500 502 171 153,stand,46.4447 -162.423 0,,
|
||||
-986.705 -1874.62 -183.771,501 499 153 142 149,stand,45.412 174.094 0,,
|
||||
-1237.32 -1837.22 -188.98,149 153 148 504,stand,29.1797 73.0853 0,,
|
||||
-1324.15 -1988.19 -179.878,503 146 149,stand,15.0238 -128.42 0,,
|
||||
-1384.05 -2447.91 -183.875,145 146 151,stand,16.7487 -125.146 0,,
|
||||
-257.233 -2125.81 -197.472,244,crouch,7.81555 30.0629 0,,
|
||||
-102.078 -2183.02 -205.287,244,crouch,2.98157 84.2804 0,,
|
||||
-606.513 -1827.04 -174.865,482,crouch,5.92041 99.6503 0,,
|
||||
306.375 -1802.35 -173.714,242,crouch,7.12891 158.01 0,,
|
||||
263.89 -1530.03 -175.875,242 216 217 511,stand,18.1757 4.3384 0,,
|
||||
371.653 -1518.27 -167.56,510 215 220,stand,29.574 10.5457 0,,
|
||||
343.52 -1779.81 -154.188,220,crouch,5.92041 40.0714 0,,
|
||||
332.07 -1669.08 -161.463,220,crouch,11.7871 -23.8141 0,,
|
||||
681.779 -1767.4 -159.875,241,crouch,6.26099 132.104 0,,
|
||||
488.916 -1447.78 -155.521,221,crouch,4.8822 -31.3947 0,,
|
||||
616.806 -1377.93 -175.875,213 215 214,stand,6.26099 15.7312 0,,
|
||||
701.501 -1483.42 -167.875,221 222 518,stand,65.6586 -73.8678 0,,
|
||||
696.267 -1378.93 -184.123,517 519,stand,56.6827 92.4048 0,,
|
||||
691.805 -1246.99 -179.795,518 520,stand,56.507 60.8081 0,,
|
||||
812.361 -1067.25 -198.232,519 521 522,stand,54.6118 85.1538 0,,
|
||||
812.733 -900.072 -191.875,520 204 549,stand,30.2661 93.9594 0,,
|
||||
675.467 -1048.85 -182.995,520 213 204,stand,63.9337 -156.913 0,,
|
||||
959.236 -2991.13 -172.825,48,crouch,4.01978 -42.9578 0,,
|
||||
497.136 -3640.94 -171.875,525 79,crouch,2.28943 -177.463 0,,
|
||||
497.373 -3542.16 -171.875,80 524,crouch,4.19006 -178.326 0,,
|
||||
648.875 -3573.13 -171.875,79,crouch,5.22827 -137.753 0,,
|
||||
778.559 -3648.16 -178.098,81 528 529,stand,34.754 -66.1005 0,,
|
||||
681.125 -3784.98 -175.565,527,crouch,6.0907 56.3147 0,,
|
||||
867.762 -3766.07 -145.146,527,crouch,11.9629 110.362 0,,
|
||||
912.696 -3489.89 -159.989,81,crouch,9.71619 126.248 0,,
|
||||
756.524 -3291.42 -200.053,81 227 532,stand,16.9672 129.698 0,,
|
||||
504.662 -3349.56 -171.875,531,crouch,9.88647 53.5517 0,,
|
||||
912.772 -3041.74 -174.854,227,crouch,9.88647 -142.933 0,,
|
||||
188.497 -2014.65 -349.766,107 535,stand,14.0338 15.9125 0,,
|
||||
388.105 -1976.82 -331.425,534 111 112,stand,18.0054 -19.3152 0,,
|
||||
1378.83 -1041 -330.299,211 226,crouch,5.22827 -123.24 0,,
|
||||
944.462 -1139.8 -337.486,211 225,prone,-0.814209 -94.7528 0,,
|
||||
1411.44 287.173 -324.862,208 540 543 207,stand,14.5502 137.306 0,,
|
||||
1055.32 620.96 -282.995,209 208,crouch,1.08093 -108.398 0,,
|
||||
1458.09 582.517 -320.84,538 541 542,stand,17.1429 95.8655 0,,
|
||||
1510.48 648.875 -316.107,540,crouch,5.92041 -119.274 0,,
|
||||
1288.83 628.161 -305.708,540 208,crouch,1.08093 -131.535 0,,
|
||||
1381.55 -110.874 -297.53,538 210 208,stand,10.2325 -91.4734 0,,
|
||||
2305.94 -1047.15 -183.783,33 545 34 29 31,stand,12.1332 -119.291 0,,
|
||||
2200.41 -1200.12 -217.675,544 27 34,stand,20.4279 -130.859 0,,
|
||||
1214.36 -856.622 -191.875,547 549 557,stand,43.1653 -175.389 0,,
|
||||
1215.39 -970.401 -191.875,548 546 28,stand,42.995 175.975 0,,
|
||||
1046.84 -964.808 -191.875,549 547 556,stand,43.8574 88.6066 0,,
|
||||
1056.22 -845.122 -191.875,521 548 546,stand,26.9385 171.487 0,,
|
||||
189.439 -4012.1 -163.875,551 553 77 76,stand,34.3597 173.729 0,,
|
||||
181.844 -3886.94 -163.875,552 550 555,stand,34.3597 -174.357 0,,
|
||||
25.0204 -3897.99 -163.875,553 78 551,stand,34.0137 -175.911 0,,
|
||||
33.0483 -4016.4 -163.875,552 550 554,stand,32.8052 38.5309 0,,
|
||||
-56.875 -4049.68 -163.875,553,crouch,6.90491 26.9678 0,,
|
||||
244.875 -3863.93 -163.875,551,crouch,9.84375 -151.56 0,,
|
||||
1024.17 -990.875 -191.875,548,crouch,4.83398 31.1206 0,,
|
||||
1249.26 -829.125 -191.875,546,crouch,4.6637 -150.17 0,,
|
||||
|
@@ -0,0 +1,581 @@
|
||||
580
|
||||
-3187.32 2925.31 9.37074,208 211 212 542,stand,,,
|
||||
-3772.5 2938.29 63.0821,2 211 217,stand,,,
|
||||
-3965.56 2964.16 56.8379,1 3 5 217,stand,,,
|
||||
-4497.38 2993.64 65.4669,2 4 215 216,stand,,,
|
||||
-4520.58 2624.51 45.6367,3 8 214,stand,,,
|
||||
-3989.56 2597.32 40.125,2 6 214,stand,,,
|
||||
-3985.85 2134.59 11.6665,5 7 84 82 140 218,stand,,,
|
||||
-4198.1 2212.79 14.4919,6 8 214 218,stand,,,
|
||||
-4542.39 2243.33 69.4697,7 4 218 229 537,stand,,,
|
||||
-5096.05 2111.33 80.125,226 228 229 227,stand,,,
|
||||
-5444.27 2007.12 82.8375,16 227 231 555,stand,,,
|
||||
-5353.27 1700.52 67.2601,12 224 540,stand,,,
|
||||
-5351.87 1111.37 14.6143,11 13,stand,,,
|
||||
-5325.88 594.46 -203.512,12 14 17 54,stand,,,
|
||||
-5462.57 621.925 -177.109,13 15 55 237,stand,,,
|
||||
-5452.43 1128.55 -10.669,14 234,stand,,,
|
||||
-5454.01 1693.62 84.125,10 234,stand,,,
|
||||
-5171.8 657.344 -209.978,13 54 239 240 241 55,stand,,,
|
||||
-4917.69 678.134 -191.875,19 240 258 261 262,stand,,,
|
||||
-4903.41 592.777 -191.875,18 20,stand,,,
|
||||
-4630.17 611.991 -57.875,19 21 23 273,stand,,,
|
||||
-4632.67 993.616 -57.875,20 22 269,stand,,,
|
||||
-4888.05 964.42 -57.875,21 270 271,stand,,,
|
||||
-4438.13 618.573 -57.875,20 272 273 274,stand,,,
|
||||
-4427.17 61.1358 -55.875,37 38 275,stand,,,
|
||||
-4199.75 61.7795 -55.875,37 279 291,stand,,,
|
||||
-4313.5 -874.538 23.0119,294 293 298,stand,,,
|
||||
-4277.26 -1374.07 8.125,28 298 301,stand,,,
|
||||
-4685.5 -1395.04 8.125,27 29 300,stand,,,
|
||||
-4689.99 -1056.02 -127.875,28 302 303 311 309 327,stand,,,
|
||||
-4270.54 -1361.81 -127.875,31 305 306 327 329,stand,,,
|
||||
-4018.16 -1394.63 -127.429,30 114 330 331,stand,,,
|
||||
-3856.04 -1075.52 -84.1968,33 114 331 346 544,stand,,,
|
||||
-3867.61 -689.185 -182.193,32 34 63 120 378,stand,,,
|
||||
-4285.27 -743.108 -151.875,33 310 322 323 497 498,stand,,,
|
||||
-4559.32 -355.429 -191.875,36 40 312 316 319,stand,,,
|
||||
-4306.45 -308.764 -191.875,35 37 43 313 318 319,stand,,,
|
||||
-4312.95 53.9123 -55.875,36 25 24,stand,,,
|
||||
-4811.02 46.0856 -55.875,24 39 40 278,stand,,,
|
||||
-4914.7 46.1336 -55.875,38 45 533,stand,,,
|
||||
-4821.68 -336.504 -191.875,38 35 41 316 320,stand,,,
|
||||
-4975.72 59.1073 -191.875,40 42 316 317 320,stand,,,
|
||||
-4556.74 64.4082 -191.875,41 43 316 318,stand,,,
|
||||
-4143.34 5.58951 -191.875,42 36 314,stand,,,
|
||||
-4595.74 -377.889 80.125,45 290,stand,,,
|
||||
-4916.99 -368.171 80.125,44 39 282,stand,,,
|
||||
-4732.28 1010.68 -191.875,48 255 256 268,stand,,,
|
||||
-4774.93 1277.42 -191.875,255 265 266 267,stand,,,
|
||||
-4495.21 976.329 -191.875,251 253 46 417,stand,,,
|
||||
-4488.28 1121.08 -217.332,50 251,stand,,,
|
||||
-4357.04 1134.38 -274.275,49 51 137,stand,,,
|
||||
-4485.64 1586.77 -220.837,50 52 140 567,stand,,,
|
||||
-5079.55 1532.14 -284.98,51 242 244 245 246,stand,,,
|
||||
-5178.72 1036.54 -268.004,241 242,stand,,,
|
||||
-5181.93 361.112 -195.437,17 55 134 240 13,stand,,,
|
||||
-5438.62 335.63 -193.638,54 14 56 58 237 17 389,stand,,,
|
||||
-5410.25 -248.453 -205.581,55 57 59 386 387 389 388 390 403,stand,,,
|
||||
-5719.91 -299.807 -159.416,56 58 386,stand,,,
|
||||
-5692.94 171.403 -155.744,57 55 237 238,stand,,,
|
||||
-5286.16 -776.007 -192.114,56 60 386 402 403 390 404 409,stand,,,
|
||||
-5281.37 -1280.62 -192.799,59 61 405 408 407 406 404 409,stand,,,
|
||||
-5278.87 -1697.63 -195.528,60 407 406 408 405 410 411,stand,,,
|
||||
-4841.79 -808.402 -147.698,325 312 402 404 495 496,stand,,,
|
||||
-3348.48 -680.715 -191.604,33 377 378 385,stand,,,
|
||||
-3003.79 -283.304 -235.262,65 377 564,stand,,,
|
||||
-2979.39 -64.7445 -251.214,64 66 375 578,stand,,,
|
||||
-3114.5 363.494 -296.324,65 67 132,stand,,,
|
||||
-3096.44 757.122 -339.583,66 68 136,stand,,,
|
||||
-2991.41 1093.93 -379.52,67 69 130,stand,,,
|
||||
-2985.23 1208.85 -360.764,68 371,stand,,,
|
||||
-3321.72 1443.21 0.124999,75 367 509,stand,,,
|
||||
-3221.21 901.728 -111.875,72 74 367 429 434,stand,,,
|
||||
-3592.02 852.833 -111.875,71 73 434,stand,,,
|
||||
-3574.51 511.577 -111.875,72 74,stand,,,
|
||||
-3239.15 522.985 -111.875,73 71,stand,,,
|
||||
-3318.06 1595.2 0.125002,70 76 83 561,stand,,,
|
||||
-3125.72 1598.81 0.125002,75 77 452,stand,,,
|
||||
-2812.88 1589.5 134.125,76 78 453 454,stand,,,
|
||||
-2835.92 1914.69 134.125,77 79 454 455,stand,,,
|
||||
-3296.91 1903.05 134.125,78 457 456,stand,,,
|
||||
-2930.74 1854.66 0.125002,447 449 450 452,stand,,,
|
||||
-3504.74 1862.45 0.125002,82 83 84 443 445 558 559,stand,,,
|
||||
-3910.48 1708.11 0.125002,81 6,stand,,,
|
||||
-3565.8 1599.37 0.125002,81 75 444,stand,,,
|
||||
-3615.39 2099.91 9.85866,81 6 491,stand,,,
|
||||
-3213.94 2541.38 38.9577,488 489 542,stand,,,
|
||||
-2608.52 2051.91 14.451,91 460 465 462 468,stand,,,
|
||||
-2610.1 2869.9 61.9561,204 193 205 206 212,stand,,,
|
||||
-2199.88 2794.01 67.8283,190 192 193 203 204,stand,,,
|
||||
-1994.08 2263.09 25.4813,186 189 190 199,stand,,,
|
||||
-1997.28 1827.26 24.125,91 162 163 164 186,stand,,,
|
||||
-2214.69 1977.74 24.125,90 86 166 167 504,stand,,,
|
||||
-2492.51 1487.02 28.8862,93 101 468 470,stand,,,
|
||||
-2170.41 1494.77 15.8199,92 100 153 152 503,stand,,,
|
||||
-1650.37 1825.65 24.125,149 158 161 162,stand,,,
|
||||
-1619.99 1232.21 24.125,96 99 141 148 151,stand,,,
|
||||
-1474.41 1179.87 24.125,95 99 173 141,stand,,,
|
||||
-1490.13 1664.27 160.125,98 173 174,stand,,,
|
||||
-2073.6 1735.73 158.125,97 170 171,stand,,,
|
||||
-1640.47 909.372 24.125,95 141 142 144 143 96,stand,,,
|
||||
-2090.81 1208.71 16.8285,93 147 152 153,stand,,,
|
||||
-2495.05 1179.81 20.125,92 102 104 471 565,stand,,,
|
||||
-2642.2 1059.74 20.125,101 103 473,stand,,,
|
||||
-2463.01 827.875 20.125,102 104 473 475 566,stand,,,
|
||||
-2386.82 1056.46 20.125,103 101 472,stand,,,
|
||||
-2057.8 778.501 14.0891,106 147 475 154 476,stand,,,
|
||||
-2063.8 525.44 -7.27555,105 107 108 125 126 361 476 478,stand,,,
|
||||
-2504.48 518.403 20.125,106 127 365 476,stand,,,
|
||||
-2207.5 241.214 -67.4658,106 361 375 478 479,stand,,,
|
||||
-2127.31 -108.857 -47.875,125 356 360 479,stand,,,
|
||||
-2317.83 -592.002 -27.4137,111 355 357,stand,,,
|
||||
-2403.83 -953.757 -41.7629,110 112 352,stand,,,
|
||||
-2714.42 -923.258 -76.9678,111 113 124 352 354 526,stand,,,
|
||||
-3258.12 -1119.61 -111.617,112 114 124 334 342,stand,,,
|
||||
-3604.46 -1342.89 -127.448,113 31 32 122 334,stand,,,
|
||||
-2980.97 -656.579 -31.875,116 121 526,stand,,,
|
||||
-2946.61 -367.327 -31.875,115 117 519,stand,,,
|
||||
-3126.27 -293.543 -31.875,116 483 484 527,stand,,,
|
||||
-3305.8 -460.968 -31.875,527 528,stand,,,
|
||||
-3564.5 -441.724 -31.875,120 528 579,stand,,,
|
||||
-3846.61 -256.125 -137.138,119 33 378 485 486,stand,,,
|
||||
-3201.08 -680.679 -53.875,115 341,stand,,,
|
||||
-3285.23 -1431.6 -91.8133,123 114 333,stand,,,
|
||||
-2972.81 -1393.11 -91.875,122 124 347,stand,,,
|
||||
-2967.1 -1040.45 -103.809,123 113 112 354,stand,,,
|
||||
-1745.47 67.934 -28.3741,109 106 361,stand,,,
|
||||
-1652.68 564.854 18.3053,106 361 362 363 364,stand,,,
|
||||
-2736.92 508.471 46.8293,107 366 502,stand,,,
|
||||
-2759.88 1019.05 46.125,129 502,stand,,,
|
||||
-2741.05 1442.88 112.125,128 501,stand,,,
|
||||
-3585.46 1147.44 -365.355,68 131,stand,,,
|
||||
-3800.97 606.885 -301.397,130 132 135 137,stand,,,
|
||||
-3672.29 376.449 -286.916,131 66 133,stand,,,
|
||||
-4141.69 364.517 -142.524,132 414 513 568,stand,,,
|
||||
-4648.14 351.178 -169.821,54 397 398 399 401 400,stand,,,
|
||||
-3485.22 592.322 -279.875,131 422 421 424 425 562,stand,,,
|
||||
-3276.84 758.317 -279.875,67 422 421 563,stand,,,
|
||||
-4149.42 819.163 -324.042,131 50,stand,,,
|
||||
-3711.21 1422.86 93.1427,508 511,stand,,,
|
||||
-4164.47 1462.14 70.1235,220 510 219,stand,,,
|
||||
-4316.12 1923.37 -80.0255,6 51 218,stand,,,
|
||||
-1713.23 1105.42 24.125,99 144 95 96 151,stand,,,
|
||||
-1531.5 837.172 24.125,99 145 143,stand,18.6975 153.067 0,,
|
||||
-1805.46 867.342 24.125,144 142 146 99,stand,12.309 66.0388 0,,
|
||||
-1801.74 1018.25 24.125,143 141 147 99,stand,13.6877 87.2809 0,,
|
||||
-1431.13 823.462 24.125,142,crouch,3.67371 157.725 0,,
|
||||
-1823.75 772.637 24.125,143,crouch,4.36584 77.6129 0,,
|
||||
-2061.84 1027.03 24.7231,144 100 105 152 154 475,stand,11.7871 82.1008 0,,
|
||||
-1626.3 1429.66 24.125,95 149 150 151,stand,12.309 87.973 0,,
|
||||
-1630.78 1588.12 24.125,148 94 155 156,stand,15.5884 73.8116 0,,
|
||||
-1790.5 1498.29 24.125,148,crouch,5.05798 -52.0532 0,,
|
||||
-1795.11 1223.06 24.125,95 152 148 141,stand,15.7587 93.4937 0,,
|
||||
-1961.77 1228.93 16.1241,151 100 153 147 93,stand,15.5884 101.783 0,,
|
||||
-1981.32 1502.11 32.4453,152 93 100,stand,17.6593 91.4227 0,,
|
||||
-2278.88 1197.78 32.1153,147 475 105,crouch,5.57434 -56.8872 0,,
|
||||
-1704.88 1551.13 24.125,149,crouch,4.71191 38.9465 0,,
|
||||
-1514.11 1614.1 24.125,149 157,stand,9.37012 96.9653 0,,
|
||||
-1531.01 1895.44 24.125,156 158 159,stand,14.0338 97.6575 0,,
|
||||
-1662.49 1876.41 24.125,157 94 162,stand,35.7922 -72.757 0,,
|
||||
-1431.13 1960.88 24.125,157,crouch,5.74463 -139.581 0,,
|
||||
-1832.88 1922.41 24.125,162,crouch,6.78284 -59.2877 0,,
|
||||
-1832.88 1710.47 24.125,162 94,crouch,4.53613 50.1801 0,,
|
||||
-1822.1 1806.64 24.125,160 161 94 90 158,stand,10.5786 42.2369 0,,
|
||||
-1871.13 1960.88 24.125,90,crouch,3.32764 -134.418 0,,
|
||||
-1973.13 1687.13 24.125,90,crouch,2.29492 109.556 0,,
|
||||
-2184.13 2128.88 24.125,166,crouch,3.84399 -129.578 0,,
|
||||
-2323.25 2085.93 24.125,91 165,crouch,0.740357 175.512 0,,
|
||||
-2309.5 1819.13 25.258,91 168,climb,-85 -89.8682 0,,
|
||||
-2306.74 1814.02 160.125,167 170,climb,85 90.39 0,,
|
||||
-2329.67 1734.52 158.125,170,crouch,11.9629 147.36 0,,
|
||||
-2292.7 1733.46 158.125,168 98 169,stand,51.5027 99.8767 0,,
|
||||
-2114.67 1686.9 160.125,98,prone,9.5459 -88.3301 0,,
|
||||
-1776.62 1696.87 160.125,174 173 176,stand,15.0665 -28.2513 0,,
|
||||
-1482.07 1492 160.125,96 174 97 172,stand,33.1995 -137.719 0,,
|
||||
-1752.06 1484.49 158.125,173 172 97 175,stand,18.8678 89.6759 0,,
|
||||
-1832.88 1504.88 158.125,174,crouch,14.726 -65.0226 0,,
|
||||
-1761.25 1829.98 160.125,172 178 177,stand,12.1332 51.8719 0,,
|
||||
-1774.67 2061.43 160.125,176 181 184,stand,15.7587 44.2749 0,,
|
||||
-1465.74 1821.89 160.125,176 180 179,stand,5.39856 -178.984 0,,
|
||||
-1431.13 1759.13 160.125,178,crouch,2.98157 157.017 0,,
|
||||
-1431.13 1857.75 160.125,178,crouch,3.84399 -154.638 0,,
|
||||
-1557.26 2039.88 160.125,177 182 183,stand,13.5175 0.933838 0,,
|
||||
-1431.13 2147.45 160.125,181,crouch,2.6355 -142.202 0,,
|
||||
-1431.13 1959.13 160.125,181,crouch,3.32764 -164.993 0,,
|
||||
-1831.22 2104.93 160.125,177 185,stand,11.441 -74.1742 0,,
|
||||
-1832.88 2152.88 160.125,184,crouch,7.2992 -72.0978 0,,
|
||||
-1988.68 2025.18 24.125,90 89 187 188,stand,12.309 83.4521 0,,
|
||||
-1871.13 1999.13 23.6312,186,crouch,1.08643 125.76 0,,
|
||||
-2120.88 1999.13 16.125,186,crouch,2.29492 49.4385 0,,
|
||||
-2181.6 2279.31 35.3852,89 190 200,stand,9.02954 93.642 0,,
|
||||
-2144.61 2566.79 56.9597,189 89 88 191 202,stand,12.309 -65.7257 0,,
|
||||
-1827.73 2557.96 95.0891,190 192 198,stand,12.655 85.6989 0,,
|
||||
-1852.51 2801.78 74.1399,191 88 197,stand,31.4746 115.741 0,,
|
||||
-2157.58 2995.11 70.3663,88 194 204 87 206,stand,19.2139 2.13135 0,,
|
||||
-1911.72 2995.29 88.2944,193 195 196,stand,27.3273 1.09314 0,,
|
||||
-1815.13 3072.88 87.6093,194,crouch,4.36584 -152.748 0,,
|
||||
-1815.13 2943.68 84.9489,194,crouch,3.15735 168.234 0,,
|
||||
-1815.13 2838.82 74.5166,192,crouch,4.8822 -136.17 0,,
|
||||
-1829.33 2497.26 83.1638,191,crouch,9.5459 -106.474 0,,
|
||||
-1815.13 2191.13 52.9961,89,crouch,7.2992 148.716 0,,
|
||||
-2301.55 2252.3 103.256,189 201 202,stand,13.6877 -176.759 0,,
|
||||
-2400.3 2248.76 138.942,200,crouch,6.43677 -177.621 0,,
|
||||
-2289.73 2473.97 74.1193,200 190 203,stand,17.8351 88.0939 0,,
|
||||
-2288.69 2680.89 76.5941,202 88 204,stand,11.2708 95.8667 0,,
|
||||
-2359.49 2834.31 78.6673,88 203 193 87 206,stand,14.8962 -165.718 0,,
|
||||
-2698.98 2767.13 75.4992,87,crouch,4.36584 37.3315 0,,
|
||||
-2609.49 3022.31 65.8625,87 207 193 204,stand,10.4083 154.742 0,,
|
||||
-2760.41 3065.86 70.1151,206,prone,-1.16028 -18.9569 0,,
|
||||
-3185.73 3104.06 12.8819,0 209 210 211 212,stand,13.5175 104.15 0,,
|
||||
-3278.62 3216.87 3.90667,208,crouch,2.98157 -74.5532 0,,
|
||||
-3107.19 3216.88 27.5433,208,crouch,6.43677 -117.548 0,,
|
||||
-3494.07 2931.8 36.1931,208 1 0 542,stand,25.2563 2.45544 0,,
|
||||
-2927.63 2897.26 50.3214,208 87 0 459 542,stand,13.8635 130.743 0,,
|
||||
-4201.6 2976.47 58.1459,214 216,stand,12.1332 -107.375 0,,
|
||||
-4220.02 2624.71 40.125,4 5 213 7,stand,7.64526 -93.5651 0,,
|
||||
-4626.3 3072.88 74.8081,3 216,crouch,6.43677 -42.1051 0,,
|
||||
-4294.07 3072.88 75.972,213 3 215,crouch,6.26648 -90.4559 0,,
|
||||
-3788.81 3072.88 56.8332,2 1,crouch,2.29492 -145.887 0,,
|
||||
-4254.27 2081.71 -12.6678,8 140 6 7,stand,32.5073 -82.359 0,,
|
||||
-4227.04 1397.94 38.9135,139,prone,24.0479 -131.265 0,,
|
||||
-4058.56 1213.75 7.66583,139,prone,8.68347 -91.8896 0,,
|
||||
-4533.93 1992.04 133.918,222 537,stand,42.005 123.245 0,,
|
||||
-4590.19 1870.25 140.61,221 223,stand,23.0151 91.994 0,,
|
||||
-4795.34 1741.9 148.851,222 538,stand,24.74 56.6125 0,,
|
||||
-5374.88 1776.87 85.2891,11,crouch,7.12891 -53.3771 0,,
|
||||
-5162.42 1826.3 84.1778,226,crouch,7.12891 -96.026 0,,
|
||||
-5108.16 1962.63 80.125,225 9 227 541 556,stand,24.2236 -99.646 0,,
|
||||
-5268.69 2062.67 80.125,226 10 9,stand,16.2805 161.752 0,,
|
||||
-5081.75 2321.96 80.125,9,crouch,1.94885 -103.458 0,,
|
||||
-4848.21 2183.01 80.125,9 8 230 557,stand,4.19006 12.2223 0,,
|
||||
-4767.13 2336.88 80.125,229,crouch,1.4325 -137.126 0,,
|
||||
-5425.91 2136.42 81.7482,10 232,stand,12.655 92.6862 0,,
|
||||
-5432.66 2252.07 80.125,231 233,stand,29.92 94.411 0,,
|
||||
-5435.53 2298.01 80.125,232,prone,-2.71484 -90.4999 0,,
|
||||
-5454.02 1413.23 84.125,16 235 236 15,stand,27.5031 -110.363 0,,
|
||||
-5600.99 1552.98 84.5467,234,crouch,8.50769 -50.7953 0,,
|
||||
-5601 1263 67.4258,234,crouch,6.43677 34.4971 0,,
|
||||
-5565.87 401.783 -159.416,55 58 14 238,stand,40.2802 15.1556 0,,
|
||||
-5804.88 315.065 -94.4433,58 237,crouch,12.1387 -2.98828 0,,
|
||||
-4991.13 911.275 -189.563,17 240 241,crouch,1.427 -125.568 0,,
|
||||
-5026.35 669.462 -199.875,18 17 239 241 54,stand,7.81555 9.28345 0,,
|
||||
-5157.59 863.319 -238.384,239 17 53 240,stand,7.12341 14.458 0,,
|
||||
-5155.91 1192.2 -285.687,52 53 247,stand,21.8011 -90.5273 0,,
|
||||
-4993.59 1135.13 -224.871,247,crouch,9.71619 127.722 0,,
|
||||
-5203.73 1526.75 -265.871,52,crouch,0.0482178 -38.8861 0,,
|
||||
-5110.4 1613.54 -269.254,52,crouch,-1.16028 -56.8433 0,,
|
||||
-5024.69 1437.22 -243.375,52 247 248,stand,9.5459 -83.7762 0,,
|
||||
-5032 1216.63 -221.875,243 246 242,stand,24.5642 -87.3962 0,,
|
||||
-4775.09 1451.84 -191.119,246 249,stand,27.5031 2.54333 0,,
|
||||
-4554.58 1452.79 -177.744,248 250 567,stand,64.104 -90.8679 0,,
|
||||
-4538.01 1240.88 -162.268,249 518,stand,20.4224 -88.1415 0,,
|
||||
-4543.43 1126.32 -191.875,49 48 518,stand,85 -73.4692 0,,
|
||||
-4494.65 751.15 -191.875,417,crouch,0.740357 87.4585 0,,
|
||||
-4576.88 878.018 -191.875,48,crouch,-3.2312 44.2932 0,,
|
||||
-4887.9 1074.07 -191.875,257 255 264,stand,26.4648 -4.56299 0,,
|
||||
-4762.63 1071.46 -191.875,254 46 47 268,stand,28.8818 -73.8043 0,,
|
||||
-4767.88 936.304 -191.875,46 257 262 263,stand,26.6406 -138.376 0,,
|
||||
-4896.49 925.786 -191.875,262 254 256 263,stand,15.5884 60.8716 0,,
|
||||
-4671.2 700.167 -191.875,18 259 261 262,stand,18.6975 -102.286 0,,
|
||||
-4673.53 600.301 -191.875,258 260,stand,16.6211 -106.774 0,,
|
||||
-4615.13 567.125 -191.875,259,crouch,1.427 128.218 0,,
|
||||
-4664.91 808.052 -191.875,258 263 18,stand,17.489 136.166 0,,
|
||||
-4825.81 801.957 -191.875,257 256 263 18 258,stand,15.9344 97.6648 0,,
|
||||
-4766.47 813.621 -191.875,256 262 261 257,stand,24.3939 -160.805 0,,
|
||||
-4952.88 1096.21 -191.875,254,crouch,5.92041 -33.0231 0,,
|
||||
-4617.26 1354.38 -191.875,47,crouch,2.81128 -123.677 0,,
|
||||
-4923.88 1362.47 -191.875,47,crouch,3.67371 -53.9246 0,,
|
||||
-4943.88 1210.2 -191.875,47,crouch,4.36584 -44.4269 0,,
|
||||
-4627.05 1096.38 -191.875,255 46,crouch,3.67371 -125.061 0,,
|
||||
-4615.13 1096.88 -57.875,21,crouch,18.8678 -136.624 0,,
|
||||
-4952.88 1019.04 -57.875,22,crouch,25.4321 -22.4982 0,,
|
||||
-4952.86 931.718 -57.875,22,crouch,23.7018 -87.7679 0,,
|
||||
-4379.98 710.112 -57.875,23,prone,2.46521 85.7446 0,,
|
||||
-4502.47 702.356 -57.875,23 20,prone,2.11914 80.7404 0,,
|
||||
-4432.31 382.861 -57.875,275 23 276,stand,33.5455 -1.44836 0,,
|
||||
-4432.42 309.768 -57.875,24 274 277,stand,33.5455 -1.44836 0,,
|
||||
-4407.13 376.441 -57.875,274,crouch,2.98157 3.8855 0,,
|
||||
-4407.13 309.934 -57.875,275,crouch,3.50342 0.0897217 0,,
|
||||
-4840.88 136.875 -55.875,38,crouch,6.78284 -59.3024 0,,
|
||||
-4079.13 136.875 -55.875,25,crouch,3.49792 -138.904 0,,
|
||||
-4079.13 -456.875 80.125,281 291,crouch,1.94885 147.015 0,,
|
||||
-4071.13 -336.721 80.125,280 291,crouch,12.6495 159.622 0,,
|
||||
-5032.88 -382.859 83.5837,45 283,climb,-85 -179.828 0,,
|
||||
-5036.36 -384.832 292.125,282 532,climb,85 0.0787354 0,,
|
||||
-4078.98 -165.007 352.125,487 530,crouch,20.7684 2.66602 0,,
|
||||
-5023.94 36.4267 6.125,533 534,stand,48.3936 16.9977 0,,
|
||||
-5018.47 117.34 56.125,534 535,stand,55.6445 -50.5078 0,,
|
||||
-4978.19 209.738 18.125,288 289 536,stand,-12.7289 -39.1095 0,,
|
||||
-4825.66 217.962 18.125,287,prone,23.1854 13.894 0,,
|
||||
-5036.09 222.588 18.125,287,crouch,16.4508 127.339 0,,
|
||||
-4303.19 -387.913 80.125,291 44 292,stand,25.4321 5.78613 0,,
|
||||
-4209.63 -369.945 80.125,281 280 290 25,stand,23.7018 82.4487 0,,
|
||||
-4293.9 -568.546 67.4301,293 297 290,stand,24.2236 -91.7889 0,,
|
||||
-4293.89 -721.553 45.2194,295 296 292 26,stand,23.7018 -89.0259 0,,
|
||||
-4336.88 -889.723 20.8077,26,crouch,16.2805 171.174 0,,
|
||||
-4239.13 -729.153 44.1161,293,crouch,15.2423 -1.6626 0,,
|
||||
-4336.88 -730.213 43.9623,293,crouch,18.6975 178.766 0,,
|
||||
-4336.87 -565.083 67.9328,292,crouch,18.6975 -171.742 0,,
|
||||
-4264.77 -1220.45 8.125,26 27 299,stand,21.8066 -92.6679 0,,
|
||||
-4200.64 -1232.18 12.125,298,prone,9.02405 2.64404 0,,
|
||||
-4784.88 -1464.88 8.125,28,crouch,4.53613 29.0662 0,,
|
||||
-4199.13 -1432.88 8.125,27,crouch,4.36584 127.487 0,,
|
||||
-4784.88 -999.125 -127.875,29 303,crouch,1.94885 -39.6478 0,,
|
||||
-4787.4 -1068 -127.875,302 29 304,stand,31.8207 46.1664 0,,
|
||||
-4783.36 -1279.58 -127.875,303 305 308,stand,9.02954 -21.5149 0,,
|
||||
-4614.81 -1369.27 -127.875,304 30 307 327 309,stand,18.3514 -139.964 0,,
|
||||
-4207.13 -1464.88 -127.875,30,crouch,2.46521 132.838 0,,
|
||||
-4752.34 -1464.87 -127.875,305,crouch,2.29492 43.2166 0,,
|
||||
-4792.88 -1331.95 -127.875,304,crouch,-0.643921 33.5431 0,,
|
||||
-4498.75 -1044.15 -127.875,29 310 326 327 305,stand,22.1472 179.277 0,,
|
||||
-4496.04 -917.945 -134.233,309 311 34 323 498 495,stand,23.0151 178.239 0,,
|
||||
-4634.96 -917.845 -134.244,29 310 495 498,stand,22.1472 -138.942 0,,
|
||||
-4564.77 -575.027 -191.896,35 322 324 325 62 497 496,stand,11.6168 88.8043 0,,
|
||||
-4167.78 -456.875 -191.875,36,crouch,1.60278 133.87 0,,
|
||||
-4144.39 82.9028 -191.875,43 315,stand,29.92 -91.7999 0,,
|
||||
-4080.01 89.7225 -191.875,314,crouch,-2.53906 -144.111 0,,
|
||||
-4691.33 -169.45 -191.875,42 40 35 41,stand,12.8253 -94.8981 0,,
|
||||
-5048.88 103.326 -191.875,41,crouch,1.25671 -46.2122 0,,
|
||||
-4427.7 -149.957 -191.875,42 36 319,stand,10.9247 -74.87 0,,
|
||||
-4477.27 -273.32 -191.875,318 35 36,stand,24.2236 -145.32 0,,
|
||||
-4953.77 -354.656 -191.875,40 321 41,stand,42.1808 -134.279 0,,
|
||||
-4990.68 -414.439 -191.875,320,crouch,2.29492 34.7571 0,,
|
||||
-4238.88 -495.125 -151.875,312 34 497,crouch,2.98157 -126.165 0,,
|
||||
-4202.91 -960.875 -138.867,34 310 498,crouch,6.43677 133.519 0,,
|
||||
-4787.7 -495.125 -150.294,312 325,crouch,9.02954 -45.542 0,,
|
||||
-4764.92 -619.03 -153.017,324 312 62 496 495,stand,16.2805 -92.5086 0,,
|
||||
-4364.95 -1055.04 -127.875,309 327 328,stand,23.7018 -54.8584 0,,
|
||||
-4376.99 -1287.75 -127.875,326 30 29 309 305,stand,20.2521 -83.3459 0,,
|
||||
-4207.13 -999.125 -127.875,326,crouch,3.84949 -143.617 0,,
|
||||
-4199.13 -1245.38 -127.875,30,crouch,5.22827 -140.327 0,,
|
||||
-4160.88 -1504.88 -103.191,31,crouch,3.84949 44.4305 0,,
|
||||
-4012.6 -1139.1 -92.1957,32 31 332 346,stand,8.50769 -131.34 0,,
|
||||
-4160.88 -1101.9 -86.0596,331,crouch,4.36584 -31.7212 0,,
|
||||
-3207.13 -1544.88 -91.875,122,crouch,2.29492 137.672 0,,
|
||||
-3504.21 -1122.22 -94.2779,114 113 545,stand,7.64526 34.3671 0,,
|
||||
-3470.76 -1015.8 -43.2725,545 546,stand,46.3226 81.3336 0,,
|
||||
-3466 -917.919 41.5677,337 340,stand,36.3086 -108.246 0,,
|
||||
-3595.29 -987.266 17.8742,336 339 546,stand,37.0007 -34.5172 0,,
|
||||
-3731.93 -954.491 -18.9365,339 544,stand,49.6021 175.607 0,,
|
||||
-3586.61 -856.814 -5.89674,338 337,stand,21.9769 -72.3431 0,,
|
||||
-3355.76 -868.732 10.1081,336 543,stand,51.1566 29.1815 0,,
|
||||
-3242.77 -846.482 -33.2323,121 342 543,stand,47.0148 54.3842 0,,
|
||||
-3250.29 -992.843 -87.2976,113 341,stand,0.910645 94.9567 0,,
|
||||
-4125.15 -1013.72 45.3776,344,prone,5.74463 27.973 0,,
|
||||
-4035.75 -979.851 15.5485,343 345,stand,59.6161 37.1246 0,,
|
||||
-3981.64 -894.407 -35.5925,344 346,stand,34.408 -62.8455 0,,
|
||||
-3981.18 -1069.71 -76.7067,345 331 32,stand,56.3367 -104.28 0,,
|
||||
-2972.96 -1452.56 -91.875,123 348,stand,46.1523 30.0604 0,,
|
||||
-2879.13 -1464.88 -91.4473,347,crouch,5.92041 151.443 0,,
|
||||
-2763.56 -1246.62 -90.5553,350 351 354,stand,11.9629 -99.6057 0,,
|
||||
-2818.88 -1392.87 -83.9865,349,crouch,-1.50085 70.2924 0,,
|
||||
-2727.13 -1392.88 -77.3095,349,crouch,7.30469 107.415 0,,
|
||||
-2616.36 -1031.49 -81.3076,111 112 353 354,stand,10.238 -2.2229 0,,
|
||||
-2511.13 -1088.88 -55.0857,352,crouch,8.16711 144.192 0,,
|
||||
-2721.06 -1108.66 -86.9742,352 349 112 124,stand,17.1429 -128.961 0,,
|
||||
-2220.49 -832.872 -25.1348,110,crouch,3.50342 112.93 0,,
|
||||
-2321.65 -263.656 -47.8912,109 357 358,stand,11.4465 -98.2379 0,,
|
||||
-2288.4 -483.598 -46.9376,356 110 359,stand,10.4083 -84.9445 0,,
|
||||
-2580.8 -257.291 -53.7532,356,crouch,0.394287 -0.52002 0,,
|
||||
-2143.13 -560.875 -27.4812,357,crouch,2.98706 149.18 0,,
|
||||
-1999.13 -144.875 -46.7604,109,crouch,2.64099 134.161 0,,
|
||||
-1796.02 363.312 -2.4631,125 126 106 108,stand,4.54163 98.9392 0,,
|
||||
-1423.13 506.246 64.125,126,crouch,8.16711 178.881 0,,
|
||||
-1615.13 688.875 31.0398,126,crouch,7.12891 -133.466 0,,
|
||||
-1583.13 399.125 29.4743,126,crouch,4.01978 139.166 0,,
|
||||
-2536.06 356.931 53.1552,107,crouch,13.8635 -128.802 0,,
|
||||
-2717.49 343.241 20.5919,127,crouch,14.2096 -167.314 0,,
|
||||
-3290.49 1374.33 0.125001,70 373 71,stand,28.0194 149.696 0,,
|
||||
-3007.46 1373.48 -127.875,369 373,stand,41.3184 -5.87036 0,,
|
||||
-3011.6 1288.08 -127.875,368 370,stand,58.4076 -171.456 0,,
|
||||
-3196.17 1294.36 -255.875,369 371 499,stand,54.2658 -161.613 0,,
|
||||
-3193.93 1207.46 -255.875,370 69,stand,37.171 -2.07458 0,,
|
||||
-3215.04 1356.88 -188.146,499,crouch,14.2096 -80.4675 0,,
|
||||
-3096.6 1377.61 -57.0119,368 367 500,stand,33.1995 -174.922 0,,
|
||||
-3089.88 1441.57 -20.1093,500 501,stand,-0.12207 -7.95776 0,,
|
||||
-2751.69 -41.6566 -227.542,108 65,stand,18.3514 -162.969 0,,
|
||||
-3351.63 -457.047 -170.337,377,crouch,12.655 -14.4946 0,,
|
||||
-3230.2 -520.888 -185.968,376 63 64,stand,21.4606 -21.7401 0,,
|
||||
-3659.11 -511.309 -169.504,120 63 33,stand,3.50342 138.655 0,,
|
||||
-3792.34 4.63995 -43.2408,380 384 382 529,stand,46.1523 84.2175 0,,
|
||||
-3697.36 13.9255 -23.8532,379 381,stand,39.9341 102.339 0,,
|
||||
-3666.15 146.854 13.1011,380,prone,4.8822 86.283 0,,
|
||||
-3772.08 121.429 -3.3447,379,crouch,13.1714 94.2261 0,,
|
||||
-3878.63 138.207 17.2908,384,prone,4.8822 90.0677 0,,
|
||||
-3895.06 21.622 -23.8711,383 379 577,stand,46.6687 -22.8552 0,,
|
||||
-3405.56 -814.744 -164.774,63,crouch,9.02954 66.1469 0,,
|
||||
-5510.63 -543.362 -196.623,57 59 56 390 409,stand,13.4692 -50.3827 0,,
|
||||
-5124.71 -190.819 -192.308,56 388 389 390,stand,6.38855 86.3806 0,,
|
||||
-5124.86 6.57426 -183.31,387 389 56 553,stand,15.5402 104.162 0,,
|
||||
-5330.82 50.5256 -189.592,388 55 56 387,stand,15.3699 128.678 0,,
|
||||
-5242.34 -284.983 -199.962,387 56 391 403 386 59,stand,32.1185 170.97 0,,
|
||||
-5088.66 -288.208 -105.875,390,crouch,15.7104 140.752 0,,
|
||||
-5131.5 122.512 -104.481,393 553,stand,53.8715 -131.187 0,,
|
||||
-5127.86 210.227 -84.875,392 396 552 554,stand,13.1232 88.2593 0,,
|
||||
-5304.47 199.134 -84.875,552,crouch,9.66797 87.2266 0,,
|
||||
-5195 224.176 -84.875,552,crouch,12.7771 87.5726 0,,
|
||||
-5023.54 216.116 -78.875,393 549,stand,20.0281 2.62086 0,,
|
||||
-4699.09 217.146 -173.452,134 399 398 547,stand,36.7767 41.6388 0,,
|
||||
-4453.89 351.205 -153.196,399 134 397 400 401 568,stand,21.2366 -158.307 0,,
|
||||
-4453.13 175.125 -161.661,398 397 134,crouch,6.21826 129.529 0,,
|
||||
-4427.13 528.875 -166.881,398 401 134,crouch,4.48792 -132.923 0,,
|
||||
-4800.88 528.875 -168.234,134 400 398,crouch,3.97156 -31.0522 0,,
|
||||
-5134.43 -705.08 -176.033,62 403 59 404 412,stand,5.69641 15.0409 0,,
|
||||
-5240.02 -535.359 -184.951,402 390 59 56,stand,39.1937 98.949 0,,
|
||||
-5125.19 -797.784 -173.728,62 59 402 409 405 60 408 413,stand,26.2463 176.655 0,,
|
||||
-5159.8 -1259.75 -192.859,406 404 60 61 409,stand,16.0565 -89.5929 0,,
|
||||
-5175.49 -1683.3 -196.446,61 405 60,stand,25.7245 -170.749 0,,
|
||||
-5454.19 -1659.07 -164.936,408 61 60,stand,20.3741 93.0768 0,,
|
||||
-5448.82 -1259.49 -169.266,409 407 60 61 404,stand,16.2323 82.8925 0,,
|
||||
-5403.53 -825.202 -192.112,404 59 408 60 405 386,stand,18.6493 46.1157 0,,
|
||||
-5071.13 -2008.87 -92.9949,61,crouch,7.94312 111.737 0,,
|
||||
-5456.87 -2012.87 -82.7882,61,crouch,11.3983 59.7608 0,,
|
||||
-4959.13 -607.667 -146.688,402,crouch,9.15161 -139.328 0,,
|
||||
-4985.13 -959.355 -161.258,404,crouch,7.42676 133.138 0,,
|
||||
-4132.71 588.633 -194.047,133 415 418,stand,56.2885 133.474 0,,
|
||||
-4157.74 684.304 -213.875,414 515,stand,72.2229 145.042 0,,
|
||||
-4415.94 856.338 -193.985,417 517,stand,34.2377 151.431 0,,
|
||||
-4491.06 863.254 -191.875,416 252 48,stand,71.701 -169.03 0,,
|
||||
-4222.96 621.004 -151.087,414 514 515,stand,85 114.995 0,,
|
||||
-4238.9 506.038 -79.1452,420 513 515,stand,79.6497 -145.206 0,,
|
||||
-4368.88 528.875 -63.3122,419,crouch,13.5175 -44.3677 0,,
|
||||
-3505.52 783.677 -279.875,135 136,stand,23.0151 -80.6225 0,,
|
||||
-3317.25 579.231 -279.875,136 135 423 425 512,stand,28.5413 -119.992 0,,
|
||||
-3304.32 504.425 -279.875,422,crouch,5.05798 132.952 0,,
|
||||
-3546.07 504.425 -279.875,135,crouch,5.05798 49.3787 0,,
|
||||
-3423.34 694.175 -277.785,426 135 422,climb,-85 92.0276 0,,
|
||||
-3425.36 700.625 -111.875,425 427,climb,85 -90.307 0,,
|
||||
-3421.52 756.415 -111.875,426 428 429,stand,54.1638 -60.6055 0,,
|
||||
-3508.39 694.437 -111.875,427 430 432,stand,36.8988 -21.582 0,,
|
||||
-3354.64 721.133 -111.875,427 430 71 433,stand,37.2449 169.036 0,,
|
||||
-3412.62 613.52 -111.875,428 429 431,stand,33.2733 164.197 0,,
|
||||
-3501.37 601.658 -111.875,430,crouch,6.68089 44.5447 0,,
|
||||
-3493.99 752.184 -111.875,428,crouch,7.20274 -35.7434 0,,
|
||||
-3338.79 614.588 -111.875,429,crouch,8.58152 123.97 0,,
|
||||
-3382.69 830.79 -108.659,435 71 72,climb,-85 -103.414 0,,
|
||||
-3385.29 824.704 8.125,434 436 442,climb,85 74.0869 0,,
|
||||
-3293.21 761.062 -3.87502,435 437,stand,37.5171 145.212 0,,
|
||||
-3256.42 641.571 -3.87501,436 438,stand,46.3226 -121.036 0,,
|
||||
-3328.35 532.875 -3.87501,437 439,stand,39.7583 -138.987 0,,
|
||||
-3455.48 507.268 -3.87502,438 440,stand,36.4789 168.871 0,,
|
||||
-3562.55 576.849 -3.87502,439 441,stand,33.8916 116.906 0,,
|
||||
-3589.43 712.526 -3.87502,440 442,stand,24.0479 81.5137 0,,
|
||||
-3504.63 823.736 -3.87502,441 435,stand,25.9485 13.6566 0,,
|
||||
-3740.88 1960.88 8.125,81,crouch,6.26101 -40.7519 0,,
|
||||
-3740.88 1500.69 8.125,83,crouch,4.53615 30.0439 0,,
|
||||
-3330.41 1853.66 0.125,81 446 447,stand,34.9243 24.5233 0,,
|
||||
-3290.98 1960.88 0.125,445,crouch,4.71193 -136.053 0,,
|
||||
-3146.15 1853.17 0.125,445 80 448 452 450,stand,27.5031 164.725 0,,
|
||||
-3187.21 1960.88 0.125,447,crouch,6.09072 -56.2866 0,,
|
||||
-2787.13 1960.88 8.125,80,crouch,5.39858 -144.001 0,,
|
||||
-2909.38 1716.92 0.125001,80 451 452 447,stand,10.5786 -80.8081 0,,
|
||||
-2793.7 1495.13 0.125,450,crouch,2.11916 140.544 0,,
|
||||
-3076.9 1675.7 0.125,450 76 80 447 560,stand,32.1613 -134.685 0,,
|
||||
-2787.13 1495.13 134.125,77,crouch,14.8963 137.254 0,,
|
||||
-2780.98 1739.12 134.125,77 78,crouch,18.3515 -22.2784 0,,
|
||||
-2787.13 1960.88 134.125,78,crouch,9.89199 -130.719 0,,
|
||||
-3349.11 1950.53 134.125,457 79,crouch,23.7018 179.041 0,,
|
||||
-3340.43 1885.35 134.125,79 456,crouch,25.4321 -144.183 0,,
|
||||
-3177.23 1999.13 22.091,490,crouch,8.16164 122.752 0,,
|
||||
-2955.71 2767.13 69.6667,212,crouch,12.6496 140.698 0,,
|
||||
-2597.13 2241.24 25.036,86 461 462 465,stand,11.7871 90.4633 0,,
|
||||
-2439.13 2352.88 54.6639,460,crouch,15.2423 -138.668 0,,
|
||||
-2789.02 2315.47 43.153,460 463 464 86,stand,80.5121 -151.791 0,,
|
||||
-2847.9 2342.88 42.5498,462,crouch,10.4083 -31.9464 0,,
|
||||
-2838.46 2197.64 30.7264,462 465,stand,33.7158 -178.196 0,,
|
||||
-2846.13 2097.62 21.4159,86 466 464 467 460,stand,41.6589 177.14 0,,
|
||||
-2995.29 2159.1 18.8329,465 489 490,stand,15.9345 0.666518 0,,
|
||||
-3032.88 1999.13 21.0202,465,crouch,7.99135 35.7239 0,,
|
||||
-2544.95 1748.61 14.0347,86 92 469,stand,29.0576 -119.332 0,,
|
||||
-2736.88 1664.85 19.8394,468,crouch,8.16164 45.7379 0,,
|
||||
-2664.88 1327.13 20.4871,92,crouch,8.16164 47.4628 0,,
|
||||
-2664.88 1280.88 28.125,101,crouch,11.2708 -41.1145 0,,
|
||||
-2336.47 1275.47 20.125,104,crouch,8.85378 -134.877 0,,
|
||||
-2629.44 848.346 20.125,103 102 474,stand,45.9766 177.299 0,,
|
||||
-2661.05 717.467 20.125,473,crouch,5.74465 69.3805 0,,
|
||||
-2190.1 797.045 12.2344,105 154 147 103 476,stand,19.3897 168.483 0,,
|
||||
-2201.81 638.002 11.6019,475 106 105 107 477 478,stand,37.0007 -128.324 0,,
|
||||
-2475.26 656.875 20.125,476,crouch,10.9302 -34.7479 0,,
|
||||
-2240.93 387.001 -35.5065,108 476 106,stand,28.7115 -67.5531 0,,
|
||||
-2152.65 76.9258 -51.5558,109 108 480,stand,63.8373 -129.324 0,,
|
||||
-2188.49 48.7122 -57.8326,479 481,climb,-85 -143.298 0,,
|
||||
-2338.06 -47.4618 14.2347,525 480,stand,39.7583 -170.418 0,,
|
||||
-2526.38 -135.125 -30.6857,524 525,stand,28.3655 -166.787 0,,
|
||||
-3081.91 -258.496 -31.875,117,crouch,10.5786 58.8995 0,,
|
||||
-2998.82 -306.516 -31.875,117,crouch,10.0623 63.739 0,,
|
||||
-3765.96 -92.3018 -137.302,120 486 529,stand,74.1974 -92.6953 0,,
|
||||
-4024.88 -158.733 -110.837,487 485 120,climb,-85 -179.696 0,,
|
||||
-4028.83 -158.597 356.125,486 284,climb,85 1.60036 0,,
|
||||
-3269.54 2254.17 27.4402,491 489 493 492 85 505,stand,35.5682 -3.47533 0,,
|
||||
-3149.62 2258.33 32.0801,488 466 85 490,stand,35.9143 -70.4645 0,,
|
||||
-3141.42 2106.54 16.3253,466 491 458 489 506,stand,33.327 177.821 0,,
|
||||
-3290.03 2107.74 16.0252,488 490 84 492 493,stand,14.3317 100.12 0,,
|
||||
-3426.54 2102.21 9.09856,491 493 488,stand,20.3741 108.398 0,,
|
||||
-3432.46 2256.74 29.0308,488 492 491 494,stand,21.7584 91.6498 0,,
|
||||
-3552.88 2336.88 37.6947,493,crouch,10.3601 -33.7042 0,,
|
||||
-4615.31 -832.437 -143.202,496 498 311 62 310 325,stand,38.6774 94.2316 0,,
|
||||
-4609.85 -662.628 -164.04,497 495 312 325 62,stand,27.4548 15.6684 0,,
|
||||
-4476.79 -656.475 -165.441,34 496 498 312 322,stand,22.099 -77.5671 0,,
|
||||
-4469.02 -824.53 -147.295,495 497 34 310 323 311,stand,20.5444 -55.2978 0,,
|
||||
-3206.88 1311.88 -255.875,370 372,climb,-42.8027 91.7523 0,,
|
||||
-3093.34 1391.87 -60.2716,373 374,climb,-16.6937 82.0074 0,,
|
||||
-2775.14 1439.68 55.0415,129 374,climb,-28.1921 -2.59827 0,,
|
||||
-2749.79 872.125 19.0997,128 127,climb,-17.2827 -91.4996 0,,
|
||||
-2176.74 1661.87 24.125,93 504,climb,7.99683 85.5121 0,,
|
||||
-2180.27 1706.13 24.125,503 91,climb,17.912 -88.0518 0,,
|
||||
-3247.23 2190.58 24.2491,488,claymore,27.8271 -89.4305 0,,
|
||||
-3175.15 2176.07 22.8327,490,claymore,14.6051 92.6074 0,,
|
||||
-3407.87 1433.67 -11.3587,508 509,climb,-33.9765 -175.384 0,,
|
||||
-3448.55 1426.58 52.5877,138 507,stand,72.2778 26.9733 0,,
|
||||
-3406.13 1432.92 0.125001,507 70,climb,12.7869 -0.289292 0,,
|
||||
-3922.01 1456.11 126.125,139 511,stand,42.038 -1.11327 0,,
|
||||
-3863.87 1468.51 70.125,510 138,climb,-24.3909 -178.85 0,,
|
||||
-3395.05 640.259 -279.875,422,claymore,22.0428 111.766 0,,
|
||||
-4239.01 437.803 -120.543,419 133,climb,0.229492 92.4957 0,,
|
||||
-4214.4 567.125 -151.59,418,climb,-45.3748 -93.0688 0,,
|
||||
-4204.06 688.514 -227.207,419 418 415 516,climb,-44.5508 -101.891 0,,
|
||||
-4224.77 730.305 -228.521,515 517,climb,-8.36182 173.745 0,,
|
||||
-4281.19 772.785 -185.875,516 416,stand,63.0219 -64.4659 0,,
|
||||
-4535.55 1160.87 -191.875,251 250,climb,-18.4418 84.679 0,,
|
||||
-2922.7 -350.417 -31.875,116 520,climb,9.65027 55.5396 0,,
|
||||
-2902.83 -317.582 -77.9178,519 521,climb,-52.4829 -119.714 0,,
|
||||
-2873.16 -230.117 -62.6655,520 522,stand,45.6744 -104.691 0,,
|
||||
-2799.52 -242.159 -61.9572,521 523,climb,5.18982 12.237 0,,
|
||||
-2694.67 -218.745 -25.875,522 524,stand,42.2028 11.2482 0,,
|
||||
-2600.94 -169.877 -78.4842,523 482,climb,-4.23096 23.6463 0,,
|
||||
-2404.66 -74.9213 -52.4642,482 481,climb,-29.3457 21.828 0,,
|
||||
-2911.36 -749.185 -31.875,115 112,stand,18.4064 -59.1437 0,,
|
||||
-3215.99 -402.809 -31.875,117 118,stand,35.5945 -138.454 0,,
|
||||
-3435.92 -478.232 -31.875,118 119,stand,27.6624 -177.615 0,,
|
||||
-3764.63 -52.1251 -124.905,485 379,climb,-58.9264 92.984 0,,
|
||||
-5016.11 -160.597 352.125,531 284 532,stand,53.7714 -152.978 0,,
|
||||
-5063.09 -175.91 352.125,530,crouch,32.9523 118.769 0,,
|
||||
-5031.58 -306.616 310.644,530 283,stand,59.7205 -83.3466 0,,
|
||||
-4970.87 29.9137 -55.875,285 39,climb,-41.2439 174.431 0,,
|
||||
-5021.01 64.8557 6.125,285 286,climb,-23.2318 87.8589 0,,
|
||||
-4974.59 132.25 56.125,286 536,climb,26.0089 91.1713 0,,
|
||||
-4976.78 177.133 18.125,535 287,climb,-37.937 -88.7848 0,,
|
||||
-4524.95 2041.13 70.5424,221 8,climb,-31.8231 -91.0565 0,,
|
||||
-4868.13 1754.27 77.2884,223 540,climb,-47.8522 2.66238 0,,
|
||||
-5132.04 1776.1 81.8335,540 541,climb,5.35461 91.8329 0,,
|
||||
-5118.28 1732.82 80.7458,539 538 11,stand,40.5493 135.119 0,,
|
||||
-5133.9 1815.13 81.5885,539 226,climb,16.9232 -86.3928 0,,
|
||||
-3207.13 2745.32 28.4496,211 85 0 212,stand,25.6793 100.99 0,,
|
||||
-3296.87 -866.561 -32.0511,341 340,climb,-6.37878 176.636 0,,
|
||||
-3780.97 -1020.82 -77.0348,32 338,climb,-6.37878 75.0714 0,,
|
||||
-3490.16 -1085.13 -89.2011,334 335,climb,-9.021 78.0268 0,,
|
||||
-3516.66 -1014.04 -43.3758,335 337,climb,-17.4475 172.218 0,,
|
||||
-4745.87 214.204 -178.211,397 548,climb,-18.1769 178.835 0,,
|
||||
-4794.88 215.405 -135.875,547 549,climb,-24.4556 176.688 0,,
|
||||
-4884.14 225.135 -78.875,548 550 551 396,stand,47.7576 -170.065 0,,
|
||||
-4839.74 199.088 -78.875,549,crouch,15.5994 22.2784 0,,
|
||||
-4959.96 208.962 -78.875,549,claymore,27.6569 6.63943 0,,
|
||||
-5225.6 190.322 -84.875,393 394 395,stand,40.5493 6.97452 0,,
|
||||
-5125.36 77.4415 -166.091,388 392,climb,-21.2543 91.3495 0,,
|
||||
-5156.71 166.712 -84.875,393,claymore,54.0955 -73.2312 0,,
|
||||
-5369.3 2000.59 80.125,10,claymore,18.2416 -120.275 0,,
|
||||
-5157.23 1882.74 84.0402,226,claymore,21.543 -90.1996 0,,
|
||||
-4721.98 2191.74 80.125,229,claymore,19.895 18.2025 0,,
|
||||
-3674.94 1787.49 0.125013,81,claymore,17.0825 -161.913 0,,
|
||||
-3579.3 1902.73 0.125013,81,claymore,21.543 89.5258 0,,
|
||||
-3136.73 1722.3 0.124998,452,claymore,20.3894 104.5 0,,
|
||||
-3282.32 1540.58 0.124998,75,claymore,14.4403 -116.699 0,,
|
||||
-3550.33 616.679 -279.875,135,claymore,23.526 -149.251 0,,
|
||||
-3288.72 782.513 -279.875,136,claymore,34.4354 -22.2437 0,,
|
||||
-3027.28 -292.136 -235.478,64,claymore,22.702 61.3074 0,,
|
||||
-2543.13 1248.4 20.125,101,claymore,11.9629 69.7339 0,,
|
||||
-2368.32 875.773 20.125,103,claymore,13.2813 -17.514 0,,
|
||||
-4569 1513.19 -221.938,51 249,climb,-6.87864 -91.3147 0,,
|
||||
-4294.58 342.022 -126.873,133 398 569,stand,33.9355 170.05 0,,
|
||||
-4295.46 271.125 -126.822,568 570,climb,-19.2712 -90.8093 0,,
|
||||
-4232.13 221.334 -63.8096,569 571 572,climb,-7.20823 -1.74316 0,,
|
||||
-4134.6 227.218 -13.875,570 573 574,stand,37.4072 -159.88 0,,
|
||||
-4368.88 175.125 -64.1503,570,crouch,9.31519 50.0793 0,,
|
||||
-4157.64 194.08 -15.6089,571,claymore,35.589 166.578 0,,
|
||||
-4029.11 226.326 -36.3715,571 575,stand,84.8352 -80.2954 0,,
|
||||
-4002 195.125 -33.875,574 576,climb,-43.0621 -84.0967 0,,
|
||||
-3997.52 127.574 41.235,575 577,stand,58.3966 -1.474 0,,
|
||||
-3998.42 66.8738 0.646212,576 384,climb,-4.23096 91.0584 0,,
|
||||
-3016.2 38.3473 -253.225,65,claymore,8.8208 -69.9902 0,,
|
||||
-3527.97 -422.508 -31.875,119,claymore,36.9128 168.226 0,,
|
||||
|
@@ -0,0 +1,441 @@
|
||||
440
|
||||
662.204 3243.67 61.3399,66 67 366 367,stand,,,
|
||||
988.652 3170.22 64.125,2 4 367 378,stand,,,
|
||||
1519.3 3337.74 64.125,1 7 370,stand,,,
|
||||
1451.09 3092.68 66.125,371 377 378,stand,,,
|
||||
1013.96 2912 64.125,1 5 372,stand,,,
|
||||
980.717 2461.36 58.6455,4 6 68 368,stand,,,
|
||||
1491.09 2417.39 50.2044,5 8 369 379,stand,,,
|
||||
1608.44 2903.71 60.1152,2 369 370 371 379,stand,,,
|
||||
1557.38 2108.14 -7.875,6 9 380 72,stand,,,
|
||||
1750.96 1891.7 -77.9324,8 10 161 72 76,stand,,,
|
||||
2232.26 1909.96 -111.875,9 11,stand,,,
|
||||
2290.17 1423.5 -94.7318,10 12 161 162,stand,,,
|
||||
2259.22 897.213 -81.5851,11 13 162 161,stand,,,
|
||||
2134.88 375.007 6.65001,12 14 162,stand,,,
|
||||
2005.64 46.7155 11.6756,13 15 381,stand,,,
|
||||
1435.96 168.186 9.11336,14 16 138 163 383,stand,,,
|
||||
1425.78 -391.987 22.1165,15 17 96 220 221,stand,,,
|
||||
1541.05 -406.838 28.125,16 18 166,stand,,,
|
||||
1704.97 -470.792 36.125,17 206 207,stand,,,
|
||||
1598.84 -829.87 34.2187,20 96 97 207 211,stand,,,
|
||||
1935.21 -931.889 35.4596,19 167 199 209,stand,,,
|
||||
2414.8 -763.585 86.419,188 198 199 200,stand,,,
|
||||
2720.25 -1192.77 136.979,127 186 190 195,stand,,,
|
||||
2615.21 -1770.78 188.614,24 182 184 125 195,stand,,,
|
||||
2834.48 -2318.69 192.125,23 25 181 184,stand,,,
|
||||
3047.58 -2562.91 192.125,24 177 178,stand,,,
|
||||
2814.12 -2805.38 204.125,27 176 178 180,stand,,,
|
||||
2444.7 -2947.06 204.125,26 28 131 137 176,stand,,,
|
||||
2225.48 -3280.24 204.125,27 29 176 325,stand,,,
|
||||
2073.17 -3449.94 192.125,28 175 324,stand,,,
|
||||
1731.4 -2997.02 192.125,117 309 313 314 324,stand,,,
|
||||
560.248 -3183.21 192.439,32 307 311 315,stand,,,
|
||||
534.208 -2801.87 181.236,31 111 317,stand,,,
|
||||
271.11 -2634.65 144.125,34 35 110 317,stand,,,
|
||||
2.06714 -3043.16 126.803,33 316,stand,,,
|
||||
88.4084 -2506.82 92.3224,33 36 86,stand,,,
|
||||
-326.292 -2764.37 103.761,35 37 320,stand,,,
|
||||
-687.325 -2331.41 51.1682,36 38 321,stand,,,
|
||||
-564.449 -2033.39 23.1858,37 39 85 86 321,stand,,,
|
||||
-807.966 -1619.84 7.95138,38 40 144 322,stand,,,
|
||||
-866.814 -1397.37 8.125,39 41 42,stand,,,
|
||||
-977.182 -1369.95 16.125,40 331,stand,,,
|
||||
-789.59 -990.079 16.125,40 43 335,stand,,,
|
||||
-589.444 -752.508 18.125,42 44 82 83 254,stand,,,
|
||||
-1034.2 -522.921 8.0284,43 45 146 174 418,stand,,,
|
||||
-1287.01 -1033.93 16.125,44 46 336,stand,,,
|
||||
-1693.1 -872.36 32.125,45 174 337 339,stand,,,
|
||||
-1776.71 -287.069 25.8622,48 339 340,stand,,,
|
||||
-1942.85 164.702 31.8089,47 340 341,stand,,,
|
||||
-1576.35 607.832 8.125,50 53 341 353,stand,,,
|
||||
-1695.62 368.182 180.125,49 51,stand,,,
|
||||
-1639.8 278.92 180.125,50 342,stand,,,
|
||||
-1515.62 157.817 180.125,344 347 348 349,stand,,,
|
||||
-1398.36 547.13 20.125,49 54 350,stand,,,
|
||||
-1619.85 311.756 20.125,53 55 351,stand,,,
|
||||
-1529.4 198.201 20.125,54 56 420,stand,,,
|
||||
-1289.1 446.82 20.125,55 57 352,stand,,,
|
||||
-1146.69 316.262 20.125,56 58 420,stand,,,
|
||||
-1027.65 427.227 18.0037,57 147 352 437,stand,,,
|
||||
-564.009 780.695 1.31954,60 149 153 434 435,stand,,,
|
||||
-855.271 1186.88 16.125,59 61 62 356 439 435,stand,,,
|
||||
-1242.99 986.803 16.125,60 353 438 439,stand,,,
|
||||
-909.871 1686.66 116.386,60 354,stand,,,
|
||||
-657.432 2193.31 141.694,64 354 159,stand,,,
|
||||
-254.184 2514.95 135.673,63 65 158 69,stand,,,
|
||||
194.28 2758.33 102.157,64 66 67,stand,,,
|
||||
474.28 3021.46 74.1831,65 0,stand,,,
|
||||
635.054 2652.63 62.3048,0 65 68 368,stand,,,
|
||||
628.692 2393.19 68.529,67 5 69 71,stand,,,
|
||||
244.514 2365.84 146.605,68 70 64,stand,,,
|
||||
262.695 1861.76 75.2715,69 71 157 158 392,stand,,,
|
||||
614.919 2005.65 98.5727,70 68 72 160 380,stand,,,
|
||||
946.886 1672.96 82.7812,71 73 76 380 8 9,stand,,,
|
||||
586.069 1619.1 176.125,72 74 395,stand,,,
|
||||
586.55 1511.32 176.125,73 75 394,stand,,,
|
||||
830.888 1504.03 176.125,74 398 399 400,stand,,,
|
||||
1326.31 1418.23 26.5909,72 77 77 161 9 428,stand,,,
|
||||
1121.66 902.353 15.633,76 78 76 163 427,stand,,,
|
||||
595.666 904.982 15.6463,77 79 386,stand,,,
|
||||
367.1 561.122 15.8894,78 168 232 233 231 432,stand,,,
|
||||
469.048 -559.092 11.8264,94 224 226 225 251,stand,,,
|
||||
50.6482 -780.532 13.1402,82 93 252 253 258,stand,,,
|
||||
-293.875 -744.585 22.3099,81 43 254 83 258,stand,,,
|
||||
-229.775 -1193.11 12.125,43 84 93 82 259,stand,,,
|
||||
-104.532 -1559.55 12.125,83 92 259 263 262,stand,,,
|
||||
-367.85 -1845.79 16.7693,38 262 264,stand,,,
|
||||
-77.3848 -2173.88 42.0298,38 35 87,stand,,,
|
||||
88.332 -1915.1 37.0616,86 88 110 260 261,stand,,,
|
||||
421.915 -1568.4 22.5955,87 91 103 217 218 260 292,stand,,,
|
||||
10.4931 -1492.49 164.125,90 273 282,stand,,,
|
||||
64.705 -1591.11 164.125,89 91 285,stand,,,
|
||||
302.609 -1457.48 28.125,90 88 92 293,stand,,,
|
||||
50.2882 -1467.02 28.125,91 84 293 294,stand,,,
|
||||
224.802 -1086.72 12.125,83 100 237 81,stand,,,
|
||||
701.038 -815.48 12.125,80 99 224 238,stand,,,
|
||||
934.454 -565.889 20.125,222 224,stand,,,
|
||||
1353.41 -620.404 18.6321,16 19 98 223 221,stand,,,
|
||||
1393.38 -1011.78 38.43,19 98 128 210,stand,,,
|
||||
1157.75 -858.522 21.5466,97 96 99 223 222,stand,,,
|
||||
993.201 -865.582 12.125,98 94 222 223 239 248,stand,,,
|
||||
304.139 -1241.24 16.125,93 241 240,stand,,,
|
||||
992.405 -1356.18 32.892,102 219 247,stand,,,
|
||||
973.347 -1520.7 32.125,101 104 429 219,stand,,,
|
||||
628.734 -1697.15 33.394,88 217 218 431 430,stand,,,
|
||||
1113.32 -1817.22 151.879,102 105 216,stand,,,
|
||||
1233.81 -2053.42 193.844,104 129 130,stand,,,
|
||||
773.768 -1112.16 184.125,107 109 288,stand,,,
|
||||
719.435 -945.37 167.495,106 108,stand,,,
|
||||
367.69 -1135.83 168.068,107 288,stand,,,
|
||||
835.001 -1253.57 184.125,106 286 289 290,stand,,,
|
||||
577.893 -2206.96 130.662,87 33 130 319,stand,,,
|
||||
716.516 -2790.54 194.125,32 112 114 299,stand,,,
|
||||
713.568 -2932.02 194.125,111 113 302,stand,,,
|
||||
943.134 -2946.66 194.125,112 303 311,stand,,,
|
||||
1007.26 -2722.2 194.125,111 115 298 299 301,stand,,,
|
||||
1300.63 -2746.8 193.618,114 116 123 305 313,stand,,,
|
||||
1448.59 -2652.88 195.603,115 122 313 314,stand,,,
|
||||
1894.35 -2868.93 203.246,30 118 325,stand,,,
|
||||
1693.26 -2595.71 202.781,117 119 314,stand,,,
|
||||
1962.03 -2363.63 202.313,118 120 122,stand,,,
|
||||
2266.5 -2138.16 202.996,119 121 124 185,stand,,,
|
||||
2502.26 -2378.38 203.538,120 180 183,stand,,,
|
||||
1808.54 -2178.08 204.597,119 116 124 123,stand,,,
|
||||
1250.64 -2356.19 199.789,115 130 122 297,stand,,,
|
||||
1952.2 -1840.08 195.408,122 125 129 120 185,stand,,,
|
||||
2145.26 -1564.73 168.392,124 126 23,stand,,,
|
||||
2032.03 -1183.21 134.293,125 127 128,stand,,,
|
||||
2335.84 -1038.64 138.214,126 22 191 190 194,stand,,,
|
||||
1713.24 -1356.44 124.035,126 97 129 210 212 213,stand,,,
|
||||
1641.26 -1764.98 195.225,128 124 105 213,stand,,,
|
||||
869.176 -2149.32 164.476,105 110 123 297,stand,,,
|
||||
2707.46 -2690.92 340.125,27 132,stand,,,
|
||||
2347.03 -2233.53 340.125,131 133,stand,,,
|
||||
2234.79 -2107.67 340.125,132 134,stand,,,
|
||||
1794.8 -2454.7 340.125,133 135,stand,,,
|
||||
1677.56 -2581.98 340.125,134 136,stand,,,
|
||||
2000.92 -3010.25 340.125,135 137,stand,,,
|
||||
2121.73 -3155.37 340.125,136 27,stand,,,
|
||||
1338.82 25.8198 16.125,15 326,stand,,,
|
||||
804.632 -60.2816 -123.875,140 326 327,stand,,,
|
||||
302.008 -101.419 -123.875,139 141,stand,,,
|
||||
-258.218 -152.083 -123.875,140 142,stand,,,
|
||||
-620.981 -448.428 -123.875,141 143,stand,,,
|
||||
-931.755 -871.087 -123.879,142 331,stand,,,
|
||||
-443.672 -1452.11 28.125,39 265 323,stand,,,
|
||||
-871.888 -192.364 48.125,414 417 419,stand,,,
|
||||
-1233.18 -105.698 12.76,44 148 418 419 174 420,stand,,,
|
||||
-989.977 225.335 14.3468,58 149 419,stand,,,
|
||||
-1674.41 5.53347 17.8501,146,stand,,,
|
||||
-471.298 399.666 19.7224,147 150 59 151 152 164 412,stand,,,
|
||||
-704.081 19.7026 14.7278,149 413 414 164,stand,,,
|
||||
-210.587 198.265 26.125,149 401 412 164,stand,,,
|
||||
-275.035 617.598 17.6243,149 169 362 412,stand,,,
|
||||
-469.401 883.021 30.125,355 59 362,stand,,,
|
||||
-507.062 1114.72 30.125,355 358 360 361,stand,,,
|
||||
-380.727 1374.84 22.8633,156 157 159 357 365 390,stand,,,
|
||||
-74.0993 1186.52 12.6617,155 169 365 390,stand,,,
|
||||
57.5948 1703.46 72.3118,155 70 389 390,stand,,,
|
||||
-154.748 2176.46 211.933,70 64 159,stand,,,
|
||||
-479.901 1893.77 184.073,158 155 63,stand,,,
|
||||
601.946 1955.46 104.288,71,stand,,,
|
||||
1855.29 1388.53 -80.4222,76 9 162 11 12,stand,,,
|
||||
1678.77 888.674 -11.8572,161 163 12 11 13,stand,,,
|
||||
1432.62 550.476 0.124998,162 15 77 382,stand,,,
|
||||
-486.306 63.8216 24.125,149 165 150 151,stand,,,
|
||||
-696.92 -211.666 184.125,164 424 425,stand,,,
|
||||
1481.65 -670.678 172.125,17 205 242,stand,,,
|
||||
2013.89 -721.441 164.736,20 203 205,stand,,,
|
||||
113.484 691.791 18.3784,79 169 411,stand,,,
|
||||
-75.5126 696.762 19.1397,168 152 156 364,stand,,,
|
||||
182.919 354.061 26.125,171 401 403 411,stand,,,
|
||||
-57.3517 364.977 26.125,170 172 401,stand,,,
|
||||
193.129 438.897 162.125,171 173 404,stand,,,
|
||||
170.103 244.982 162.125,172 404 405 406,stand,,,
|
||||
-1348.96 -519.799 14.1109,44 46 146 418,stand,,,
|
||||
2006.5 -3535.14 192.125,29,crouch,1.50463 87.8664 -0.27697,,
|
||||
2541.29 -3047.8 204.125,28 27 26,stand,4.61376 40.7296 -0.27697,,
|
||||
3158.97 -2630.65 192.125,25,crouch,3.23498 163.32 -0.27697,,
|
||||
2951.08 -2659.51 192.125,26 25 179,stand,19.2915 85.1034 -0.27697,,
|
||||
2830.47 -2532.69 192.125,178 180 181,stand,64.8738 -125.032 -0.27697,,
|
||||
2698.49 -2657.79 203.125,179 26 121,stand,70.2296 -107.937 -0.27697,,
|
||||
2749.48 -2397.65 192.125,179 24 183,stand,85 32.2646 -0.27697,,
|
||||
2521.4 -2141.57 195.803,183 23 184 185,stand,21.6309 105.988 -0.27697,,
|
||||
2639.36 -2279.03 192.125,121 182 181,stand,62.7252 42.9653 -0.27697,,
|
||||
2637.98 -2039.47 192.125,182 24 23,stand,18.1757 -102.247 -0.27697,,
|
||||
2350.18 -2069.69 193.981,182 120 124,stand,25.0806 -157.837 -0.27697,,
|
||||
2813.58 -1083.52 129.759,22 187 193 189,stand,24.0479 109.438 -0.27697,,
|
||||
2724.29 -864.6 109.867,186 188 192 193,stand,18.0054 -171.999 -0.27697,,
|
||||
2620.13 -885.13 102.99,189 191 187 21 192,stand,29.92 -53.3793 -0.27697,,
|
||||
2729.57 -1000.5 119.082,188 190 193 186,stand,43.2135 -152.141 -0.27697,,
|
||||
2607.81 -1115.97 126.738,189 191 22 127,stand,43.3838 115.134 -0.27697,,
|
||||
2510.45 -1011.97 124.198,190 188 127,stand,36.825 30.3585 -0.27697,,
|
||||
2628.63 -722.793 114.967,188 187,crouch,2.81128 -83.6027 -0.27697,,
|
||||
2854.59 -800.341 111.29,187 186 189,crouch,1.77307 -135.216 -0.27697,,
|
||||
2366.75 -1206.93 131.873,127,crouch,5.91492 94.7768 -0.27697,,
|
||||
2665.91 -1432.06 161.381,22 23 196,stand,26.1188 82.6809 -0.27697,,
|
||||
2504.58 -1294.97 178.125,195 197,stand,21.4551 139.661 -0.27697,,
|
||||
2451.54 -1188.54 178.125,196,crouch,16.6211 101.154 -0.27697,,
|
||||
2569.12 -703.766 112.913,21,crouch,9.54041 -164.566 -0.27697,,
|
||||
2096.64 -866.995 39.6566,21 20 200,stand,69.1138 102.539 -0.27697,,
|
||||
2106.89 -683.485 36.524,199 201 202 21,stand,36.4789 71.6286 -0.27697,,
|
||||
2096.6 -570.657 38.2181,200,crouch,2.46521 -62.1794 -0.27697,,
|
||||
2000.1 -649.844 36.125,200,crouch,5.05249 -60.2787 -0.27697,,
|
||||
2012.94 -604.805 172.125,167 204 205,stand,14.0338 -153.531 -0.27697,,
|
||||
1883.41 -573.508 172.125,203 205,stand,36.3086 -87.7501 -0.27697,,
|
||||
1829.74 -758.389 172.125,166 204 167 203 244,stand,23.526 71.0958 -0.27697,,
|
||||
1953.57 -556.787 36.125,18,crouch,3.84399 162.612 -0.27697,,
|
||||
1679.56 -580.22 36.125,19 18 208,stand,28.3655 106.323 -0.27697,,
|
||||
1775.37 -582.464 36.125,207,crouch,2.46521 -156.299 -0.27697,,
|
||||
1911.41 -1012.26 38.3996,20 210,stand,32.1613 -156.991 -0.27697,,
|
||||
1649.89 -1149.83 80.0602,209 128 97 211,stand,8.85376 -33.538 -0.27697,,
|
||||
1644.07 -948.889 40.8069,210 19,stand,79.2981 81.791 -0.27697,,
|
||||
1469.08 -1460.98 129.064,128 213 214,stand,28.5358 123.748 -0.27697,,
|
||||
1599.58 -1606.81 185.531,212 129 128,stand,19.9005 -62.2068 -0.27697,,
|
||||
1330.18 -1421.72 100.125,212 215,stand,22.6636 -23.0021 -0.27697,,
|
||||
1455.41 -1312.55 148.125,214,crouch,15.4126 61.0763 -0.27697,,
|
||||
772.682 -1812.95 144.125,104 217,stand,22.1527 1.12936 -0.27697,,
|
||||
661.155 -1804.42 70.3299,216 103 88,stand,-4.95605 8.21554 -0.27697,,
|
||||
649.705 -1539.18 26.381,103 88 431 430,stand,13.1714 32.0339 -0.27697,,
|
||||
881.906 -1399.78 29.305,101 431 102,stand,15.7642 24.2666 -0.27697,,
|
||||
1212.99 -358.851 20.125,16 221,crouch,0.988271 -45.9356 -0.27697,,
|
||||
1257.57 -478.025 22.9309,222 220 16 96,stand,17.0448 -129.509 -0.27697,,
|
||||
1158.68 -595.741 20.125,221 223 99 98 95,stand,28.7892 -145.741 -0.27697,,
|
||||
1253.33 -650.833 20.125,96 222 98 99,stand,22.2248 -170.949 -0.27697,,
|
||||
684.976 -549.829 20.125,80 225 95 94 226,stand,17.1429 0.673857 -0.27697,,
|
||||
832.925 -337.455 20.125,224 226 80,crouch,5.22827 -127.608 -0.27697,,
|
||||
458.019 -369.457 11.1506,227 80 228 225 224,stand,16.6266 92.3603 -0.27697,,
|
||||
364.939 -182.28 16.5533,230 226 228 229,stand,16.9727 -36.0974 -0.27697,,
|
||||
500.353 -187.698 16.6477,226 229 230 227,stand,16.2805 62.1534 -0.27697,,
|
||||
510.648 174.857 18.125,228 231 232 230 227 235,stand,17.489 94.0961 -0.27697,,
|
||||
368.05 170.43 18.125,232 227 229 231 228,stand,20.0818 100.831 -0.27697,,
|
||||
528.711 386.062 14.3359,229 233 232 79 230 235 234,stand,15.072 -130.717 -0.27697,,
|
||||
371.127 399.775 15.7188,79 230 233 231 229 432,stand,15.9344 112.564 -0.27697,,
|
||||
576.49 551.93 16.092,231 79 234 232,stand,25.7782 104.099 -0.27697,,
|
||||
777.574 458.509 60.0263,233 384 231,stand,19.5599 159.701 -0.27697,,
|
||||
610.601 284.605 23.7228,231 229 236,stand,47.1851 -141.945 -0.27697,,
|
||||
649.448 180.721 15.3175,235,crouch,4.01978 -103.444 -0.27697,,
|
||||
409.545 -971.722 12.125,238 93 240 252,stand,11.6168 56.0944 -0.27697,,
|
||||
515.756 -909.523 12.125,94 237 239 251,stand,16.7969 -9.86203 -0.27697,,
|
||||
616.804 -1070.18 23.0359,99 240 238,stand,17.6593 -155.25 -0.27697,,
|
||||
492.754 -1119.66 22.8374,100 237 239,stand,17.4835 -155.59 -0.27697,,
|
||||
352.645 -1355.58 16.8991,100,crouch,1.77307 113.075 -0.27697,,
|
||||
1449.22 -767.064 199.219,166 243,stand,30.9528 68.7177 -0.27697,,
|
||||
1631.86 -823.168 199.153,242 244 246 245,stand,27.6733 -18.6511 -0.27697,,
|
||||
1811.47 -867.35 199.642,243 205,stand,44.7681 43.1635 -0.27697,,
|
||||
1649.59 -940.978 183.069,246 243,prone,4.8822 -89.2657 -0.27697,,
|
||||
1570.19 -900.995 185.738,243 245,prone,6.26648 171.281 -0.27697,,
|
||||
988.16 -1228.32 30.4804,101 249,stand,60.1379 -80.8117 -0.27697,,
|
||||
994.28 -1066.77 24.4045,99 249 250,stand,34.5837 -105.163 -0.27697,,
|
||||
947.175 -1171.68 25.7274,248 247 250,stand,48.5693 -69.2486 -0.27697,,
|
||||
864.159 -1055.15 17.0095,249 248,crouch,-0.12207 -16.0748 -0.27697,,
|
||||
324.214 -647.17 13.2411,238 80 252,stand,77.5787 -66.4966 -0.27697,,
|
||||
219.32 -724.299 7.16798,81 251 237,stand,20.2521 53.3149 -0.27697,,
|
||||
41.1167 -623.868 16.125,81,crouch,4.71191 -85.6842 -0.27697,,
|
||||
-262.031 -537.27 16.892,82 255 256 43,stand,18.1812 77.309 -0.27697,,
|
||||
-178.147 -360.319 18.125,254 256,crouch,4.71191 -118.835 -0.27697,,
|
||||
-186.869 -506.855 18.125,255 254,crouch,6.61255 -152.855 -0.27697,,
|
||||
-15.6727 -1149.52 12.125,258 259,stand,27.6788 101.655 -0.27697,,
|
||||
-65.1668 -951.772 19.1036,257 81 82,stand,35.2759 107.867 -0.27697,,
|
||||
-99.6289 -1340.48 16.9392,257 84 83 295,stand,64.6259 -101.57 -0.27697,,
|
||||
50.1542 -1745.3 26.2131,261 263 87 88,stand,32.1667 157.427 -0.27697,,
|
||||
-90.5092 -1811.19 26.2156,262 260 87,stand,32.6831 111.674 -0.27697,,
|
||||
-151.583 -1702.36 18.8641,84 261 263 85,stand,34.408 32.7649 -0.27697,,
|
||||
-19.6534 -1634.77 16.0783,84 260 262,stand,34.9298 36.9068 -0.27697,,
|
||||
-430.702 -1722.52 28.125,85 266 268,stand,31.3043 -62.7227 -0.27697,,
|
||||
-397.72 -1546.54 28.125,144 266 323,stand,32.5128 -67.8973 -0.27697,,
|
||||
-363.939 -1670.88 28.125,265 264 267,stand,46.839 -119.698 -0.27697,,
|
||||
-217.71 -1650.47 28.125,266,crouch,4.19556 -170.982 -0.27697,,
|
||||
-499.081 -1651.92 49.6587,264 269,stand,4.71191 121.166 -0.27697,,
|
||||
-576.397 -1501.08 164.125,268 270,stand,56.8585 92.8492 -0.27697,,
|
||||
-503.729 -1471.53 164.125,269 271 274 273,stand,53.2275 -69.2871 -0.27697,,
|
||||
-396.914 -1670.21 164.125,270 272 273 274,stand,25.6024 -110.381 -0.27697,,
|
||||
-464.585 -1721.24 164.125,271 276 280,stand,59.2755 -154.579 -0.27697,,
|
||||
-280.672 -1632.21 164.125,271 274 270 89,stand,54.7821 21.8775 -0.27697,,
|
||||
-365.98 -1484.57 164.125,273 270 271 275,stand,27.5031 38.9777 -0.27697,,
|
||||
-309.045 -1459.62 164.125,274,crouch,11.1005 33.7976 -0.27697,,
|
||||
-521.744 -1753.28 144.125,272 277 279,stand,45.8063 28.266 -0.27697,,
|
||||
-551.013 -1705.14 144.125,276 278,stand,56.1664 -175.992 -0.27697,,
|
||||
-679.855 -1696.44 144.125,277 279,prone,8.50769 120.645 -0.27697,,
|
||||
-583.832 -1869.61 144.125,278 276,prone,3.67371 -37.5091 -0.27697,,
|
||||
-389.617 -1827.8 164.125,272 281,stand,63.2471 120.338 -0.27697,,
|
||||
-246.712 -1751.67 164.125,280,crouch,6.61255 -19.1719 -0.27697,,
|
||||
204.971 -1370.16 164.125,89 283 287,stand,22.8394 -3.28571 -0.27697,,
|
||||
279.911 -1486.19 176.125,282 284,stand,74.2938 -145.042 -0.27697,,
|
||||
367.491 -1525.31 164.125,283 285,crouch,2.46521 171.787 -0.27697,,
|
||||
77.7105 -1662.99 164.125,284 90,crouch,-0.643921 73.1956 -0.27697,,
|
||||
513.783 -1433.93 184.125,288 109 291,stand,36.4789 118.608 -0.27697,,
|
||||
335.403 -1313.74 184.125,282 288 292,stand,68.7677 -139.511 -0.27697,,
|
||||
426.635 -1267.55 184.125,287 108 286 106,stand,31.8207 -46.2752 -0.27697,,
|
||||
892.812 -1278.8 184.125,109,crouch,5.74463 177.489 -0.27697,,
|
||||
751.547 -1370.83 184.125,109,crouch,7.2992 -52.6693 -0.27697,,
|
||||
536.48 -1483.92 184.125,286,crouch,4.36584 117.751 -0.27697,,
|
||||
430.86 -1479.7 43.9344,287 88,stand,44.5978 -61.1287 -0.27697,,
|
||||
203.856 -1406.81 28.125,91 92 296,stand,59.27 -104.64 -0.27697,,
|
||||
21.1968 -1413.1 28.125,92 295,stand,34.2377 -68.55 -0.27697,,
|
||||
-4.07811 -1366.37 16.3708,259 294,stand,75.8484 -62.8536 -0.27697,,
|
||||
202.347 -1306.17 28.125,293,crouch,5.22827 -92.3738 -0.27697,,
|
||||
941.351 -2439.82 191.055,130 298 319 123,stand,18.1757 -133.99 -0.27697,,
|
||||
997.417 -2537.85 194.125,297 114,stand,41.3129 -70.1046 -0.27697,,
|
||||
793.132 -2726.4 194.125,111 114 300 301,stand,45.2844 82.6988 -0.27697,,
|
||||
739.072 -2625.35 237.225,299 301,prone,4.8822 -21.935 -0.27697,,
|
||||
937.985 -2622.32 236.725,300 114 299,prone,1.94885 53.8652 -0.27697,,
|
||||
825.027 -2871.59 194.125,112,crouch,8.3374 -137.269 -0.27697,,
|
||||
1080.37 -2970.83 194.125,113 304,stand,27.157 6.38228 -0.27697,,
|
||||
1185.07 -2963.75 192.125,303 305,stand,18.5217 169.375 -0.27697,,
|
||||
1289.34 -2959.03 192.125,304 115 306,stand,30.2661 85.8079 -0.27697,,
|
||||
1282.68 -3209.18 191.996,309 305 308,stand,26.2946 34.0019 -0.27697,,
|
||||
944.656 -3216.53 192.256,308 311 31,stand,10.4083 95.4704 -0.27697,,
|
||||
1110.22 -3215.18 192.655,307 306 310,stand,19.5599 104.792 -0.27697,,
|
||||
1436.47 -3171.88 192.326,306 30 313,stand,21.9769 28.8164 -0.27697,,
|
||||
1102.39 -3075.33 192.586,308 311 312,stand,43.0432 -150.409 -0.27697,,
|
||||
931.903 -3091.63 194.125,310 113 307 31,stand,34.754 93.2182 -0.27697,,
|
||||
1118.87 -3037.88 192.385,310,crouch,1.60278 -122.608 -0.27697,,
|
||||
1519.75 -2999.62 192.125,309 30 115 116,stand,23.8776 81.1222 -0.27697,,
|
||||
1529.02 -2747.66 192.125,30 116 118,stand,18.3514 121.876 -0.27697,,
|
||||
401.747 -3269.67 192.986,31,crouch,6.0907 32.5957 -0.27697,,
|
||||
178.038 -3089.74 148.219,34 317 318,stand,28.1952 163.816 -0.27697,,
|
||||
439.977 -2763.81 164.548,316 32 33 319,stand,26.9867 6.86568 -0.27697,,
|
||||
260.722 -3171.56 190.936,316,prone,5.92041 112.878 -0.27697,,
|
||||
519.171 -2416.04 141.945,317 110 297,stand,25.9485 42.9393 -0.27697,,
|
||||
-316.843 -2948.95 112.438,36,crouch,9.89197 82.8141 -0.27697,,
|
||||
-790.875 -2178.36 33.5147,37 38,crouch,2.81128 -7.49347 -0.27697,,
|
||||
-919.363 -1709.62 16.3707,39,crouch,3.15735 23.0705 -0.27697,,
|
||||
-343.416 -1405.14 28.125,144 265,crouch,3.50342 -127.832 -0.27697,,
|
||||
1928.65 -3240.91 192.125,30 29 325,stand,23.3557 -67.2316 -0.27697,,
|
||||
2092.44 -3139.35 203.264,324 28 117,stand,20.0763 -29.0816 -0.27697,,
|
||||
1065.51 36.8275 -123.875,138 139 327,stand,7.64526 -2.98908 -0.27697,,
|
||||
1071.76 -162.377 -123.875,326 328 139,stand,16.2805 -71.1922 -0.27697,,
|
||||
1422.13 -109.176 -123.875,327 329 330,stand,43.0432 -33.8936 -0.27697,,
|
||||
1450.88 -174.445 -123.875,328,crouch,0.910645 174.852 -0.27697,,
|
||||
1450.87 -56.0022 -123.875,328,crouch,5.57434 -177.375 -0.27697,,
|
||||
-946.428 -1100.58 -123.875,143 41 332,stand,28.1952 -91.7586 -0.27697,,
|
||||
-1066.51 -1092.36 -123.875,331 333,stand,10.238 -104.876 -0.27697,,
|
||||
-1130.14 -1435.78 -123.875,332 334,stand,14.2096 -100.734 -0.27697,,
|
||||
-975.32 -1423.4 -123.877,333,crouch,3.50342 -148.558 -0.27697,,
|
||||
-777.153 -895.793 16.125,42,crouch,2.98706 116.822 -0.27697,,
|
||||
-1405.86 -1331.35 24.4184,45 337,stand,15.7642 173.292 -0.27697,,
|
||||
-1812.26 -1117.31 31.137,336 46 338,stand,18.0054 94.3882 -0.27697,,
|
||||
-1952.67 -727.296 24.9212,337 339 340,stand,19.7357 25.8501 -0.27697,,
|
||||
-1737.35 -652.969 22.638,338 46 47,stand,25.0861 -64.106 -0.27697,,
|
||||
-1979.61 -219.673 25.9337,338 47 48,stand,14.2096 14.8143 -0.27697,,
|
||||
-1757.69 484.461 19.3854,48 49,stand,15.2423 49.3443 -0.27697,,
|
||||
-1523.97 391.347 180.125,344 343 51,stand,22.6691 5.31661 -0.27697,,
|
||||
-1333.33 452.17 180.125,342 344 345 346,stand,25.0861 -9.36115 -0.27697,,
|
||||
-1465 264.226 180.125,52 342 343,stand,29.0576 -118.829 -0.27697,,
|
||||
-1244.17 457.364 180.125,343 346,crouch,7.99133 8.93111 -0.27697,,
|
||||
-1306.23 521.826 180.125,345 343,crouch,9.37561 15.49 -0.27697,,
|
||||
-1536.87 96.6973 180.125,52 348,crouch,8.16711 -39.9416 -0.27697,,
|
||||
-1486.91 144.947 180.125,347 52,crouch,7.47498 -46.5004 -0.27697,,
|
||||
-1598.46 158.748 180.125,52,crouch,5.05798 12.205 -0.27697,,
|
||||
-1392.54 611.176 20.125,53,crouch,0.223999 -114.704 -0.27697,,
|
||||
-1697.1 263.261 20.125,54,crouch,2.81128 6.16256 -0.27697,,
|
||||
-1194.55 554.914 16.2819,56 58 353,stand,22.4988 -133.693 -0.27697,,
|
||||
-1401.79 811.322 16.125,352 61 49,stand,18.0054 62.7971 -0.27697,,
|
||||
-873.107 1920.13 143.486,62 63,stand,13.8635 65.7359 -0.27697,,
|
||||
-509.923 949.737 30.125,153 154,stand,66.3562 19.9724 -0.27697,,
|
||||
-587.031 1291.23 16.125,60 357,stand,16.2805 23.2353 -0.27697,,
|
||||
-461.952 1325.1 20.0641,356 155 358,stand,21.9769 7.87093 -0.27697,,
|
||||
-403.615 1180.31 30.125,357 154 359 361,stand,19.7357 -85.0185 -0.27697,,
|
||||
-365.926 1262.09 30.125,358,crouch,4.8822 -121.795 -0.27697,,
|
||||
-569.232 1158.1 30.125,154,crouch,3.67371 -24.9288 -0.27697,,
|
||||
-329.414 1055.98 30.125,154 358,crouch,4.36584 153.423 -0.27697,,
|
||||
-413.781 817.017 30.125,152 153 363,stand,24.3939 100.936 -0.27697,,
|
||||
-272.412 888.333 30.125,362 364,stand,33.205 19.7746 -0.27697,,
|
||||
-195.23 929.855 12.3269,363 365 169,stand,44.7736 102.139 -0.27697,,
|
||||
-232.668 1157.9 15.7134,364 156 155 390,stand,24.0533 99.03 -0.27697,,
|
||||
494.133 3328.01 50.0274,0,crouch,0.570068 -45.8193 -0.27697,,
|
||||
829.243 3205.34 64.125,0 1 368,stand,11.1005 -67.5722 -0.27697,,
|
||||
829.954 2652.47 64.125,367 67 5,stand,15.9344 -91.061 -0.27697,,
|
||||
1783.45 2370.2 57.392,6 7 379,crouch,4.02527 149.985 -0.27697,,
|
||||
1742.68 3336.3 64.125,2 7,crouch,1.77856 -138.187 -0.27697,,
|
||||
1455.36 2916.4 66.125,374 3 372 373 7,stand,27.1625 -0.918152 -0.27697,,
|
||||
1198.65 2919.89 66.125,373 371 374 4,stand,19.906 -67.0394 -0.27697,,
|
||||
1209.23 2729.88 66.125,374 372 371 376,stand,18.1812 -47.6979 -0.27697,,
|
||||
1454.08 2700.36 66.125,371 373 372 375,stand,23.0151 83.0064 -0.27697,,
|
||||
1491.68 2664.18 66.125,374,crouch,0.740357 135.494 -0.27697,,
|
||||
1171.04 2657.06 66.125,373,crouch,4.36584 54.3376 -0.27697,,
|
||||
1487.18 3149.14 66.125,3,crouch,6.26648 -147.503 -0.27697,,
|
||||
1233.54 3114.96 67.125,1 3,stand,14.9017 -10.9322 -0.27697,,
|
||||
1587.34 2532.36 64.125,7 6 369,stand,20.0818 -120.224 -0.27697,,
|
||||
1124.36 2133.02 150.265,8 71 72,stand,16.2805 -171.679 -0.27697,,
|
||||
2079.42 -75.5401 15.2613,14,crouch,5.23376 120.453 -0.27697,,
|
||||
1114.74 346.457 74.8502,383 384 163,stand,14.9017 156.016 -0.27697,,
|
||||
1066.3 181.761 24.125,15 382 385,stand,3.6792 66.4116 -0.27697,,
|
||||
946.375 442.722 81.4189,234 382,stand,39.4232 172.77 -0.27697,,
|
||||
1007.43 150.537 24.125,383,crouch,-1.33057 40.6816 -0.27697,,
|
||||
598.637 1172.88 83.235,78 387 427,stand,26.6461 -90.7259 -0.27697,,
|
||||
387.603 1220.67 92.7441,386 388,stand,62.5604 171.721 -0.27697,,
|
||||
245.71 1256.97 83.4003,387 389,stand,23.3557 162.223 -0.27697,,
|
||||
217.065 1409.71 128.921,388 157 390 391,stand,31.991 112.84 -0.27697,,
|
||||
78.5925 1420.11 94.9211,389 156 157 155 365,stand,52.887 -163.411 -0.27697,,
|
||||
231.993 1460.86 135.93,389 392,stand,33.5455 -40.4799 -0.27697,,
|
||||
359.199 1489.52 168.125,391 393 70,stand,24.9158 -25.4561 -0.27697,,
|
||||
440.086 1456.22 166.999,392 394,stand,26.2946 0.268393 -0.27697,,
|
||||
545.192 1456.21 176.125,393 74 396 397,stand,42.3511 2.16353 -0.27697,,
|
||||
503.761 1643.96 176.125,73,crouch,3.32764 -44.6328 -0.27697,,
|
||||
500.056 1390.73 176.125,394,crouch,5.92041 53.4422 -0.27697,,
|
||||
675.886 1390.8 176.125,394,crouch,6.0907 136.488 -0.27697,,
|
||||
986.649 1542.42 176.125,75,crouch,7.99133 139.251 -0.27697,,
|
||||
826.628 1383.13 176.125,75,crouch,7.82105 -97.6363 -0.27697,,
|
||||
730.474 1390.79 176.125,75,crouch,4.36584 48.7785 -0.27697,,
|
||||
-103.366 203.942 26.125,151 171 170 402,stand,43.5596 -173.09 -0.27697,,
|
||||
42.7476 189.994 26.125,401 403,stand,61.3464 7.85995 -0.27697,,
|
||||
230.933 221.733 26.125,402 170,stand,24.74 99.7166 -0.27697,,
|
||||
230.943 389.167 162.125,172 173,crouch,10.5841 9.75509 -0.27697,,
|
||||
167.327 170.689 162.125,173,crouch,10.9247 -62.4141 -0.27697,,
|
||||
99.8227 270.619 162.125,173 407,stand,26.6406 -172.222 -0.27697,,
|
||||
-37.7019 253.187 162.125,406 408,stand,43.2135 -169.8 -0.27697,,
|
||||
-207.714 228.769 162.125,407 409 410,crouch,11.4465 9.24422 -0.27697,,
|
||||
-198.476 127.724 162.125,408,crouch,15.7587 41.7088 -0.27697,,
|
||||
-228.915 376.156 162.125,408,crouch,18.0054 -18.5512 -0.27697,,
|
||||
161.474 534.066 26.6088,168 170 412 432,stand,17.3132 -82.9531 -0.27697,,
|
||||
-234.538 451.962 26.125,411 152 151 149,stand,26.9867 -104.717 -0.27697,,
|
||||
-800.407 142.787 17.4854,150,crouch,3.15735 -75.1912 -0.27697,,
|
||||
-784.444 -76.4956 48.125,145 150 415,stand,15.072 -95.9169 -0.27697,,
|
||||
-703.945 -174.501 48.125,414 416 421,stand,21.4606 -132.523 -0.27697,,
|
||||
-849.322 -318.424 48.125,415 417 423 422,stand,23.5315 141.316 -0.27697,,
|
||||
-927.853 -254.198 40.125,416 145 418,stand,31.8207 -84.8702 -0.27697,,
|
||||
-982.24 -335.096 15.7977,44 417 146 174,stand,10.5786 66.7302 -0.27697,,
|
||||
-1129.44 35.0623 23.1582,146 147 145,stand,19.2139 35.3093 -0.27697,,
|
||||
-1392.5 63.3754 20.125,57 55 146,stand,15.3199 141.392 -0.27697,,
|
||||
-600.782 -69.6326 48.125,415,crouch,2.71312 -134.513 -0.27697,,
|
||||
-765.835 -419.762 48.125,423 416,crouch,4.95983 113.778 -0.27697,,
|
||||
-685.321 -329.805 48.125,416 422,crouch,2.02648 179.042 -0.27697,,
|
||||
-616.614 -271.397 184.125,165 426,crouch,9.79381 -46.804 -0.27697,,
|
||||
-808.433 -226.682 184.125,165,crouch,4.44347 2.40377 -0.27697,,
|
||||
-518.401 -133.728 184.125,424,crouch,4.26769 -137.282 -0.27697,,
|
||||
953.795 1308.77 69.6689,386 428 77,stand,3.92711 178.52 -0.27697,,
|
||||
1093.15 1380.46 47.9236,427 76,stand,19.1212 25.3707 -0.27697,,
|
||||
914.442 -1637.33 32.6577,430 102,stand,18.2533 178.339 -0.27697,,
|
||||
733.277 -1633.17 32.125,218 431 429 103,stand,27.5807 83.8894 -0.27697,,
|
||||
729.989 -1533.57 29.1321,219 218 103 430,stand,26.3722 16.5487 -0.27697,,
|
||||
303.803 530.261 17.508,232 411 79,stand,39.3196 156.388 -0.27697,,
|
||||
-789.036 639.777 13.4629,436 434 437,stand,34.3153 22.3879 -0.27697,,
|
||||
-636.275 723.404 10.1935,435 433 59,stand,40.0117 125.983 -0.27697,,
|
||||
-733.359 830.805 10.3112,434 436 60 59,stand,28.2728 174.329 -0.27697,,
|
||||
-850.592 741.924 12.6039,433 435 438,stand,30.8601 -69.6391 -0.27697,,
|
||||
-970.144 532.046 21.7239,58 433 438,stand,17.9127 58.1264 -0.27697,,
|
||||
-984.274 717.609 10.6944,436 437 61 439,stand,23.4333 113.728 -0.27697,,
|
||||
-951.592 932.314 15.6012,438 60 61,stand,7.20653 59.681 -0.27697,,
|
||||
|
@@ -0,0 +1,193 @@
|
||||
192
|
||||
1598 1358 -228,1 79 179,stand,,,
|
||||
1600 1089 -224,0 2 130,stand,,,
|
||||
1504 1101 -234,1 72 157 79,stand,,,
|
||||
1510 710 -233,4 157 191,stand,,,
|
||||
1601 704 -225,3 129 153,stand,,,
|
||||
1611 -183 -228,6 158 170,stand,,,
|
||||
1310 -169 -232,5 7 171 172,stand,,,
|
||||
1034 -169 -233,6 8,stand,,,
|
||||
1054 -25 -245,7 9 109 40 138,stand,,,
|
||||
831 -18 -241,8 10 40 138 109,stand,,,
|
||||
589 -19 -221,9 11 127 173,stand,,,
|
||||
571 -173 -228,12 10,stand,,,
|
||||
489 -174 -231,11 13 39,stand,,,
|
||||
342 -191 -236,12 14 41 42,stand,,,
|
||||
83 -208 -244,13 15 42 41,stand,,,
|
||||
-159 -199 -236,14 16 126 156,stand,,,
|
||||
-433 -193 -216,15 17 156 174,stand,,,
|
||||
-399 272 -247,16 18 45 175 176,stand,,,
|
||||
-426 676 -236,17 19 47,stand,,,
|
||||
-424 1099 -234,18 20 93 101,stand,,,
|
||||
-432 1500 -234,19 90 152,stand,,,
|
||||
-33 1420 -127,22 149 177,stand,,,
|
||||
51 1524 -126,21 23 177,stand,,,
|
||||
-62 1628 -123,22 24 149,stand,,,
|
||||
-83 1803 -47,23 25 118,stand,,,
|
||||
153 1785 -47,24 26,stand,,,
|
||||
366 1665 -47,25 27,stand,,,
|
||||
739 1651 -46,26 28,stand,,,
|
||||
995 1643 -97,27 29 80,stand,,,
|
||||
974 1441 -23,28 30,stand,,,
|
||||
953 1076 -19,29 31,stand,,,
|
||||
890 1074 -3,30 32 36 132,stand,,,
|
||||
684 1063 18,31 124 148,stand,,,
|
||||
557 786 74,34 35 145,stand,,,
|
||||
509 782 113,33 38 159,stand,,,
|
||||
641 780 19,33 36 122,stand,,,
|
||||
895 765 10,35 37 31,stand,,,
|
||||
1130 765 -2,36 123 136,stand,,,
|
||||
508 467 -55,34 39,stand,,,
|
||||
501 103 -236,38 12 40 41,stand,,,
|
||||
837 108 -245,39 9 109 113 8 114,stand,,,
|
||||
329 80 -239,39 13 49 48 134 14,stand,,,
|
||||
127 46 -238,14 43 45 48 13,stand,,,
|
||||
-90 43 -244,42 44,stand,,,
|
||||
-182 130 -213,43 45 175,stand,,,
|
||||
-177 264 -228,44 17 46 42,stand,,,
|
||||
-158 398 -233,45 47 48 115,stand,,,
|
||||
-171 677 -243,46 18 99 100 115 98,stand,,,
|
||||
139 206 -245,42 49 46 41 115,stand,,,
|
||||
397 221 -239,48 41 52,stand,,,
|
||||
208 696 -239,51 54 99 154,stand,,,
|
||||
217 484 -237,50 52,stand,,,
|
||||
421 483 -239,51 49 53 114 155,stand,,,
|
||||
438 599 -238,52 54,stand,,,
|
||||
438 699 -239,53 50 59 55,stand,,,
|
||||
445 728 -237,56 54,crouch,,,
|
||||
443 828 -197,55 57,crouch,,,
|
||||
569 835 -196,56 58,crouch,,,
|
||||
614 837 -204,57 104,stand,,,
|
||||
722 689 -235,54 60,stand,,,
|
||||
776 689 -233,59 61,crouch,,,
|
||||
870 689 -234,60 62 63 68,crouch,,,
|
||||
862 494 -238,61 185 186,crouch,,,
|
||||
848 858 -235,61 64 128 187,crouch,,,
|
||||
849 968 -234,63 65 66,crouch,,,
|
||||
921 986 -225,64 73,stand,,,
|
||||
833 1053 -231,64 75,stand,,,
|
||||
1000 650 -234,68 110 135 185,stand,,,
|
||||
938 664 -231,67 61,crouch,,,
|
||||
1302 640 -226,110 111 191 188,stand,,,
|
||||
1260 875 -234,71 72 163 189 190 73,stand,,,
|
||||
1014 854 -236,70 73 72,stand,,,
|
||||
1280 1117 -221,70 2 73 71,stand,,,
|
||||
1074 1116 -237,72 71 74 65 163 70,stand,,,
|
||||
1059 1205 -236,73 75 76 139,stand,,,
|
||||
840 1194 -233,74 66 84 106,stand,,,
|
||||
1069 1530 -235,74 77 84,stand,,,
|
||||
1242 1545 -219,76 78 79,stand,,,
|
||||
1247 1483 -235,77 79 169,stand,,,
|
||||
1503 1491 -236,78 0 2 77 178 179 143,stand,,,
|
||||
1219 1624 -144,28 178,stand,,,
|
||||
1570 1781 -228,83 178 143 179 180,stand,,,
|
||||
872 1769 -234,83 84 87,stand,,,
|
||||
1221 1777 -224,82 81 178 179,stand,,,
|
||||
859 1545 -245,82 76 75 85,stand,,,
|
||||
605 1540 -241,84 86 107 108 88,stand,,,
|
||||
610 1781 -224,85 88 89,stand,,,
|
||||
755 1792 -222,82 88,stand,,,
|
||||
676 1699 -235,87 86 85,stand,,,
|
||||
204 1773 -225,86 91 95,stand,,,
|
||||
-416 1766 -238,91 20 131,stand,,,
|
||||
-143 1769 -239,89 90,stand,,,
|
||||
-221 1331 -234,93 152,stand,,,
|
||||
-145 1218 -228,92 19 94 101,stand,,,
|
||||
180 1234 -226,93 95 96 98,stand,,,
|
||||
193 1552 -224,89 94 108 133,stand,,,
|
||||
263 1201 -230,94 97 102 137,stand,,,
|
||||
298 955 -240,96 98,stand,,,
|
||||
40 958 -244,97 99 101 94 100 47,stand,,,
|
||||
48 686 -245,47 50 98 115 100,stand,,,
|
||||
-223 926 -237,101 47 98 99,stand,,,
|
||||
-209 1103 -236,100 19 98 93,stand,,,
|
||||
439 1203 -236,96 103 107 108,stand,,,
|
||||
454 1036 -222,102 104 119,stand,,,
|
||||
599 1036 -202,103 58 105 141,stand,,,
|
||||
719 1026 -202,104 106,stand,,,
|
||||
712 1204 -172,105 75 107,stand,,,
|
||||
605 1204 -230,106 102 85,stand,,,
|
||||
423 1543 -234,102 85 95,stand,,,
|
||||
1044 117 -241,8 40 112 9,stand,,,
|
||||
1115 642 -245,67 69 184 188,stand,,,
|
||||
1332 322 -240,69 112 125 158 191,stand,,,
|
||||
1020 332 -243,111 109 113 185 184,stand,,,
|
||||
827 287 -246,40 114 112,stand,,,
|
||||
555 367 -239,113 52 40,stand,,,
|
||||
46 515 -244,48 99 47 46,stand,,,
|
||||
728 1100 266,120 121 140 162 167,stand,,,
|
||||
1772 1648 -127,144,crouch,3 -178 0,,
|
||||
-440 1803 -47,24,crouch,1 -43 0,,
|
||||
452 933 -223,103,crouch,-4 136 0,,
|
||||
742 948 268,116,crouch,-1 131 0,,
|
||||
549 1086 266,116,crouch,10 -70 0,,
|
||||
642 901 19,35,crouch,4 -90 0,,
|
||||
1067 780 -2,37,crouch,12 -88 0,,
|
||||
694 1000 18,32,crouch,14 90 0,,
|
||||
1309 161 -240,111,crouch,5 85 0,,
|
||||
-98 -55 -217,15,crouch,10 -127 0,,
|
||||
557 -48 -222,10,claymore,6 -86 0,,
|
||||
910 790 -233,63,claymore,7 -179 0,,
|
||||
1597 761 -229,4,claymore,7 -170 0,,
|
||||
1619 1056 -224,1,claymore,11 173 0,,
|
||||
-270 1702 -230,90,claymore,9 166 0,,
|
||||
792 1055 7,31,claymore,7 14 0,,
|
||||
262 1529 -236,95,grenade,-33 -92 0,,
|
||||
308 180 -239,41,grenade,-34 90 0,,
|
||||
967 672 -233,67,claymore,7 -177 0,,
|
||||
1178 771 -4,37,claymore,19 -129 0,,
|
||||
217 1313 -229,96,grenade,-22 -6 0,,
|
||||
885 40 -240,9 8,grenade,-42 89 0,,
|
||||
929 1240 -234,74,grenade,-21 -175 0,,
|
||||
726 1025 268,116,claymore,29 -160 0,,
|
||||
633 983 -198,104 142,climb,6 -3 0,,
|
||||
636 986 274,141 162,climb,11 0 0,,
|
||||
1616 1654 -225,144 81 179 79 180,climb,4 0 0,,
|
||||
1641 1652 -149,143 117,climb,-2 0 0,,
|
||||
554 872 126,33 146 159,stand,,,
|
||||
549 962 126,145 147,climb,3 -88 0,,
|
||||
555 987 19,146 168,climb,0 -90 0,,
|
||||
558 1064 18,32 168,stand,,,
|
||||
-124 1520 -129,21 23 150,stand,,,
|
||||
-196 1493 -129,149 151,climb,0 4 0,,
|
||||
-254 1495 -234,150 152,climb,-1 6 0,,
|
||||
-278 1445 -235,151 92 20,stand,,,
|
||||
1640 463 -223,4 158,grenade,-35 -172 0,,
|
||||
208 550 -239,50,claymore,11 94 0,,
|
||||
502 561 -232,52,claymore,7 104 0,,
|
||||
-266 -103 -239,15 16,grenade,-34 70 0,,
|
||||
1508 895 -230,3 2,stand,,,
|
||||
1636 279 -228,5 111 153,stand,,,
|
||||
502 896 148,145 160 34,stand,,,
|
||||
509 943 175,159 161,climb,0 79 0,,
|
||||
516 1008 268,160 167,climb,-1 80 0,,
|
||||
660 1008 274,142 116,stand,,,
|
||||
1354 979 -230,70 164 190 73,stand,,,
|
||||
1384 982 -232,163 165,climb,7 0 0,,
|
||||
1458 984 -132,164 166,climb,-4 1 0,,
|
||||
1486 991 -133,165 183 181 182,stand,,,
|
||||
535 1026 268,116 161,stand,,,
|
||||
556 1008 18,147 148,stand,,,
|
||||
1382.53 1493.33 -234.335,78,javelin,,-20.7808 1527.84 731.487,
|
||||
1640.87 -224.875 -224.569,5,crouch,4.31763 135.831 0,,
|
||||
1309.33 -73.6364 -237.941,172 6,claymore,10.7544 -87.4169 0,,
|
||||
1318.17 -45.5842 -238.945,171 6,crouch,3.84949 -95.5303 0,,
|
||||
562.647 17.0226 -216.037,10,crouch,3.50342 -34.2375 0,,
|
||||
-331.308 -49.0278 -233.09,16,crouch,2.11914 91.9734 0,,
|
||||
-300.921 167.496 -235.744,17 44,stand,27.3273 -0.229355 0,,
|
||||
-268.761 394.655 -242.882,17,crouch,1.60278 8.74648 0,,
|
||||
62.3967 1466.16 -128.204,22 21,crouch,8.16162 -34.9297 0,,
|
||||
1411.96 1628.96 -189.562,80 79 179 83 81,stand,28.5358 -1.60265 0,,
|
||||
1527.17 1661.57 -203.622,178 143 81 83 79 0,stand,30.9528 85.4201 0,,
|
||||
1637.37 1805.4 -214.478,81 143,crouch,5.74463 -133.68 0,,
|
||||
1600.3 1018.02 -135.063,166 182 183,prone,6.60706 95.2638 0,,
|
||||
1601.29 816.382 -133.231,181 183 166,prone,3.32764 -123.15 0,,
|
||||
1490.43 833.024 -136.401,166 182 181,prone,7.99133 -162.003 0,,
|
||||
1121.93 482.659 -245.06,110 185 112,stand,35.1001 172.261 0,,
|
||||
971.991 486.75 -239.875,67 184 62 112,stand,23.7018 93.0116 0,,
|
||||
822.12 456.971 -236.589,62,crouch,3.50342 31.3673 0,,
|
||||
788.325 798.664 -224.365,63,crouch,8.3374 4.43983 0,,
|
||||
1241.47 681.283 -230.668,69 189 110,stand,30.2179 57.6288 0,,
|
||||
1244.82 806.093 -234.996,188 70 190,stand,29.696 8.24524 0,,
|
||||
1397.63 805.253 -234.462,189 191 163 70,stand,26.2463 -61.6827 0,,
|
||||
1408.58 675.907 -236.953,3 69 190 111,stand,21.5826 -165.108 0,,
|
||||
|
@@ -0,0 +1,79 @@
|
||||
78
|
||||
-610.36 149.264 201.125,1 45 46,stand,,,
|
||||
-620.079 -126.028 196.89,0 2 25 47,stand,,,
|
||||
-702.762 -282.504 192.434,1 3 41,stand,,,
|
||||
-719.237 -587.184 199.725,2 41 67,stand,,,
|
||||
-228.83 -590.442 196.605,5 41 44,stand,,,
|
||||
197.13 -517.064 192.077,4 6 27 42 26,stand,,,
|
||||
453.886 -586.172 193.314,5 7 26 42 27,stand,,,
|
||||
658.928 -582.484 199.725,6 8 65,stand,,,
|
||||
641.269 -362.832 192.083,7 9 62,stand,,,
|
||||
654.735 -129.902 192.091,8 60 64,stand,,,
|
||||
439.04 -99.5199 194.359,11 59 60 63,stand,,,
|
||||
439.674 45.8541 193.014,10 12 29,stand,,,
|
||||
449.902 267.177 193.16,11 13 37,stand,,,
|
||||
697.337 277.811 192.107,12 14 43 37,stand,,,
|
||||
688.533 535.071 194.929,13 15 37,stand,,,
|
||||
675.569 730.961 193.597,14 16,stand,,,
|
||||
514.588 746.919 192.074,15 17 37,stand,,,
|
||||
267.885 743.71 196.877,16 38 37 70 71,stand,,,
|
||||
-135.858 743.555 199.374,19 34 70,stand,,,
|
||||
-428.645 711.579 192.645,18 20 53,stand,,,
|
||||
-681.602 728.178 198.336,19 21 49,stand,,,
|
||||
-691.159 515.803 192.481,20 22 54,stand,,,
|
||||
-703.595 283.467 203.789,21 23 48 51,stand,,,
|
||||
-471.812 279.935 195.148,22 24 51 50 56,stand,,,
|
||||
-467.516 61.9155 192.077,23 25 29,stand,,,
|
||||
-490.013 -147.907 192.077,24 1 40,stand,,,
|
||||
404.166 -296.141 196.124,6 27 59 61 62 5,stand,,,
|
||||
179.993 -282.173 192.565,26 5 28 6,stand,,,
|
||||
-11.9686 -299.794 194.846,27 29 39,stand,,,
|
||||
3.89531 52.3469 196.736,28 30 11 24,stand,,,
|
||||
6.12919 194.278 194.294,29 31 32,stand,,,
|
||||
276.125 180.321 201.125,30 68 69,stand,,,
|
||||
3.54935 396.17 192.492,30 33 36,stand,,,
|
||||
-195.337 422.622 196.074,32 34 50 53,stand,,,
|
||||
-184.425 659.203 200.415,33 35 18 53 50,stand,,,
|
||||
-31.4959 614.116 193.165,34 55,stand,,,
|
||||
195.783 399.768 195.54,32 37 73 72,stand,,,
|
||||
436.087 429.827 192.077,36 12 14 16 17 13 72 71,stand,,,
|
||||
48.5285 749.341 192.077,17,stand,,,
|
||||
-225.679 -294.882 192.376,28 44 75,stand,,,
|
||||
-407.436 -286.456 202.332,25 41 75 76 74,stand,,,
|
||||
-518.125 -579.692 192.816,40 3 4 2 76,stand,,,
|
||||
179.819 -613.838 193.623,5 6 66,stand,,,
|
||||
692.214 24.3686 201.125,13 57 58,stand,,,
|
||||
-204.915 -503.883 196.582,4 39 74 77,stand,,,
|
||||
-578.858 181.763 201.125,0,crouch,2.93884 -117.368 0,,
|
||||
-636.879 183.35 201.125,0,crouch,5.52612 -77.4818 0,,
|
||||
-722.021 -81.8617 199.363,1,crouch,4.49341 -32.0753 0,,
|
||||
-721.69 238.599 204.141,22,crouch,8.28918 38.2042 0,,
|
||||
-717.375 735.805 198.102,20,crouch,1.90063 -38.1178 0,,
|
||||
-330.922 454.055 196.082,53 51 33 23 34,stand,30.2179 115.378 0,,
|
||||
-493.749 442.764 197.047,50 52 54 23 22,stand,32.4646 97.4205 0,,
|
||||
-498.747 589.755 194.385,51 53 54,stand,38.5071 24.8998 0,,
|
||||
-346.346 607.076 191.093,50 52 34 19 33,stand,23.8293 -56.5968 0,,
|
||||
-583.917 500.134 194.371,52 21 51,stand,67.6868 157.494 0,,
|
||||
36.3219 592.414 192.077,35,crouch,2.59277 166.118 0,,
|
||||
-337.125 279.908 193.033,23,crouch,5.00977 -108.425 0,,
|
||||
700.875 -11.3434 201.125,43,crouch,4.31763 97.9039 0,,
|
||||
659.415 -9.2406 201.125,43,crouch,5.35583 82.8801 0,,
|
||||
382.319 -223.983 194.556,26 10 61,stand,58.3649 64.0551 0,,
|
||||
569.422 -122.883 192.077,10 9 61,stand,32.6349 -120.521 0,,
|
||||
469.804 -281.272 196.191,60 26 59 62,stand,38.3368 -142.796 0,,
|
||||
504.715 -329.334 192.895,61 8 26,stand,37.6447 -15.7167 0,,
|
||||
338.343 -166.563 195.063,10,crouch,6.04797 66.115 0,,
|
||||
694.694 -66.2913 195.291,9,crouch,1.55457 -135.039 0,,
|
||||
692.494 -588.183 199.725,7,crouch,4.14734 144.673 0,,
|
||||
43.8262 -609.968 194.975,42,crouch,4.83948 9.2992 0,,
|
||||
-704.073 -616.875 199.833,3,crouch,4.31763 51.7668 0,,
|
||||
298.875 219.875 201.125,31,crouch,3.80127 -169.921 0,,
|
||||
298.875 156.125 201.125,31,crouch,6.04797 165.217 0,,
|
||||
189.845 618.661 197.159,73 18 17 71,stand,58.5352 -29.477 0,,
|
||||
305.853 621.866 196.545,17 72 70 37,stand,43.3411 -80.9315 0,,
|
||||
311.076 471.698 192.934,71 36 73 37,stand,26.5924 -164.675 0,,
|
||||
184.428 475.797 193.257,36 70 72,stand,30.3882 -131.178 0,,
|
||||
-338.321 -470.433 203.979,75 44 76 40,stand,46.4447 71.5203 0,,
|
||||
-336.137 -321.183 199.695,40 39 74 76,stand,40.2319 31.8047 0,,
|
||||
-403.26 -465.486 206.217,74 41 40 75,stand,35.9143 -142.57 0,,
|
||||
-81.807 -496.513 192.077,44,crouch,5.35034 168.387 0,,
|
||||
|
@@ -0,0 +1,392 @@
|
||||
391
|
||||
246 -2136 -7.87498,1 9 10 252,stand,,,
|
||||
457.781 -2140.8 -7.875,0 2 9,stand,,,
|
||||
725.388 -2129.17 -7.875,1 3 336,stand,,,
|
||||
860.774 -1935.71 -7.875,4 2 104 337 335,stand,,,
|
||||
746.927 -1823.73 -7.875,3 5 338,stand,,,
|
||||
868.257 -1643.33 -7.875,4 6 253 338,stand,,,
|
||||
845.523 -1402.19 -7.875,5 7 237 240,stand,,,
|
||||
543.026 -1398.17 -7.875,6 8 237 103,stand,,,
|
||||
311.782 -1510.7 -7.875,7 9 103 217,stand,,,
|
||||
323.453 -1861.01 -7.875,8 0 11 1,stand,,,
|
||||
10.8028 -2090.28 -7.437,0 252 340,stand,,,
|
||||
152.06 -1732.52 -7.875,9 12 252 217,stand,,,
|
||||
-116.755 -1722.79 16.125,11 13 251 341,stand,,,
|
||||
-393.02 -1701.15 16.125,12 14,stand,,,
|
||||
-394.923 -1854.55 16.125,13 15,stand,,,
|
||||
-535.627 -1854.58 56.125,14 16,stand,,,
|
||||
-756.801 -1847.61 136.125,15 17,stand,,,
|
||||
-799.645 -1661.3 136.125,16 18 343 342,stand,,,
|
||||
-792.344 -1317.21 136.125,17 19 343 342,stand,,,
|
||||
-803.384 -968.591 128.125,18 20 226 227,stand,,,
|
||||
-711.34 -974.736 128.125,19 89,stand,,,
|
||||
-657.87 -645.67 126.636,22 88 89,stand,,,
|
||||
-351.486 -640.436 126.711,21 23,stand,,,
|
||||
-56.1818 -640.536 126.885,22 24,stand,,,
|
||||
279.442 -639.617 134.125,23 25 345,stand,,,
|
||||
292.757 -609.521 152.125,24 26,stand,,,
|
||||
300.213 -524.264 128.125,25 27,stand,,,
|
||||
300.588 -426.107 128.125,26 28 86,stand,,,
|
||||
413.039 -417.299 128.125,27 29,stand,,,
|
||||
408.948 -483.012 122.878,28 30,stand,,,
|
||||
403.591 -600.343 5.54727,29 357,stand,,,
|
||||
640.366 -768.067 0.125002,238 350 353 357,stand,,,
|
||||
814.296 -489.849 0.125002,33 39 351,stand,,,
|
||||
620.796 -508.782 0.124997,32 34 70 385,stand,,,
|
||||
627.194 -174.731 0.124997,33 35 70 73 74,stand,,,
|
||||
700.588 -70.4217 0.124997,34 36 74,stand,,,
|
||||
960.85 40.1507 0.124997,35 37 38 383 384,stand,,,
|
||||
1017.68 339.303 0.124997,36 40 384,stand,,,
|
||||
968.335 -241.038 0.124346,36 39,stand,,,
|
||||
974.769 -478.041 0.124346,38 32 355,stand,,,
|
||||
945.295 337.488 0.125001,37 41 384,stand,,,
|
||||
850.481 337.483 91.9092,40 42,stand,,,
|
||||
762.033 320.221 136.125,41 43,stand,,,
|
||||
663.571 175.695 136.125,42 44 52 309 310,stand,,,
|
||||
639.907 335.009 136.125,43 45 52,stand,,,
|
||||
649.144 498.644 128.125,44 46 246 308,stand,,,
|
||||
805.166 596.01 128.125,45 47 246 307,stand,,,
|
||||
795.628 888.812 128.125,46 48 306 307,stand,,,
|
||||
686.094 1057.41 128.125,47 49 305 306,stand,,,
|
||||
683.754 1174.28 128.125,48 50 305,stand,,,
|
||||
784.283 1165.76 63.6073,49 51,stand,,,
|
||||
900.246 1161.98 0.125001,50 138 148 154 314,stand,,,
|
||||
542.733 210.629 136.125,43 53 44,stand,,,
|
||||
398.096 221.21 134.722,52 54,stand,,,
|
||||
387.047 312.903 134.645,53 55,stand,,,
|
||||
8.51626 312.719 134.652,54 56,stand,,,
|
||||
-205.278 316.173 136.125,55 57,stand,,,
|
||||
-304.679 309.277 45.2112,56 58,stand,,,
|
||||
-381.695 309.254 0.124998,57 59 66,stand,,,
|
||||
-655.998 245.511 1.125,58 60,stand,,,
|
||||
-648.924 103.953 1.125,59 61,stand,,,
|
||||
-812.341 107.76 0.0555241,60 62 64 90,stand,,,
|
||||
-833.265 -61.1445 -0.0986972,61 63 65 64,stand,,,
|
||||
-894.133 -216.684 8.125,62 64 369 370,stand,,,
|
||||
-939.717 -5.37557 -0.575469,63 61 62 90 371,stand,,,
|
||||
-512.675 -50.1624 0.112047,62 66 67 81 373,stand,,,
|
||||
-510.112 180.22 0.0756378,65 58 79,stand,,,
|
||||
-439.243 -268.17 0.0252064,65 68 80 245 373,stand,,,
|
||||
-143.184 -277.655 0.0189128,67 69 244,stand,,,
|
||||
209.233 -281.076 0.125001,68 70 71 75 242 377,stand,,,
|
||||
538.062 -297.6 0.124998,69 33 34 377,stand,,,
|
||||
316.481 -59.4666 0.124998,69 72 74 377,stand,,,
|
||||
323.396 177.755 0.124998,71 73 241 379 380,stand,,,
|
||||
613.116 180.646 0.124998,34 72 378,stand,,,
|
||||
588.885 -53.699 0.124998,71 34 35,stand,,,
|
||||
112.22 -154.922 0.124998,69 76 78,stand,,,
|
||||
-62.9245 -140.582 0.124998,75 77,stand,,,
|
||||
-102.76 30.4842 0.124998,76 78 79,stand,,,
|
||||
95.2437 36.4816 0.124998,77 75,stand,,,
|
||||
-295.217 145.894 0.124998,77 66 80 241 382,stand,,,
|
||||
-292.196 -111.641 0.124998,79 67,stand,,,
|
||||
-656.763 -235.181 8.125,65 82,stand,,,
|
||||
-656.472 -333.755 104.125,81 83,stand,,,
|
||||
-621.916 -497.179 128.125,82 84 87,stand,,,
|
||||
-452.099 -521.657 128.125,83 85,stand,,,
|
||||
-143.238 -498.88 128.125,84 86,stand,,,
|
||||
148.785 -436.422 128.125,85 27,stand,,,
|
||||
-745.195 -506.708 126.718,83 88,stand,,,
|
||||
-745.275 -653.267 126.625,87 21,stand,,,
|
||||
-652.23 -968.652 128.125,20 21 344,stand,,,
|
||||
-874.829 139.838 -0.227693,64 61 91 371,stand,,,
|
||||
-884.556 329.113 -7.875,90 92 164 368 165,stand,,,
|
||||
-1162.89 337.043 -7.875,91 93 261 367,stand,,,
|
||||
-1249.99 116.663 -7.875,92 94 261 269,stand,,,
|
||||
-1189.67 -279.062 -7.875,93 95 201,stand,,,
|
||||
-1158.94 -547.261 -7.875,94 96 236 201,stand,,,
|
||||
-852.767 -716.157 -7.875,95 235 264,stand,,,
|
||||
-470.421 -833.923 -6.875,98 264,stand,,,
|
||||
-55.0929 -939.525 -6.875,97 99 101 263,stand,,,
|
||||
164.663 -784.629 -7.875,98 100 101,stand,,,
|
||||
180.125 -697.163 -7.875,99,stand,,,
|
||||
209.702 -986.244 -7.875,98 102 103 99 358,stand,,,
|
||||
407.241 -1006.82 -7.875,101 103 254 237 358,stand,,,
|
||||
324.21 -1275.63 -7.875,102 8 101 250 217 7,stand,,,
|
||||
1029.99 -1733.91 -7.875,3 105 253,stand,,,
|
||||
1270.04 -1733.68 -0.733087,104 106 334,stand,,,
|
||||
1541.98 -1706.75 0.125,105 107 108 114 333,stand,,,
|
||||
1550.95 -1453.96 0.125,106 114 332,stand,,,
|
||||
1446.95 -1620.44 0.125,106 113,stand,,,
|
||||
1263.66 -1593.88 0.125,110 113,stand,,,
|
||||
1158.9 -1606.81 0.125,109 111 339,stand,,,
|
||||
1163.45 -1430.71 0.125,110 112 339,stand,,,
|
||||
1373.23 -1428.39 0.125,111 113,stand,,,
|
||||
1355.25 -1591.16 0.125,112 109 108,stand,,,
|
||||
1659.87 -1624.51 0.125,106 107 115 333,stand,,,
|
||||
1781.66 -1603.1 -1.375,114 116 331,stand,,,
|
||||
1785.66 -1496.21 0.125001,115 117,stand,,,
|
||||
1794.94 -1337.29 -63.875,116 118 255 258,stand,,,
|
||||
1766.27 -1067.63 -64.4429,117 119 255 329,stand,,,
|
||||
1567.21 -1029.16 -64.026,118 120 239 359 360,stand,,,
|
||||
1541.58 -758.955 -65.5161,119 121 327,stand,,,
|
||||
1505.59 -421.273 -63.875,120 122 326 325,stand,,,
|
||||
1488.28 -112.177 -63.875,121 123 144 143 319,stand,,,
|
||||
1609.79 -132.77 -63.875,122 124 319,stand,,,
|
||||
1801.4 -135.957 -7.875,123 125,stand,,,
|
||||
1799.2 87.7783 -7.875,124 126 324,stand,,,
|
||||
1780.6 255.929 0.125002,125 127 128 323,stand,,,
|
||||
1698.9 333.499 0.125002,126 128 129,stand,,,
|
||||
1563.82 230.125 0.125002,126 127 321 320 323,stand,,,
|
||||
1683.22 457.72 -7.875,127 130 317,stand,,,
|
||||
1672.66 640.213 0.125001,129 131 134 140,stand,,,
|
||||
1821.43 699.843 0.125001,130 132,stand,,,
|
||||
1791.53 931.665 0.125001,131 133,stand,,,
|
||||
1586.6 946.169 0.125001,132 134 135,stand,,,
|
||||
1660.32 829.096 0.125001,130 133,stand,,,
|
||||
1413.68 939.418 -7.875,133 136 139 140,stand,,,
|
||||
1451.25 1185.16 -7.875,135 137 316,stand,,,
|
||||
1157.18 1285.62 -7.875,136 154 314,stand,,,
|
||||
1092.84 1010.04 -7.875,51 139 146,stand,,,
|
||||
1285.14 927.599 -7.875,138 135 389,stand,,,
|
||||
1435.86 657.95 -7.875,135 130 141 318 322 390,stand,,,
|
||||
1275.61 473.941 -7.875,140 142 145 322,stand,,,
|
||||
1258.07 336.29 -18.1552,141 143 145,stand,,,
|
||||
1256.89 47.2962 -64.0718,142 144 122 319,stand,,,
|
||||
1285.21 -77.6046 -63.875,122 143,stand,,,
|
||||
1084.05 479.547 -7.875,142 146 311 141,stand,,,
|
||||
997.49 730.104 -7.875,145 147 138 311,stand,,,
|
||||
779.939 747.553 0.125002,146 148 149,stand,,,
|
||||
806.874 951.861 0.125002,147 51 303,stand,,,
|
||||
580.178 778.872 0.125002,147 150 298,stand,,,
|
||||
410.102 763.166 -7.875,149 151 168 297,stand,,,
|
||||
399.029 1094.62 -7.875,150 152 155 298,stand,,,
|
||||
525.25 1302.05 -8.76462,151 298 299 300 304,stand,,,
|
||||
786.981 1305.92 -8.69539,154 304,stand,,,
|
||||
1022.48 1294.44 -8.41029,153 137 51 314,stand,,,
|
||||
225.562 1154.38 -7.875,151 156 299,stand,,,
|
||||
94.5595 1054.89 -7.875,155 157,stand,,,
|
||||
-234.251 1023.58 -7.875,156 158 161,stand,,,
|
||||
-262.059 1220.48 -7.875,157 159,stand,,,
|
||||
-521.807 1191.31 -7.875,158 160 162,stand,,,
|
||||
-427.661 1034.79 -7.875,159 161,stand,,,
|
||||
-339.905 933.885 -7.875,160 157,stand,,,
|
||||
-783.334 1064.75 -7.32552,159 163 169 260 283 284,stand,,,
|
||||
-836.914 820.541 -7.62995,162 164 165 282 283,stand,,,
|
||||
-857.894 525.976 -7.74915,163 91 165,stand,,,
|
||||
-688.414 580.467 -7.00435,163 166 164 91,stand,,,
|
||||
-316.814 582.726 -9.30213,165 167,stand,,,
|
||||
-76.9121 489.25 -8.60707,166 168,stand,,,
|
||||
261.648 583.987 -7.878,167 150 297,stand,,,
|
||||
-990.527 922.933 -7.875,162 170 185 259,stand,,,
|
||||
-1161.85 872.105 0.125001,169 171,stand,,,
|
||||
-1272.57 863.678 102.96,170 175,stand,,,
|
||||
-1648.24 811.114 134.798,173 176,stand,,,
|
||||
-1574.54 687.919 143.598,172 174 177 275,stand,,,
|
||||
-1402.61 713.007 141.806,173 176 273,stand,,,
|
||||
-1367.92 842.797 132.535,171 176,stand,,,
|
||||
-1485.25 865.183 130.936,175 172 174,stand,,,
|
||||
-1780.06 704.837 128.125,173 178 271 272,stand,,,
|
||||
-1777.51 512.372 128.125,177 179,stand,,,
|
||||
-1933.22 510.392 128.125,178 180,stand,,,
|
||||
-1928.31 600.871 122.597,179 181,stand,,,
|
||||
-1926.42 799.47 0.125003,180 182 270,stand,,,
|
||||
-1764.75 798.251 0.125003,181 183 186 188 189,stand,,,
|
||||
-1776.91 966.737 -7.875,182 184 276 277,stand,,,
|
||||
-1581.78 1053.97 -7.875,183 185 277,stand,,,
|
||||
-1293.45 1028.42 -7.875,184 169 259 260,stand,,,
|
||||
-1528.82 723.683 0.124999,182 187 280 188 281,stand,,,
|
||||
-1484.96 570.389 0.124999,186 188 279,stand,,,
|
||||
-1695.97 634.307 0.124999,187 182 189 186,stand,,,
|
||||
-1778.16 519.571 0.125,188 182 190,stand,,,
|
||||
-1762.3 306.427 -7.875,189 191 265 269,stand,,,
|
||||
-1728.87 78.8827 8.36867,190 192 199 269,stand,,,
|
||||
-1924.83 -4.11697 -7.9952,191 193 198 265,stand,,,
|
||||
-2177.45 -35.5582 -7.80649,192 194 268,stand,,,
|
||||
-2193.7 -369.055 -6.2048,193 195 266 267,stand,,,
|
||||
-1906.47 -409.667 -15.0744,194 196 198 205 266,stand,,,
|
||||
-1903.56 -561.547 -1.76255,195 197,stand,,,
|
||||
-1856.19 -707.95 -7.875,196 203 207,stand,,,
|
||||
-1903.15 -178.251 -12.4097,195 192,stand,,,
|
||||
-1624.48 -42.1576 15.9944,191 200 206 269,stand,,,
|
||||
-1483.51 -244.964 -7.875,199 201 206,stand,,,
|
||||
-1299.26 -456.877 -7.875,200 202 95 94,stand,,,
|
||||
-1387.37 -620.574 -7.875,201 203,stand,,,
|
||||
-1513.52 -704.401 -7.875,202 197 204 207 366,stand,,,
|
||||
-1599.75 -575.772 0.122553,203 205,stand,,,
|
||||
-1625.03 -457.985 24.5845,204 206 195,stand,,,
|
||||
-1597.39 -253.761 9.16097,205 199 200,stand,,,
|
||||
-1739.06 -785.488 -9.19791,197 203 364 365,stand,,,
|
||||
-1739.19 -1129.23 -9.19551,209 210 220 365,stand,,,
|
||||
-1729.26 -1358.97 -7.875,208 210 211 212 219 220,stand,,,
|
||||
-1895.25 -1347.11 -7.875,209 208 361 362,stand,,,
|
||||
-1758.43 -1519.05 0.125001,209 363,stand,,,
|
||||
-1524.29 -1455.44 -7.96892,209 213,stand,,,
|
||||
-1265.05 -1538.65 -7.90288,212 214 387 386,stand,,,
|
||||
-959.748 -1479.5 -7.875,213 215 247,stand,,,
|
||||
-583.161 -1501.81 -7.875,214 216 248,stand,,,
|
||||
-228.312 -1503.48 -7.875,215 217 249 251,stand,,,
|
||||
124.508 -1516.97 -7.875,216 8 103 250 11,stand,,,
|
||||
-1262.49 -1259.19 -0.875,219 247 386 387,stand,,,
|
||||
-1531.11 -1221.21 -1.50341,218 209 220,stand,,,
|
||||
-1636.66 -1183.65 -7.875,219 221 208 209,stand,,,
|
||||
-1635.1 -1070.46 61.4331,220 222,stand,,,
|
||||
-1622.74 -944.378 128.125,221 233,stand,,,
|
||||
-1380.58 -932.703 127.125,224 234,stand,,,
|
||||
-1363.46 -1082.03 127.125,223 230 232,stand,,,
|
||||
-1015.47 -1076.87 128.125,226 231,stand,,,
|
||||
-860.783 -1077.94 128.125,225 19,stand,,,
|
||||
-922.451 -929.661 128.125,19 228,stand,,,
|
||||
-1203.81 -929.875 128.125,227 229,stand,,,
|
||||
-1202.02 -1042.86 128.125,228 230 231,stand,,,
|
||||
-1230 -1084.5 128.125,224 229 231,stand,,,
|
||||
-1119.22 -1100.39 128.125,229 225 230,stand,,,
|
||||
-1554.01 -1093.32 127.639,224 233,stand,,,
|
||||
-1536.65 -982.927 127.417,232 222 234,stand,,,
|
||||
-1512.87 -949.644 127.125,233 223,stand,,,
|
||||
-756.965 -457.297 -2.42493,96 236,stand,,,
|
||||
-944.486 -528.639 -7.875,95 235,stand,,,
|
||||
749.665 -1115.2 -7.87673,6 7 254 240 347 102,stand,,,
|
||||
689.06 -906.811 0.124999,31 254 352 353,stand,,,
|
||||
1310.3 -1257.26 -64.8086,119 240 359 360,stand,,,
|
||||
1117.86 -1266.4 -17.6638,239 6 237,stand,,,
|
||||
34.495 175.955 0.124997,72 79 382,stand,,,
|
||||
291.376 -343.129 0.124997,69 243,stand,,,
|
||||
258.357 -496.831 0.124997,242 244 374 376,stand,,,
|
||||
-83.8943 -474.459 0.124997,243 68 245,stand,,,
|
||||
-391.222 -463.585 0.124997,244 67 372 375,stand,,,
|
||||
800.972 463.145 128.125,46 45,stand,,,
|
||||
-1012.61 -1285.31 -1.48098,214 218 248,stand,,,
|
||||
-776.866 -1393.78 0.125001,247 215,stand,,,
|
||||
-264.296 -1311.42 -7.875,216 250,stand,,,
|
||||
35.5875 -1312.41 -7.875,249 103 217,stand,,,
|
||||
-193.233 -1617.76 30.0379,12 216,stand,,,
|
||||
55.7989 -1991.05 -6.58233,11 10 0 341,stand,,,
|
||||
1041.11 -1614.3 -6.89839,104 5,stand,,,
|
||||
709.894 -1003.95 -7.875,102 237 238,stand,,,
|
||||
1998.32 -1153.73 -64.375,117 118 256 258,stand,,,
|
||||
2453.83 -1022.64 -59.1054,255 257 330,stand,,,
|
||||
2474.44 -1277.27 -61.7901,256 258,stand,,,
|
||||
1989.08 -1293.17 -60.4115,257 117 255,stand,,,
|
||||
-1166.14 1304.85 -7.875,169 260 185,stand,,,
|
||||
-790.878 1327.76 -7.36838,162 259 185,stand,,,
|
||||
-1385.17 280.426 -7.875,93 92 269,stand,,,
|
||||
-641.456 -1059.07 -6.31334,263 264,stand,,,
|
||||
-200.129 -1068.84 -1.1591,262 98,stand,,,
|
||||
-636.74 -788.569 -6.993,262 96 97,stand,,,
|
||||
-1954.9 421.396 19.0496,190 192,crouch,5.18005 -25.8948 0,,
|
||||
-2014.58 -230.354 -12.4692,195 194,stand,14.502 -83.9136 0,,
|
||||
-2408.88 -550.915 0.76444,194 268,crouch,-0.862427 37.8149 0,,
|
||||
-2405.85 112.875 14.4724,193 267,crouch,3.97156 -44.7198 0,,
|
||||
-1581.21 238.377 -7.875,190 199 191 93 261,stand,10.7062 138.988 0,,
|
||||
-1960.88 888.875 0.124999,181,crouch,4.6637 -55.2722 0,,
|
||||
-1840.34 816.875 132.125,272 177,crouch,1.37878 -68.9117 0,,
|
||||
-1743.13 816.843 128.125,271 177,crouch,7.25098 -107.073 0,,
|
||||
-1347.96 497.978 138.201,274 174,crouch,16.4026 -35.5902 0,,
|
||||
-1514.12 478.306 129.757,275 273,crouch,11.9147 -91.5326 0,,
|
||||
-1681.91 472.844 129.439,274 173,crouch,16.0565 -84.2761 0,,
|
||||
-1912.24 1034.35 2.92386,183 277 278,stand,12.7771 -46.9666 0,,
|
||||
-1740.95 1085.83 -7.85259,184 183 276,stand,11.3983 32.2888 0,,
|
||||
-1960.88 1110.69 46.4226,276,crouch,7.08069 -22.4506 0,,
|
||||
-1350.11 486.3 16.325,187 280,crouch,5.18005 -102.92 0,,
|
||||
-1391.34 758.839 0.125,186 279 281,stand,12.9474 -125.37 0,,
|
||||
-1477.49 875.133 0.125,280 186,stand,10.014 -96.3556 0,,
|
||||
-641.922 751.564 -7.875,163 283,stand,17.7869 147.953 0,,
|
||||
-626.103 873.047 19.6652,282 163 162 284,stand,7.42676 80.9528 0,,
|
||||
-615.208 980.182 55.6731,162 283 285,stand,23.4833 98.7396 0,,
|
||||
-537.192 985.434 119.817,284 286,stand,33.6676 -96.8884 0,,
|
||||
-544.033 841.401 118.408,287 285 288,stand,24.1754 -87.561 0,,
|
||||
-531.747 755.869 125.125,286 290,stand,17.7869 51.9489 0,,
|
||||
-424.227 847.833 113.185,286 289,stand,11.7389 0.664673 0,,
|
||||
-286.42 843.503 114.048,288 291,stand,12.7771 0.488892 0,,
|
||||
-393.725 757.462 111.853,287,stand,16.2323 -174.419 0,,
|
||||
67.5526 847.282 100.125,289 292 294,stand,4.31763 161.071 0,,
|
||||
44.1674 967.878 119.456,293 291,stand,22.099 0.664673 0,,
|
||||
202.34 957.725 118.885,292 297,prone,15.3644 0.664673 0,,
|
||||
63.5982 662.396 103.794,291 295 296,stand,20.0281 -178.907 0,,
|
||||
163.088 644.512 100.125,294,prone,11.7389 3.42224 0,,
|
||||
-178.671 659.585 107.739,294,stand,12.431 168.662 0,,
|
||||
208.833 850.86 46.5069,168 150 293,stand,46.4447 84.408 0,,
|
||||
519.657 968.644 -7.875,151 152 149,stand,7.94312 85.9625 0,,
|
||||
81.125 1270.48 17.3079,155 152,crouch,5.35034 -39.9133 0,,
|
||||
407.125 1384.88 11.7164,152,crouch,5.52612 -27.4823 0,,
|
||||
703.522 1187.86 -0.183787,302 304,stand,2.76306 -88.0829 0,,
|
||||
607.125 919.125 -3.52272,303 301,crouch,4.31763 59.1998 0,,
|
||||
751.041 1027.5 -5.14355,148 302,stand,3.79578 17.9352 0,,
|
||||
701.757 1293.6 -8.84462,301 152 153,stand,16.4026 94.0759 0,,
|
||||
607.596 1087.44 138.481,49 48,crouch,13.8153 -177.171 0,,
|
||||
816.005 1042.87 128.125,48 47,stand,14.502 -19.0228 0,,
|
||||
880.87 781.855 128.332,47 46,crouch,19.5117 1.86768 0,,
|
||||
607.125 471.698 128.156,45,crouch,22.099 176.259 0,,
|
||||
785.81 30.0106 136.125,43,prone,21.9287 -91.192 0,,
|
||||
524.049 38.3937 136.125,43,prone,14.3317 -85.3253 0,,
|
||||
924.125 403.125 2.90024,145 146,crouch,-0.170288 50.7404 0,,
|
||||
1216.12 1111.35 138.125,313 315,stand,44.0277 154.858 0,,
|
||||
1113.74 1160.6 47.5198,314 312,stand,46.4447 153.133 0,,
|
||||
1015.03 1222.92 -7.97807,137 51 154 313,stand,29.1797 147.953 0,,
|
||||
1306.69 1035.26 138.125,312,prone,17.6111 -78.9313 0,,
|
||||
1340.23 1384.87 -2.30003,136,crouch,8.97583 -62.1826 0,,
|
||||
1559.13 451.803 -7.875,129,crouch,2.58728 3.26294 0,,
|
||||
1522.88 399.128 -7.875,140 322,crouch,0.346069 144.157 0,,
|
||||
1547.54 -0.0986628 -63.875,143 122 123 324,stand,6.73462 167.816 0,,
|
||||
1445.88 337.995 0.125001,128 321,stand,10.5304 94.2627 0,,
|
||||
1359.13 145.638 0.125001,128 320,crouch,1.03821 27.7899 0,,
|
||||
1438.6 414.574 -7.8751,318 141 140,stand,12.431 -88.0609 0,,
|
||||
1689.08 185.457 0.125001,128 126,stand,17.4408 171.606 0,,
|
||||
1670.76 56.0725 -60.6602,319 125,stand,32.113 -177.839 0,,
|
||||
1648.88 -313.125 -63.875,326 121,crouch,3.10913 -130.367 0,,
|
||||
1648.88 -432.575 -63.875,325 121,crouch,3.10913 137.776 0,,
|
||||
1391.13 -896.075 -63.875,120,crouch,2.58728 55.4169 0,,
|
||||
1988.69 -1003.63 -7.875,329,stand,13.8153 -2.43712 0,,
|
||||
1821.3 -1022.18 -55.875,118 328,stand,23.6536 -159.042 0,,
|
||||
2536.88 -975.125 -37.4769,256,crouch,3.27942 -155.592 0,,
|
||||
1790.59 -1776.88 9.03722,115,crouch,5.35034 92.3529 0,,
|
||||
1534.18 -1367.13 0.125001,107,crouch,12.085 91.4905 0,,
|
||||
1704.88 -1776.88 34.225,114 106,crouch,8.97583 130.684 0,,
|
||||
1384.88 -1832.88 3.62837,105,crouch,3.10913 157.793 0,,
|
||||
1059.1 -2208.35 6.4424,336 337 3,crouch,1.03821 138.281 0,,
|
||||
899.002 -2179.53 -5.76356,335 2,stand,3.62549 134.485 0,,
|
||||
1033.8 -1907.61 -7.39915,3 335,stand,12.7771 -175.626 0,,
|
||||
606.45 -1551.13 0.51604,4 5,crouch,4.14185 -41.8066 0,,
|
||||
1111.13 -1483.76 0.124998,111 110,crouch,6.04248 178.167 0,,
|
||||
-87.1946 -2222.88 11.7684,10,crouch,7.59705 42.1014 0,,
|
||||
-32.0908 -1836.99 -5.70014,12 252,stand,7.94312 107.19 0,,
|
||||
-872.869 -1440.46 136.238,343 18 17,crouch,17.9572 179.705 0,,
|
||||
-727.125 -1479.56 136.222,17 342 18,crouch,10.014 0.128188 0,,
|
||||
-688.875 -1070.88 128.125,89,crouch,9.66797 44.1449 0,,
|
||||
271.693 -804.559 134.125,346 24,stand,22.2748 -1.78343 0,,
|
||||
485.741 -799.416 134.125,345,stand,16.9189 96.8079 0,,
|
||||
1072.88 -979.125 36.125,237,crouch,5.05798 -146.984 0,,
|
||||
1064.88 -936.875 27.125,352 351,crouch,2.29492 151.888 0,,
|
||||
1064.88 -631.125 27.125,351,crouch,2.46521 -140.431 0,,
|
||||
712.553 -681.115 0.125,351 31 354,stand,20.9442 -45.6409 0,,
|
||||
856.614 -764.836 0.125,352 350 348 349 32,stand,18.5272 -63.2464 0,,
|
||||
763.735 -855.569 0.125,238 351 348,stand,17.489 -135.421 0,,
|
||||
555.125 -936.875 0.125,31 238,crouch,6.43677 40.1624 0,,
|
||||
543.125 -621.125 0.125,350,crouch,3.32764 -19.9219 0,,
|
||||
1061.81 -576.875 45.125,39,crouch,4.19556 152.745 0,,
|
||||
275.578 -615.125 0.124996,357,crouch,1.08643 -33.7317 0,,
|
||||
358.514 -769.026 0.124996,356 31 30 358,stand,32.6831 -87.0868 0,,
|
||||
352.949 -858.534 -1.93138,102 101 357,stand,18.3514 104.586 0,,
|
||||
1582.87 -1328.87 -55.658,239 119,crouch,1.37878 133.754 0,,
|
||||
1295.13 -975.125 -61.6178,119 239,crouch,3.62549 -40.6378 0,,
|
||||
-1952.88 -1471.36 -1.97354,210,crouch,6.55884 45.0006 0,,
|
||||
-1952.88 -1161.13 60.5356,210,crouch,9.3219 -34.0735 0,,
|
||||
-1792.88 -1648.88 0.125,211,crouch,5.69641 70.0494 0,,
|
||||
-1620.26 -1030.13 -6.49136,207 365,crouch,7.42676 135.319 0,,
|
||||
-1740.95 -957.468 -9.16162,364 207 208,stand,8.63525 -68.2519 0,,
|
||||
-1365.13 -816.875 3.90628,203,crouch,3.27942 130.82 0,,
|
||||
-1296.88 542.875 10.3275,92,crouch,4.6637 -37.5177 0,,
|
||||
-719.125 207.125 12.8121,91,crouch,5.69641 125.651 0,,
|
||||
-742.111 -330.01 0.124999,63,crouch,3.80127 116.505 0,,
|
||||
-1040.88 -360.875 27.125,63,crouch,8.63525 42.4353 0,,
|
||||
-1040.88 148.875 0.0105602,64 90,crouch,6.55884 -41.308 0,,
|
||||
-518.617 -500.443 0.124998,373 245,stand,15.0238 49.3347 0,,
|
||||
-534.285 -310.251 0.124998,67 65 372,stand,14.6777 81.6235 0,,
|
||||
336.875 -576.875 0.124998,243,crouch,2.93335 129.112 0,,
|
||||
-178.925 -556.875 9.125,245,crouch,2.41699 138.093 0,,
|
||||
-22.875 -560.875 0.124999,243,crouch,2.2467 45.0336 0,,
|
||||
396.77 -177.996 0.124998,71 70 69,stand,17.9572 41.062 0,,
|
||||
744.875 270.143 0.124998,73,crouch,2.93335 -132.467 0,,
|
||||
403.875 344.875 0.124998,72,crouch,5.18005 -115.202 0,,
|
||||
167.125 344.875 0.124998,72,crouch,3.4552 -51.1407 0,,
|
||||
-229.378 344.875 0.125,382,crouch,4.31763 -126.425 0,,
|
||||
-238.793 195.303 0.0102215,381 79 241,stand,12.7771 92.5165 0,,
|
||||
857.253 264.875 34.125,36 384,crouch,8.97583 -72.0422 0,,
|
||||
956.849 243.755 0.125,383 37 40 36,stand,12.7771 162.258 0,,
|
||||
500.87 -567.217 0.125,33,crouch,4.83398 49.3347 0,,
|
||||
-1331.14 -1377.16 -7.51121,213 218,stand,44.7198 -51.6266 0,,
|
||||
-1178.35 -1398.56 -6.09428,213 218,stand,28.8336 -94.4458 0,,
|
||||
1222.12 705.405 4.34208,390 389,crouch,8.1134 53.3478 0,,
|
||||
1244.09 851.825 -7.875,388 139,stand,22.9669 80.8026 0,,
|
||||
1358.15 722.536 -7.78636,140 388,stand,26.7627 -151.432 0,,
|
||||
|
@@ -0,0 +1,526 @@
|
||||
525
|
||||
-50.5181 -2195.25 121.251,1 289 336,stand,,,
|
||||
-10.9149 -1753.02 119.978,0 79 291 335,stand,,,
|
||||
-21.3191 -1453.22 106.28,79 291 83 333 334,stand,,,
|
||||
-627.798 -1467.87 122.458,4 12 13 14 293 331 332,stand,,,
|
||||
-681.093 -1898.47 207.106,3 5 9 12 10 293 294 329,stand,,,
|
||||
-709.404 -2340.53 208.125,4 6 6 294 318 326,stand,,,
|
||||
-1036.62 -2337.7 212.125,5 7 9 8 5 327,stand,,,
|
||||
-1396.76 -2296.75 208.125,6 8 9 321,stand,,,
|
||||
-1423.12 -2068.89 209.233,7 9 6,stand,,,
|
||||
-1058.4 -2104.48 208.125,8 6 7 4 10 294,stand,,,
|
||||
-1056.49 -1949.48 212.125,9 11 4 294,stand,,,
|
||||
-1051.19 -1699.61 212.125,10 12,stand,,,
|
||||
-1043.23 -1502.37 108.404,11 4 3 14 13 29 293,stand,,,
|
||||
-798.777 -1166.92 74.2097,3 14 12 69 70 30 319,stand,,,
|
||||
-1161.34 -1254.03 63.4069,13 12 3 15 29 30 68 69,stand,,,
|
||||
-1558.74 -1289.44 8.125,14 16 29 34 513,stand,,,
|
||||
-1722.48 -1515.68 8.125,15 17 28 514,stand,,,
|
||||
-1864.3 -1520.37 8.125,16 18 302,stand,,,
|
||||
-1887.85 -1358.84 26.125,17 19 507,stand,,,
|
||||
-2031.85 -1325.55 26.125,18 20 506 508,stand,,,
|
||||
-2362.35 -1375.29 42.125,19 503 505,stand,,,
|
||||
-2421.37 -951.542 26.125,299 499 501 503,stand,,,
|
||||
-2134.54 -450.115 1.58645,23 35 36 295 479 497,stand,,,
|
||||
-2111.93 -652.206 26.125,22 24 493 498,stand,,,
|
||||
-1888.04 -658.752 26.125,23 25 495 496,stand,,,
|
||||
-1849.55 -849.038 26.125,24 26 498 520,stand,,,
|
||||
-1954.43 -1073.96 26.125,25 508,stand,,,
|
||||
-2079.4 -978.951 26.125,498 499 508,stand,,,
|
||||
-1474.6 -1536.48 10.0511,16 29,stand,,,
|
||||
-1226.77 -1321.27 46.8153,28 14 15 12,stand,,,
|
||||
-1184.02 -1058.29 46.0535,14 31 68 13,stand,,,
|
||||
-1193.56 -655.874 12.125,30 32 67 68,stand,,,
|
||||
-1240.69 -434.595 14.23,31 33 67 292,stand,,,
|
||||
-1527.42 -449.811 11.2924,32 35 50 521,stand,,,
|
||||
-1600.57 -1059.58 7.125,15 519 518 524,stand,,,
|
||||
-1856.18 -428.6 9.70328,33 22 50 36 497,stand,,,
|
||||
-2054.01 -63.7261 15.5722,22 37 46 44 35 477,stand,,,
|
||||
-2084.75 191.197 15.2847,36 38 44 46 43,stand,,,
|
||||
-2264.19 403.844 14.5991,37 39 43 483,stand,,,
|
||||
-2241.15 614.2 10.7645,38 40 42 476,stand,,,
|
||||
-2227.88 1048.3 14.8577,39 41 303,stand,,,
|
||||
-1947.35 1048.56 10.7849,40 42,stand,,,
|
||||
-1805.35 701.359 14.5819,41 39 43,stand,,,
|
||||
-1790.6 414.417 12.125,38 44 42 37 47,stand,,,
|
||||
-1763.83 196.946 16.125,43 37 45 46 36,stand,,,
|
||||
-1534.06 110.346 12.2867,44 46 49 51 50,stand,,,
|
||||
-1787.83 -27.8083 9.15241,45 44 36 37 50 51,stand,,,
|
||||
-1687.03 522.677 14.3225,43 48 262,stand,,,
|
||||
-1477.82 487.437 19.125,47 49,stand,,,
|
||||
-1453.97 215.461 19.125,48 45 52,stand,,,
|
||||
-1584.29 -261.724 8.125,46 35 33 51 45,stand,,,
|
||||
-1412.59 -15.5771 10.2127,50 46 45 61 292,stand,,,
|
||||
-1247.94 230.464 19.125,49 53 61,stand,,,
|
||||
-1281.94 431.839 19.125,52 54,stand,,,
|
||||
-1361.57 544.513 19.125,53 55,stand,,,
|
||||
-1152.71 555.086 187.125,54 56,stand,,,
|
||||
-1048.56 552.622 187.125,55 57,stand,,,
|
||||
-1081.15 435.708 187.125,56 58,stand,,,
|
||||
-1273.14 350.353 187.125,57 59,stand,,,
|
||||
-1209.66 173.935 187.125,58 60,stand,,,
|
||||
-1049.67 182.814 187.125,59,stand,,,
|
||||
-1113.67 -23.0699 9.58827,52 51 62 292 128,stand,,,
|
||||
-861.384 23.5082 15.3279,61 63 65 132 130 320,stand,,,
|
||||
-639.251 91.5547 16.125,62 64 65 132 131 130 66,stand,,,
|
||||
-625.871 185.689 16.125,63 242 243 244,stand,,,
|
||||
-781.212 -367.603 16.125,63 62 66 126 130 132 292,stand,,,
|
||||
-911.768 -382.778 16.5617,65 67 63,stand,,,
|
||||
-930.751 -483.841 17.4081,66 32 31 68 292,stand,,,
|
||||
-942.001 -888.65 19.9751,67 31 69 30 14,stand,,,
|
||||
-934.519 -1073.82 57.8385,68 13 14 319,stand,,,
|
||||
-620.512 -1155.97 168.125,13 71 455,stand,,,
|
||||
-567.832 -1161.07 168.125,70 72,stand,,,
|
||||
-581.228 -1267.86 264.125,71 73,stand,,,
|
||||
-570.663 -1336.37 264.125,72 74,stand,,,
|
||||
-479.488 -1344.21 264.125,73 75 454,stand,,,
|
||||
-489.193 -1446.03 264.125,74 76,stand,,,
|
||||
-101.056 -1419.05 264.125,75 77 453,stand,,,
|
||||
-99.7972 -1255.13 168.125,76 78,stand,,,
|
||||
62.7035 -1277.43 72.125,77 79 80 317,stand,,,
|
||||
128.246 -1339.38 72.125,78 2 80 1 82 291,stand,,,
|
||||
216.954 -1234.49 72.125,79 81 82 78 291 317 450,stand,,,
|
||||
201.391 -1099.35 19.9006,80 111 313,stand,,,
|
||||
317.923 -1383.15 80.125,79 80 83 291 450,stand,,,
|
||||
618.51 -1766.22 118.702,82 290 2 84 291 315 316 289,stand,,,
|
||||
1101.59 -1737.96 113.124,85 83 315,stand,,,
|
||||
1342 -1720.01 110.126,84 86 280,stand,,,
|
||||
1465.52 -1652.16 62.125,85 87 101 280,stand,,,
|
||||
1467.93 -1534.49 53.4117,86 88 101 282,stand,,,
|
||||
1444.98 -1279.96 196.125,87 89,stand,,,
|
||||
1255.04 -1215.62 196.125,88 90,stand,,,
|
||||
1058.79 -1265.53 196.125,89 91,stand,,,
|
||||
1046.25 -1455.3 196.125,90 92,stand,,,
|
||||
770.224 -1358.82 196.125,91 93,stand,,,
|
||||
687.444 -1548.42 196.125,92 94,stand,,,
|
||||
758.369 -1573.94 196.125,93 95,stand,,,
|
||||
936.384 -1560.53 20.125,94 96,stand,,,
|
||||
964.094 -1424.27 20.125,95 97 311,stand,,,
|
||||
1112.44 -1059.21 16.125,96 98 106 108 113 311,stand,,,
|
||||
1282.25 -1016.61 10.5713,97 99 103 102 105,stand,,,
|
||||
1441.17 -1048.14 16.125,98 100 102 103 105,stand,,,
|
||||
1584.51 -1243.49 29.2818,99 101 105 283 282 281,stand,,,
|
||||
1584.83 -1551.18 64.9268,100 87 86 282,stand,,,
|
||||
1432.65 -652.751 24.015,99 103 98 104 118,stand,,,
|
||||
1332.46 -781.983 16.125,102 98 99 105 106,stand,,,
|
||||
1586.81 -610.54 22.4492,102 105 118 163 287 288,stand,,,
|
||||
1595.73 -913.168 8.125,104 100 99 98 103 286,stand,,,
|
||||
1017.89 -804.136 10.6685,103 107 97 113 108,stand,,,
|
||||
865.291 -712.506 24.125,106 113 116 114 119,stand,,,
|
||||
845.589 -1046.8 16.125,97 109 113 106 112 347,stand,,,
|
||||
585.824 -1050.1 16.1403,108 110 113 114,stand,,,
|
||||
436.553 -905.553 16.125,109 111 112 114,stand,,,
|
||||
261.824 -950.559 16.1257,110 81 313 449,stand,,,
|
||||
446.582 -656.104 16.125,110 119 108 422,stand,,,
|
||||
851.836 -828.069 9.19343,108 106 97 107 109 114,stand,,,
|
||||
682.536 -747.849 10.3753,113 109 110 115 107 116,stand,,,
|
||||
691.971 -449.493 15.7591,114 116 119 144 142,stand,,,
|
||||
854.486 -416.28 24.125,115 107 114 117 143,stand,,,
|
||||
1017.91 -379.348 24.125,116 312 415,stand,,,
|
||||
1350.5 -609.964 24.125,102 104 418,stand,,,
|
||||
442.328 -389.975 16.125,112 115 107 120 142 144,stand,,,
|
||||
270.409 -400.298 16.125,119 121 141 142,stand,,,
|
||||
157.705 -359.784 16.125,120 122 129 141,stand,,,
|
||||
131.927 -553.775 24.125,121 123 428 429,stand,,,
|
||||
58.1215 -739.118 24.125,122 426 427 434,stand,,,
|
||||
-586.535 -722.356 24.125,435 439 441,stand,,,
|
||||
-628.408 -522.622 24.125,126 441 443 444,stand,,,
|
||||
-781.782 -428.24 24.125,125 65,stand,,,
|
||||
-320.633 -424.475 24.125,128 446 456,stand,,,
|
||||
-328.061 -242.402 8.37762,127 129 130 134 132 61,stand,,,
|
||||
-81.6078 -272.04 10.8474,128 121 134 135 445,stand,,,
|
||||
-586.577 -293.74 12.1128,128 65 132 63 62,stand,,,
|
||||
-538.034 69.3632 16.125,63 132 133,stand,,,
|
||||
-543.74 -46.621 8.125,130 63 131 65 134 62 128,stand,,,
|
||||
-296.374 94.2776 16.125,131 134 135,stand,,,
|
||||
-230.719 -31.1762 8.125,133 132 129 128 135,stand,,,
|
||||
-153.681 104.599 15.1616,133 134 129 136 141,stand,,,
|
||||
-89.1522 234.684 16.125,135 137 458,stand,,,
|
||||
340.376 308.931 16.125,136 138 139 461,stand,,,
|
||||
451.945 440.461 15.6016,137 139 145 146 151 152 153,stand,,,
|
||||
460.052 90.2901 11.1731,138 140 142 141 145 146 137,stand,,,
|
||||
192.203 47.4561 10.1321,139 141 142,stand,,,
|
||||
189.69 -217.087 8.02672,140 135 121 120 142 139,stand,,,
|
||||
422.584 -225.949 8.125,119 120 141 140 144 115 139 149,stand,,,
|
||||
827.939 -285.713 24.125,116 144 148,stand,,,
|
||||
688.017 -256.055 10.8455,142 115 119 143 149 150,stand,,,
|
||||
672.133 117.36 9.52181,139 146 150 138,stand,,,
|
||||
687.031 363.45 10.7634,145 147 138 151 139,stand,,,
|
||||
900.347 328.721 16.125,146 148 412,stand,,,
|
||||
888.338 -38.1864 16.125,147 143 150 413,stand,,,
|
||||
574.717 -118.731 8.05595,142 144 150,stand,,,
|
||||
679.3 -67.6449 10.1191,145 149 144 148,stand,,,
|
||||
687.977 491.104 10.8422,146 138 153 152 154,stand,,,
|
||||
425.915 771.07 16.125,138 153 151 200 462,stand,,,
|
||||
657.768 860.457 8.32472,152 151 138 210 211 381,stand,,,
|
||||
769.123 496.978 13.3336,151 155 412,stand,,,
|
||||
788.095 682.548 22.125,154 274 275,stand,,,
|
||||
1185.14 489.524 16.125,157 158 354 412 515,stand,,,
|
||||
1418.84 341.868 16.125,156 166 164 357 515,stand,,,
|
||||
1535.28 649.886 22.125,156 159 169 170 355 354,stand,,,
|
||||
1793.02 470.509 16.125,158 170 171 308 356 355,stand,,,
|
||||
1762.17 239.451 16.125,308 352 353,stand,,,
|
||||
1818.11 -163.788 24.125,162 167 353,stand,,,
|
||||
1787.65 -393.219 24.125,161 163 349 350,stand,,,
|
||||
1565.69 -429.765 16.125,162 104 164 167 348,stand,,,
|
||||
1455.46 -44.9707 16.125,163 165 157 167 357,stand,,,
|
||||
1232.09 -4.00414 16.125,164 166 360,stand,,,
|
||||
1229.34 270.959 16.125,165 157 359,stand,,,
|
||||
1639.93 -181.571 16.125,163 161 164 351,stand,,,
|
||||
1143.08 690.42 158.125,169 263 361,stand,,,
|
||||
1232.18 672.15 158.125,168 158,stand,,,
|
||||
1631.14 769.635 16.125,158 171 159 172 383 384,stand,,,
|
||||
1804.92 607.725 16.125,170 174 159 355,stand,,,
|
||||
1701.98 1010.31 16.125,170 173 175 384,stand,,,
|
||||
1933.2 957.666 16.125,172 174,stand,,,
|
||||
1901.5 800.208 16.125,173 171,stand,,,
|
||||
1717.11 1155.19 16.125,172 176 205 192 389,stand,,,
|
||||
1840.33 1363.24 16.125,175 177 180 205,stand,,,
|
||||
1713.72 1414.95 16.125,176 190,stand,,,
|
||||
1715.95 1598.19 16.125,179 185 190,stand,,,
|
||||
1865.57 1536.91 16.125,178 180,stand,,,
|
||||
1869.65 1469.49 16.125,179 176 181,stand,,,
|
||||
2005.85 1498.92 16.1246,180 182 184,stand,,,
|
||||
2001.9 1798.24 16.1246,181 183,stand,,,
|
||||
2369.57 1810.31 16.2709,182 184 390,stand,,,
|
||||
2367.07 1576.93 16.1221,183 181 391,stand,,,
|
||||
1675.13 1792.94 16.1221,178 186 190 392,stand,,,
|
||||
1525.9 1659.85 24.125,185 187 190,stand,,,
|
||||
1420.71 1593.62 24.125,186 192 401 402,stand,,,
|
||||
1771.3 2345.55 16.125,189 392,stand,,,
|
||||
2283.07 2397.04 16.1683,188 395 398,stand,,,
|
||||
1569.98 1474.6 16.1249,186 185 177 178 191,stand,,,
|
||||
1535.4 1387.07 15.7573,190 192 206,stand,,,
|
||||
1437.73 1391.22 14.0609,191 187 193 175 205 206 207,stand,,,
|
||||
1175.3 1375.34 12.978,192 194 208 206 209,stand,,,
|
||||
1037.19 1315.42 7.50133,193 195 208 209,stand,,,
|
||||
854.457 1402.85 15.4172,194 196 209 208 403,stand,,,
|
||||
572.208 1354.88 9.08449,195 197 210 211,stand,,,
|
||||
385.689 1319.56 16.125,196 198 199 210,stand,,,
|
||||
326.377 1452.98 16.125,197 201,stand,,,
|
||||
312.212 1206.22 16.125,197 200 211,stand,,,
|
||||
304.56 1030.34 16.125,199 152 211 212,stand,,,
|
||||
312.872 1612.9 16.125,198 202 204,stand,,,
|
||||
314.016 1895.91 16.125,201 203 409,stand,,,
|
||||
187.647 1842.48 16.125,202 204 408,stand,,,
|
||||
202.615 1643.98 28.125,203 201 407,stand,,,
|
||||
1567.32 1172.27 12.125,175 206 192 176,stand,,,
|
||||
1442.28 1161.93 10.8224,205 207 193 192 191,stand,,,
|
||||
1382.25 1082.35 16.125,206 208 192,stand,,,
|
||||
1133.88 1094.62 16.125,207 193 194 209 195,stand,,,
|
||||
882.485 1088.23 16.125,208 194 195 210 193 380,stand,,,
|
||||
659.413 1061.2 8.54169,209 153 196 211 197 381,stand,,,
|
||||
418.096 1052.91 16.125,210 200 199 196 153,stand,,,
|
||||
182.075 1031.82 16.125,200 213 215 216 410 411,stand,,,
|
||||
70.8468 880.672 16.125,212 214,stand,,,
|
||||
-15.7731 873.738 16.125,213 215,stand,,,
|
||||
-81.8041 1038.72 16.125,214 212 216 217 218,stand,,,
|
||||
-47.9129 1149.99 16.125,212 215 218 218,stand,,,
|
||||
-337.203 915.164 16.125,215 233 218 254,stand,,,
|
||||
-214.992 1116.94 16.125,216 219 233 215 216 217 232,stand,,,
|
||||
-245.928 1331.21 16.125,218 220 222 306,stand,,,
|
||||
-654.704 1337.62 24.125,219 221 226 232 234,stand,,,
|
||||
-622.953 1602.94 0.125001,220 222 225,stand,,,
|
||||
-258.231 1694.81 16.125,221 219 223 306 486,stand,,,
|
||||
-538.044 1769.72 0.125,222 224 489,stand,,,
|
||||
-804.654 1769.11 0.125001,223 225 488,stand,,,
|
||||
-959.505 1675.36 24.125,224 221 226 227 231,stand,,,
|
||||
-1075.56 1427.07 24.125,225 231 230 220 234 237,stand,,,
|
||||
-1043.79 1852.32 24.125,225 228 231,stand,,,
|
||||
-1072.95 2104.17 24.125,227 229,stand,,,
|
||||
-1278 2068.89 24.125,228 230,stand,,,
|
||||
-1265.04 1665.2 24.125,229 231 226 490,stand,,,
|
||||
-1100.51 1654.11 24.125,230 226 227 225,stand,,,
|
||||
-638.175 1115.84 16.125,220 233 218 250 237,stand,,,
|
||||
-394.52 1060.91 16.125,232 218 217,stand,,,
|
||||
-1080.64 1242.91 24.125,226 220 235 237 305,stand,,,
|
||||
-1155.79 1090.67 16.125,234 236,stand,,,
|
||||
-1146.23 936.161 16.125,235 237 238 239 255,stand,,,
|
||||
-926.524 1068.09 16.125,236 234 226 238 232,stand,,,
|
||||
-950.297 808.976 16.125,237 236 240 252,stand,,,
|
||||
-1150.84 722.541 16.125,236 240 467,stand,,,
|
||||
-915.291 698.658 16.125,239 238 241,stand,,,
|
||||
-862.252 502.901 16.125,240 242 243,stand,,,
|
||||
-827.568 228.707 16.125,241 64,stand,,,
|
||||
-657.771 502.55 16.125,64 245 241 246,stand,,,
|
||||
-405.152 260.583 16.125,64 245,stand,,,
|
||||
-404.509 539.967 16.125,244 243 254,stand,,,
|
||||
-650.768 674.438 52.125,243 247 253,stand,,,
|
||||
-555.212 691.554 52.125,246 248 463,stand,,,
|
||||
-548.555 788.607 52.125,247 249 254,stand,,,
|
||||
-555.338 899.789 52.125,248 250 466,stand,,,
|
||||
-664.393 897.34 52.125,249 251 232,stand,,,
|
||||
-759.393 899.455 52.125,250 252 465,stand,,,
|
||||
-759.188 794.755 52.125,251 253 238,stand,,,
|
||||
-751.335 680.94 52.125,252 246 464,stand,,,
|
||||
-429.757 788.201 16.125,217 248 245,stand,,,
|
||||
-1283.27 920.913 80.125,236 256 257 259,stand,,,
|
||||
-1318.05 1106.28 80.125,255 260 471,stand,,,
|
||||
-1320.71 782.056 80.125,255 258 468,stand,,,
|
||||
-1440.68 797.006 80.125,257 259 469,stand,,,
|
||||
-1440.76 931.042 80.125,258 260 255 261,stand,,,
|
||||
-1422.15 1089.02 80.125,259 256 470,stand,,,
|
||||
-1610.48 949.864 80.125,259 262 304,stand,,,
|
||||
-1679.34 684.274 80.125,261 47 474,stand,,,
|
||||
1169.8 807.61 158.125,168 264 265 362,stand,,,
|
||||
1333.71 824.626 158.125,263 363 368,stand,,,
|
||||
976.164 829.011 158.125,263 266 372,stand,,,
|
||||
949.556 966.747 158.125,265 267 268,stand,,,
|
||||
789.72 936.65 158.125,266,stand,,,
|
||||
1027.23 1007.58 158.125,266 269,stand,,,
|
||||
1183.09 984.782 94.125,268 270,stand,,,
|
||||
1189.94 914.368 94.125,269 271,stand,,,
|
||||
1120.95 913.252 94.125,270 272,stand,,,
|
||||
987.649 917.324 22.125,271 273 279,stand,,,
|
||||
873.639 995.873 22.125,272 274 279 379 388,stand,,,
|
||||
757.991 961.699 22.125,273 155 382,stand,,,
|
||||
913.296 655.954 22.125,155 276 279,stand,,,
|
||||
1180.67 651.335 22.125,275 277 387,stand,,,
|
||||
1183.33 799.453 22.125,276 278 279,stand,,,
|
||||
1434.43 801.941 22.125,277 383 385 386,stand,,,
|
||||
930.407 845.515 22.125,277 275 273 272,stand,,,
|
||||
1708.41 -1794.28 85.5279,86 281 85 340,stand,,,
|
||||
1813.55 -1592.6 67.293,280 282 100 340,stand,,,
|
||||
1756.52 -1366.58 45.7325,281 101 87 283 100,stand,,,
|
||||
1775.83 -1105.54 17.2552,282 100 284,stand,,,
|
||||
1834.92 -882.189 12.125,283 285 286 301,stand,,,
|
||||
1848.85 -721.979 16.125,284 288,stand,,,
|
||||
1679.42 -823.877 8.85434,105 284 287,stand,,,
|
||||
1733.2 -739.791 18.6611,286 104 288,stand,,,
|
||||
1706.17 -612.559 22.3271,104 285 287 345,stand,,,
|
||||
525.404 -2177.72 126.854,0 290 316 314 83,stand,,,
|
||||
397.199 -1770.34 116.394,289 83 291 316 450,stand,,,
|
||||
203.947 -1662.16 115.378,290 1 82 79 2 80 83,stand,,,
|
||||
-1135.76 -271.86 8.125,61 32 67 65 51,stand,,,
|
||||
-877.615 -1777.83 169.049,12 4 3 294 294,stand,,,
|
||||
-897.781 -1892.67 195.779,293 4 10 9 293 5,stand,,,
|
||||
-2419.51 -429.253 0.112775,22 484 485,stand,,,
|
||||
-2459.52 -611.333 26.125,297 299 298 502,stand,,,
|
||||
-2325.05 -617.666 26.125,296 298 299,stand,,,
|
||||
-2339.1 -832.306 26.125,297 299 296,stand,,,
|
||||
-2431.41 -834.229 26.125,21 298 296 297,stand,,,
|
||||
1951.14 -1059.5 18.3587,301 309 341,stand,,,
|
||||
1978.96 -868.694 12.125,300 284 342,stand,,,
|
||||
-2052.4 -1516.94 8.125,17 510,stand,,,
|
||||
-2381.78 1043.54 14.2985,40 475,stand,,,
|
||||
-1602.24 1121.63 80.125,261 472 473,stand,,,
|
||||
-1384.21 1253.93 24.125,234 491 492,stand,,,
|
||||
-188.808 1451.99 16.125,219 222 487,stand,,,
|
||||
1925.6 296.143 16.125,308 358,stand,,,
|
||||
1767.33 331.331 16.125,307 159 160 356 355,stand,,,
|
||||
1938.86 -1467.62 24.125,300 339,stand,,,
|
||||
1314.41 -1222.27 20.125,311,stand,,,
|
||||
1153.31 -1263.14 20.125,310 97 96,stand,,,
|
||||
989.019 -640.549 24.125,117 417 419,stand,,,
|
||||
62.2412 -1066.48 22.5381,81 111 447 448,stand,,,
|
||||
791.103 -2267.7 125.642,315 316 289 337 338,stand,,,
|
||||
816.512 -1847.44 117.857,314 84 83 316,stand,,,
|
||||
701.674 -2024.94 121.546,289 314 315 83 290,stand,,,
|
||||
51.6068 -1178.93 72.125,78 80,stand,,,
|
||||
-460.421 -2363.27 209.061,5 328,stand,,,
|
||||
-717.986 -1083.42 64.6124,13 69,stand,,,
|
||||
-965.479 68.2844 16.125,62,stand,,,
|
||||
-1562.7 -2435.55 208.698,7 322,stand,17.7869 -93.9221 0,,
|
||||
-1554.99 -2984.64 211.907,321 323 324,stand,12.431 -3.62 0,,
|
||||
-1033.3 -2980.08 208.199,322 325 327,stand,12.6068 170.085 0,,
|
||||
-1589.08 -3104.88 214.267,322,crouch,2.93335 54.0582 0,,
|
||||
-724.153 -2993.3 208.125,323 326,stand,50.9381 78.75 0,,
|
||||
-721.456 -2610.21 208.762,325 327 5,stand,16.5784 100.679 0,,
|
||||
-1004.93 -2609.92 213.953,326 323 6,stand,11.0522 -122.223 0,,
|
||||
-409.59 -2472.05 214.373,318,crouch,1.90063 151.265 0,,
|
||||
-593.702 -1917.13 208.125,4 330,stand,41.6107 82.0184 0,,
|
||||
-555.078 -1636.57 180.125,329 331,stand,48.8617 89.2694 0,,
|
||||
-549.572 -1575.06 128.821,330 3 332,climb,-7.42676 -99.2834 0,,
|
||||
-521.639 -1515.94 126.906,331 3 334 333,stand,50.0757 -157.297 0,,
|
||||
-76.6156 -1467.27 153.926,2 334 332,stand,56.6345 -39.8804 0,,
|
||||
-76.3651 -1559.05 127.512,333 2 335 332,stand,32.981 28.8391 0,,
|
||||
-14.7981 -1538.19 119.781,334 1,stand,38.161 159.89 0,,
|
||||
-95.5368 -2231.44 163.963,0,crouch,5.00977 44.8901 0,,
|
||||
951.731 -2331.94 153.342,314,crouch,6.90491 137.609 0,,
|
||||
694.924 -2331.25 142.757,314,crouch,6.55884 57.8375 0,,
|
||||
1939.43 -1519.38 24.125,309 340,climb,8.28918 -86.6766 0,,
|
||||
1946.67 -1611.05 64.897,339 281 280,stand,59.3976 150.732 0,,
|
||||
2387.9 -1017.68 14.5352,300 342 344,stand,27.1088 96.3336 0,,
|
||||
2372.67 -823.165 12.125,341 301 343 345,stand,42.5214 -176.814 0,,
|
||||
2385.35 -600.071 19.9271,342,crouch,4.36584 -142.8 0,,
|
||||
2408.64 -1061.66 15.8811,341,crouch,4.8822 157.978 0,,
|
||||
1950.91 -602.467 16.125,288 342 346,stand,17.6593 -3.81226 0,,
|
||||
2144.52 -581.247 16.125,345,crouch,1.25671 -144.695 0,,
|
||||
809.163 -1128.27 20.125,108,crouch,4.19006 97.0258 0,,
|
||||
1383.1 -516.627 18.9734,163,crouch,-0.127563 47.1259 0,,
|
||||
1876.17 -430.095 24.125,162,crouch,2.81128 116.367 0,,
|
||||
1762.99 -519.922 24.125,162,crouch,2.28943 90.6372 0,,
|
||||
1668.12 21.7829 16.125,167 352 353,stand,56.1609 -94.4495 0,,
|
||||
1672.1 264.717 16.125,351 160 356 357,stand,38.7256 60.4248 0,,
|
||||
1796.47 22.8177 24.125,161 160 351,stand,26.2891 156.934 0,,
|
||||
1449.87 536.252 16.125,355 158 156 515,stand,21.2848 -62.3474 0,,
|
||||
1582.84 543.466 16.125,354 356 159 158 171 308,stand,23.7018 -67.3572 0,,
|
||||
1583.71 353.272 16.125,355 352 357 308 159,stand,24.2181 -160.598 0,,
|
||||
1463.74 352.668 16.125,157 356 352 164,stand,35.0946 132.237 0,,
|
||||
1991.96 290.292 16.125,307,crouch,1.60278 174.172 0,,
|
||||
1170.09 266.428 16.125,166,crouch,2.11914 12.9034 0,,
|
||||
1183.78 -44.9277 16.125,165,crouch,2.6355 49.6802 0,,
|
||||
1130.73 633.966 158.125,168,crouch,8.85376 46.0492 0,,
|
||||
1179.11 850.396 158.125,263,crouch,30.7825 95.257 0,,
|
||||
1298.48 935.226 158.125,264 364 367 368,stand,35.0946 93.7134 0,,
|
||||
1294.8 1012.17 158.125,363 365 366,stand,28.8818 -13.5132 0,,
|
||||
1473.97 1009.75 158.125,364,crouch,19.3842 67.4725 0,,
|
||||
1241.6 1004.21 158.125,364,crouch,15.0665 42.7753 0,,
|
||||
1401.11 946.961 158.125,363,crouch,9.54041 90.2637 0,,
|
||||
1391.3 877.054 158.125,363 369 264 370,stand,53.5736 7.89917 0,,
|
||||
1465.07 949.429 158.125,368,crouch,17.1375 86.6327 0,,
|
||||
1453.02 855.62 158.125,368 371,stand,27.6733 -83.7762 0,,
|
||||
1463.6 753.171 158.125,370,crouch,3.15186 123.931 0,,
|
||||
961.8 682.89 158.125,265 373 374 375,stand,85 -91.3788 0,,
|
||||
1067.91 735.82 158.125,372,crouch,3.67371 -163.894 0,,
|
||||
1039.91 634.786 158.125,372,crouch,3.32764 152.595 0,,
|
||||
781.544 677.348 158.125,372 376 377,stand,28.7115 165.542 0,,
|
||||
735.125 792.875 158.125,375,crouch,9.19983 -120.037 0,,
|
||||
678.268 671.151 158.125,375 378,stand,71.1902 -175.984 0,,
|
||||
690.058 816.639 158.125,377,crouch,12.1387 -137.823 0,,
|
||||
884.293 1024.73 22.125,273 380,climb,28.7115 94.0759 0,,
|
||||
878.027 1063.13 16.125,379 209,climb,15.072 -89.4672 0,,
|
||||
696.875 942.117 16.125,382 153 210,climb,19.9005 -0.0274658 0,,
|
||||
735.126 947.843 22.125,274 381,climb,10.4083 179.879 0,,
|
||||
1536 840.27 22.125,278 170 384,stand,57.8912 -1.76331 0,,
|
||||
1576.53 832.506 16.125,383 172 170,stand,66.6968 67.8131 0,,
|
||||
1499.94 947.52 22.125,278,crouch,2.81128 -107.435 0,,
|
||||
1278.91 938.082 22.125,278,crouch,5.39856 -38.7103 0,,
|
||||
1200.88 623.125 22.125,276,crouch,1.08093 142.405 0,,
|
||||
1095.93 998.676 22.125,273,crouch,4.01978 178.835 0,,
|
||||
1854.12 1074.57 16.125,175,crouch,0.910645 144.141 0,,
|
||||
2418.88 1854.88 16.976,183,crouch,0.218506 -143.2 0,,
|
||||
2411.67 1453.24 16.1247,184,crouch,2.46521 142.555 0,,
|
||||
1725.88 2058.09 16.1247,185 188 393,stand,16.4508 129.613 0,,
|
||||
1607.88 2195.26 16.1247,392 394,stand,12.1332 118.566 0,,
|
||||
1443.83 2451.35 18.7674,393,crouch,1.94336 -61.1756 0,,
|
||||
2841.48 2545.79 16.745,189 396 398,stand,25.9485 -50.2936 0,,
|
||||
3258.95 2546.05 24.2642,395 397 399,stand,21.4551 -68.7726 0,,
|
||||
3268.12 1961.3 22.9922,396 398 400,stand,17.4835 -173.236 0,,
|
||||
2845.29 1956.23 27.0049,397 395 189,stand,10.7489 127.366 0,,
|
||||
3335.16 2794.65 25.0709,396,crouch,2.6355 -145.77 0,,
|
||||
3351.89 1907.9 18.8275,397,crouch,1.77307 147.922 0,,
|
||||
1319.2 1695.61 24.125,187,crouch,4.53613 -37.3408 0,,
|
||||
1317.64 1482.85 24.125,187,crouch,4.01978 38.6352 0,,
|
||||
840.782 1525.15 13.9424,195 404,climb,5.22827 134.799 0,,
|
||||
805.847 1561.32 66.125,403 405 406,stand,83.2697 -14.7309 0,,
|
||||
763.848 1599.82 66.125,404,crouch,9.54041 -57.8962 0,,
|
||||
891.282 1600.88 68.125,404,crouch,11.441 -127.132 0,,
|
||||
204.651 1429.32 28.125,204,crouch,5.22827 92.4957 0,,
|
||||
136.274 1930.6 16.125,203,crouch,1.427 -60.3132 0,,
|
||||
342.343 1934.03 16.125,202,crouch,2.46521 -94.1566 0,,
|
||||
211.511 1185.04 16.125,212,crouch,4.36035 -138.008 0,,
|
||||
227.525 929.238 16.125,212,crouch,2.81128 131.86 0,,
|
||||
866.239 507.11 15.1274,154 156 147,stand,20.9387 -68.7781 0,,
|
||||
903.482 -9.89977 16.125,148 414,stand,62.7252 -51.5021 0,,
|
||||
1107.05 -38.097 16.125,413,crouch,3.84399 173.646 0,,
|
||||
1112.88 -454.147 24.125,117 416 417,stand,28.0194 71.6052 0,,
|
||||
1140.46 -249.207 24.125,415,crouch,-0.297852 -130.752 0,,
|
||||
1081.27 -628.509 24.125,415 312 418,stand,16.4508 28.7914 0,,
|
||||
1248.87 -622.069 24.125,118 417 420 421,stand,30.4364 10.664 0,,
|
||||
969.515 -660.835 24.125,312,crouch,1.60278 58.3227 0,,
|
||||
1313.03 -506.884 24.125,418,crouch,5.22827 -113.657 0,,
|
||||
1226.64 -510.614 24.125,418,crouch,6.60706 -59.0937 0,,
|
||||
430.847 -615.476 16.125,112 423,stand,55.9906 173.827 0,,
|
||||
321.188 -606.035 16.125,422 424 425,stand,39.2419 -177.367 0,,
|
||||
316.584 -455.891 16.125,423,crouch,4.36584 -49.9531 0,,
|
||||
237.36 -800.245 16.125,423,crouch,3.15186 41.563 0,,
|
||||
177.991 -796.874 24.125,123,crouch,4.19006 154.145 0,,
|
||||
171.786 -703.024 24.125,123,crouch,3.15186 -173.742 0,,
|
||||
-58.8547 -488.418 24.125,122,stand,15.7587 -7.63922 0,,
|
||||
84.5063 -623.105 24.125,122 430,stand,47.1851 179.524 0,,
|
||||
-143.803 -625.408 24.125,429,crouch,2.81128 26.3745 0,,
|
||||
-429.031 -705.246 24.125,432 435 434 438 456,stand,59.27 -92.4262 0,,
|
||||
-430.963 -811.16 24.125,433 431 435 437,stand,28.5358 2.71539 0,,
|
||||
-132.092 -799.227 24.125,434 432 436,stand,25.9485 2.36932 0,,
|
||||
-149.205 -704.808 24.125,123 433 431 457,stand,22.6636 -7.12836 0,,
|
||||
-502.08 -737.399 24.125,431 124 432,stand,23.0096 -177.894 0,,
|
||||
-30.6442 -818.384 24.125,433,crouch,3.15186 156.024 0,,
|
||||
-510.887 -818.831 24.125,432,crouch,2.11914 45.0018 0,,
|
||||
-470.115 -564.466 62.125,431,crouch,10.2325 -47.201 0,,
|
||||
-673.107 -741.808 24.125,124 440,stand,20.2466 -178.938 0,,
|
||||
-798.87 -725.857 24.125,439,crouch,3.32764 -4.37628 0,,
|
||||
-591.495 -621.124 24.125,125 124 442,stand,34.754 -115.047 0,,
|
||||
-836.105 -630.07 24.125,441,crouch,0.734863 35.3393 0,,
|
||||
-578.097 -474.31 24.125,125,crouch,2.98157 90.0732 0,,
|
||||
-673.535 -460.071 24.125,125,crouch,5.74463 90.0732 0,,
|
||||
-136.875 -365.558 16.125,129 446,climb,9.19983 -178.933 0,,
|
||||
-197.967 -369.953 24.125,445 127,stand,57.8912 7.53839 0,,
|
||||
39.1252 -1108.87 23.5939,313,crouch,3.49792 36.383 0,,
|
||||
19.1255 -954.207 23.311,313,crouch,8.33191 -23.877 0,,
|
||||
357.422 -848.253 16.125,111,crouch,2.46521 -117.288 0,,
|
||||
533.049 -1247.3 69.0307,80 82 290 451 452,stand,-0.473633 -148.698 0,,
|
||||
580.356 -1184.6 71.7515,450,crouch,0.0482178 -130.049 0,,
|
||||
619.875 -1240.47 71.8862,450,crouch,0.910645 -156.466 0,,
|
||||
-18.2483 -1431.24 262.125,76,crouch,15.5884 -36.1268 0,,
|
||||
-441.21 -1271.91 264.125,74,crouch,3.15186 -120.897 0,,
|
||||
-664.549 -1239.68 162.595,70,crouch,15.5884 131.536 0,,
|
||||
-330.14 -580.446 24.125,127 431 457,stand,9.5459 -102.248 0,,
|
||||
-205.887 -685.001 24.125,456 434,stand,51.3269 -20.7514 0,,
|
||||
-166.065 324.015 20.125,136 459 460,stand,16.4508 99.2578 0,,
|
||||
-214.77 515.486 20.125,458,crouch,9.19983 -81.1762 0,,
|
||||
-162.281 521.264 20.125,458,crouch,2.11914 -96.2 0,,
|
||||
322.56 434.792 16.125,137,crouch,6.0907 -40.785 0,,
|
||||
320.863 684.458 16.125,152,crouch,3.32764 54.1918 0,,
|
||||
-508.337 634.561 52.125,247,crouch,4.36584 -107.939 0,,
|
||||
-815.031 624.651 52.125,253,crouch,6.95862 -72.0246 0,,
|
||||
-803.271 958.875 52.125,251,crouch,6.78284 92.8692 0,,
|
||||
-497.538 945.329 52.125,249,crouch,4.8822 65.7604 0,,
|
||||
-1157.89 632.723 48.2277,239,crouch,7.99133 57.647 0,,
|
||||
-1299.88 644.931 80.125,257,crouch,6.0907 27.2589 0,,
|
||||
-1483.7 648.728 80.125,258,crouch,4.36584 37.619 0,,
|
||||
-1456.94 1185.04 80.125,260,crouch,3.84949 -44.394 0,,
|
||||
-1238.83 1104.35 80.125,256,crouch,4.8822 -32.309 0,,
|
||||
-1645.18 1164.72 80.125,304,crouch,1.94885 -79.7919 0,,
|
||||
-1571.99 1164.17 80.125,304,crouch,2.46521 -103.621 0,,
|
||||
-1583.82 727.346 80.125,262,crouch,9.5459 -127.967 0,,
|
||||
-2499.67 1204.6 15.9022,303,crouch,1.08643 -30.0788 0,,
|
||||
-2357.5 615.957 12.8746,39,crouch,2.29492 -49.7498 0,,
|
||||
-2219.33 -68.5166 22.125,36 480 481 482,stand,14.9017 -132.977 0,,
|
||||
-2193.92 -213.542 22.125,480,crouch,3.84949 -46.3056 0,,
|
||||
-2173.04 -295.14 7.5928,22 480,climb,9.02954 96.3189 0,,
|
||||
-2238.1 -201.923 22.125,479 477 478,stand,31.991 -71.5137 0,,
|
||||
-2205.09 68.6482 22.125,477,crouch,6.43677 -28.1727 0,,
|
||||
-2248.5 89.3293 22.125,477 483,climb,18.5272 90.9631 0,,
|
||||
-2252.7 135.574 10.9629,482 38,climb,12.9956 -87.0539 0,,
|
||||
-2483.97 -382.02 -1.09857,295,crouch,3.84399 -10.7319 0,,
|
||||
-2496.88 -480.286 1.41924,295,crouch,3.15186 4.12164 0,,
|
||||
-134.643 1869.14 16.125,222,crouch,5.35034 -113.648 0,,
|
||||
-133.382 1442.45 16.125,306,crouch,5.52612 172.969 0,,
|
||||
-899.037 1877.41 4.8241,224,crouch,2.07092 -50.625 0,,
|
||||
-368.751 1875.01 3.75867,223,crouch,3.97156 -131.259 0,,
|
||||
-1275.1 1540.35 24.125,230,crouch,5.00977 14.1229 0,,
|
||||
-1456.88 1248.84 24.125,305,crouch,4.14185 16.0236 0,,
|
||||
-1423.69 1425.31 24.125,305,crouch,2.58728 -0.203247 0,,
|
||||
-2183.93 -739.045 26.125,23 494,stand,9.66797 28.8007 0,,
|
||||
-2222.88 -738.963 26.125,493,crouch,2.76306 11.5356 0,,
|
||||
-1834.13 -567.125 26.125,24,crouch,3.10913 -129.523 0,,
|
||||
-1921.49 -571.125 26.125,24 497,climb,19.682 88.3685 0,,
|
||||
-1919.83 -520.875 2.625,496 35 22,climb,11.2225 -88.4399 0,,
|
||||
-2080.93 -863.737 26.125,25 27 23,stand,45.2362 -81.189 0,,
|
||||
-2185.35 -971.523 26.125,21 27 500,stand,41.4404 72.3065 0,,
|
||||
-2196.35 -818.522 26.125,499,crouch,2.2467 -87.0557 0,,
|
||||
-2494.83 -1056.35 26.125,21,crouch,4.83398 43.4784 0,,
|
||||
-2468.88 -567.125 26.125,296,crouch,0.170288 -62.71 0,,
|
||||
-2379.8 -1181.12 42.125,20 21 504,stand,21.2366 110.638 0,,
|
||||
-2276.39 -1231.39 42.125,503,crouch,6.04248 147.068 0,,
|
||||
-2453.43 -1299.93 42.125,20,crouch,3.27942 -5.56458 0,,
|
||||
-2124.88 -1284.13 26.125,19,crouch,3.80127 -15.5731 0,,
|
||||
-1832.17 -1314.01 26.125,18,crouch,7.42676 -138.856 0,,
|
||||
-2022.16 -1202.66 26.125,26 27 19 509,stand,44.5496 84.5673 0,,
|
||||
-2176.63 -1192.85 26.125,508,crouch,3.4552 -1.25244 0,,
|
||||
-2140.85 -1522.44 8.125,302,crouch,2.93335 -1.24695 0,,
|
||||
-1764 -560.078 26.125,517,crouch,7.08069 -39.408 0,,
|
||||
-1353.35 -1077.61 7.125,519,crouch,2.59277 128.249 0,,
|
||||
-1749.69 -1244.96 8.04512,15,crouch,3.10913 -13.8483 0,,
|
||||
-1770.01 -1299.25 8.125,16,crouch,4.31763 -79.2883 0,,
|
||||
1387.88 430.904 16.125,157 354 156,stand,36.9525 -77.7008 0,,
|
||||
-1506.82 -788.756 7.125,517 519 521,stand,43.6871 -175.38 0,,
|
||||
-1619.25 -784.55 7.125,518 511 516 520 521,stand,38.6774 -100.618 0,,
|
||||
-1624.37 -951.284 7.125,519 517 34 520,stand,33.1512 -18.2538 0,,
|
||||
-1494.99 -938.45 7.125,512 518 516 34,stand,31.7725 -29.1357 0,,
|
||||
-1750.29 -851.97 17.125,518 25 517,stand,70.1038 161.818 0,,
|
||||
-1527.64 -597.543 7.125,517 516 33 522,stand,22.2748 68.2361 0,,
|
||||
-1400.13 -571.147 7.125,521 523,climb,8.80554 2.62024 0,,
|
||||
-1348.65 -554.624 52.125,522,crouch,8.28918 -125.843 0,,
|
||||
-1770.87 -1092.75 7.125,34,crouch,5.69641 31.1133 0,,
|
||||
|
@@ -0,0 +1,348 @@
|
||||
347
|
||||
-341.825 -3722.76 0.125001,1,stand,,,
|
||||
-358.924 -3169.45 0.125001,0 2 160,stand,,,
|
||||
-371.059 -2946.15 0.124997,1 3 99 160 341,stand,,,
|
||||
-927.025 -2945.98 9.3967,2 168 173,stand,,,
|
||||
-876.294 -2367.04 1.43556,5 173 338,stand,,,
|
||||
-963.503 -2099 0.125001,4 6 98 219 339 338,stand,,,
|
||||
-1330.22 -2129.07 0.125001,5 7 217 219 222,stand,,,
|
||||
-1329.23 -2375.34 0.124998,6 220 221,stand,,,
|
||||
-1343.51 -1723.19 0.124998,9 13 217,stand,,,
|
||||
-1101.98 -1706.14 0.124998,8 10 14 210,stand,,,
|
||||
-989.401 -1431.38 0.124998,9 209 210 216,stand,,,
|
||||
-946.379 -1082.21 120.125,12 77 206 226,stand,,,
|
||||
-1419.37 -1040.96 120.125,11 225 226,stand,,,
|
||||
-1410.92 -1367.93 92.2372,8 225,stand,,,
|
||||
-890.443 -1726.64 69.625,9 15,stand,,,
|
||||
-887.15 -1830.3 69.625,14 16,stand,,,
|
||||
-1145.5 -1822.9 215.625,15 17 24,stand,,,
|
||||
-1506.99 -1811.99 255.125,16 18 198,stand,,,
|
||||
-1502.19 -1385.8 256.125,17 19 199,stand,,,
|
||||
-1492.78 -1036.48 256.125,18 167 200,stand,,,
|
||||
-900.842 -1030.75 256.125,21 167 204,stand,,,
|
||||
-901.431 -1327.38 256.125,20 22 205,stand,,,
|
||||
-717.879 -1330.3 257.125,21 23 25 165 193,stand,,,
|
||||
-710.922 -1900.89 253.625,22 24 193 195 196,stand,,,
|
||||
-1173.77 -1903.28 215.625,23 16 197,stand,,,
|
||||
-575.71 -1093.8 262.6,22 26 165 229,stand,,,
|
||||
-142.455 -1106.66 257.4,25 27 230,stand,,,
|
||||
322.023 -1125.48 272.125,26 231 232,stand,,,
|
||||
851.788 -1037.94 272.125,29 234 236 240 242,stand,,,
|
||||
1012.5 -1204.16 272.125,28 30 236 244,stand,,,
|
||||
824.393 -1405.72 272.125,29 235 243 244 246,stand,,,
|
||||
1182.65 -1082.61 272.125,32 236 238 237,stand,,,
|
||||
1177.17 -1383.09 80.125,31 33 239,stand,,,
|
||||
1020.98 -1418.85 72.125,32 34 38,stand,,,
|
||||
889.763 -1402.63 8.125,33 35 122,stand,,,
|
||||
426.625 -1392.78 56.125,34 36 252,stand,,,
|
||||
408.668 -1030.57 88.125,35 37 251,stand,,,
|
||||
811.112 -1000.65 88.125,36 38 93,stand,,,
|
||||
992.405 -1017.58 88.125,37 33 39 117,stand,,,
|
||||
1164.05 -1028.65 88.125,38 260 261,stand,,,
|
||||
1230.1 -598.182 64.125,117 118 259 263,stand,,,
|
||||
1290.72 -161.16 224.125,42 263 266 267,stand,,,
|
||||
1002.63 -163.255 224.125,41 43 44,stand,,,
|
||||
986.802 365.918 176.125,42 164 268,stand,,,
|
||||
535.639 -160.681 224.125,42 45,stand,,,
|
||||
57.6186 -156.536 224.125,44 46,stand,,,
|
||||
-154.662 -167.526 224.125,45 47 48,stand,,,
|
||||
-174.437 245.972 176.125,46 161,stand,,,
|
||||
-385.073 -164.433 208.625,46 55 291 292,stand,,,
|
||||
-712.573 -147.795 185.125,50 292,stand,,,
|
||||
-709.714 157.606 185.125,49 51 71,stand,,,
|
||||
-699.64 599.701 185.125,50 52,stand,,,
|
||||
-719.429 841.877 89.125,51 53 285 286,stand,,,
|
||||
-398.976 845.48 89.125,52 54 284 287,stand,,,
|
||||
-396.513 661.505 89.125,53 55 60 329,stand,,,
|
||||
-385.663 156.424 89.125,54 48 56 60,stand,,,
|
||||
-719.191 188.669 89.125,55 57 59 60,stand,,,
|
||||
-723.848 -155.232 89.125,56 58 290,stand,,,
|
||||
-404.086 -141.051 89.125,57 288 289,stand,,,
|
||||
-392.783 -11.3686 89.125,56 288,stand,,,
|
||||
-606.871 550.954 91.625,56 54 286 55,stand,,,
|
||||
-27.7774 772.132 33.125,62 281 282 331,stand,,,
|
||||
-78.9571 779.611 33.125,61 63 283 329,stand,,,
|
||||
-42.6736 1188.52 32.125,62 64 153 332,stand,,,
|
||||
-528.807 1197.22 91.0335,63 333 334,stand,,,
|
||||
-1036.83 943.487 94.2545,66 68 334,stand,,,
|
||||
-1451.04 959.63 96.6521,65 67 335,stand,,,
|
||||
-1459.09 745.599 96.125,66 68 311 313,stand,,,
|
||||
-1090.27 732.746 96.125,67 69 65 312,stand,,,
|
||||
-1080.39 549.124 100.676,68 70 305 312 306 318,stand,,,
|
||||
-842.331 573.566 120.125,69 315 334,stand,,,
|
||||
-896.734 163.782 184.125,50 72 295 298 315,stand,,,
|
||||
-1178.23 164.528 110.893,71 73 75 308 303,stand,,,
|
||||
-1166.35 -111.396 117.906,72 74 76 319 303,stand,,,
|
||||
-1492.97 -115.243 120.125,73 75 320,stand,,,
|
||||
-1520.88 155.5 120.125,74 72 310,stand,,,
|
||||
-1040.7 -405.819 120.125,73 77 79 80 301 320,stand,,,
|
||||
-931.926 -715.263 120.125,76 11 78 80 228,stand,,,
|
||||
-1427.96 -772.377 123.494,77 79 228,stand,,,
|
||||
-1470.93 -443.527 123.64,78 76 320,stand,,,
|
||||
-751.383 -611.463 120.125,76 81 85 83 77,stand,,,
|
||||
-772.974 -870.105 120.838,80 82 343,stand,,,
|
||||
-393.987 -893.917 132.214,81 83 192,stand,,,
|
||||
-384.978 -628.038 120.121,82 84 80 86 91 188,stand,,,
|
||||
-400.487 -305.744 123.635,83 85,stand,,,
|
||||
-740.237 -302.942 122.692,84 80 301,stand,,,
|
||||
-94.3251 -258.27 89.3795,83 87,stand,,,
|
||||
406.065 -286.771 88.125,86 88 127 128,stand,,,
|
||||
385.321 -556.326 88.125,87 89 92,stand,,,
|
||||
327.766 -576.881 88.125,88 90 91,stand,,,
|
||||
163.576 -863.248 88.125,89 94 95 185 186 188,stand,,,
|
||||
-59.1184 -597.467 88.2481,83 89,stand,,,
|
||||
706.95 -615.117 88.125,88 93 117 323 94,stand,,,
|
||||
791.791 -842.382 89.479,92 37 94,stand,,,
|
||||
496.984 -865.526 93.1329,93 90 92,stand,,,
|
||||
177.745 -1458.39 48.125,90 96 112 183 187,stand,,,
|
||||
-171.765 -1607.81 48.125,95 97 113 179 182 346,stand,,,
|
||||
-566.067 -1655.71 48.125,96 98 114 180 116 346,stand,,,
|
||||
-676.803 -1946.13 28.1497,97 116 5 177 336 339,stand,,,
|
||||
-277.306 -2392.41 0.124998,2 100 169 341,stand,,,
|
||||
82.6742 -2351.77 1.25722,99 101 109,crouch,,,
|
||||
74.6374 -2281.27 0.36364,100 102,stand,,,
|
||||
46.9287 -2033.51 0.418828,101 103,stand,,,
|
||||
571.079 -2053.4 0.78269,102 104 108,stand,,,
|
||||
854.047 -2061.86 0.172905,103 105 122,stand,,,
|
||||
1147.04 -2385.24 0.124998,106 104 107 253,stand,,,
|
||||
1572.76 -2407.72 0.124998,105 254 255 256,stand,,,
|
||||
922.094 -2544.88 14.6655,105 108,stand,,,
|
||||
555.894 -2427.83 5.67149,107 103 109,stand,,,
|
||||
358.889 -2240.89 0.536298,108 100,stand,,,
|
||||
-191.126 -1918.07 48.125,175 176 178 344,stand,,,
|
||||
-357.713 -1303.11 48.125,179,stand,,,
|
||||
292.875 -1680.32 48.125,95 113 189 187,stand,,,
|
||||
199.656 -1776.87 48.125,112 96 190 346,stand,,,
|
||||
-541.967 -1359.13 48.125,97 115 180,stand,,,
|
||||
-788.917 -1359.13 48.125,114 116 181,stand,,,
|
||||
-790.087 -1664.23 48.125,115 98 97,stand,,,
|
||||
1012.17 -588.821 88.125,40 92 38 129 321 324 326,stand,,,
|
||||
1622.09 -629.054 0.124998,40 119 123 166,stand,,,
|
||||
1615.42 -1096.9 0.124998,118 120,stand,,,
|
||||
1594.22 -1383.54 0.207935,119 121,stand,,,
|
||||
1208.93 -1561.09 0.197083,120 122,stand,,,
|
||||
897.497 -1693.7 0.0830559,121 104 34,stand,,,
|
||||
1517.43 -65.4268 0.122588,118 124,stand,,,
|
||||
1488.05 201.848 0.122588,123 125 139 279,stand,,,
|
||||
1046.05 244.372 32.0115,124 126 138 279,stand,,,
|
||||
1053.07 -66.3571 32.0668,125 127,stand,,,
|
||||
466.213 -69.3961 48.125,126 87 130 133,stand,,,
|
||||
771.146 -256.643 88.1157,87 129 323,stand,,,
|
||||
1024.31 -265.542 88.1157,128 117 324 325,stand,,,
|
||||
-113.539 -86.7163 38.6511,127 131,stand,,,
|
||||
-273.679 451.955 33.6186,130 132,stand,,,
|
||||
-31.4954 503.625 32.125,131 133 331,stand,,,
|
||||
363.348 482.494 32.125,132 127 134 153,stand,,,
|
||||
903.186 479.558 32.125,133 138 277,stand,,,
|
||||
131.4 437.099 312.125,136 275,stand,,,
|
||||
201.767 283.152 316.903,135 137 162 274,stand,,,
|
||||
667.116 281.769 312.125,136 269 271,stand,,,
|
||||
1072.22 551.771 32.125,134 125 278,stand,,,
|
||||
1492.47 540.082 0.627408,124 140 278,stand,,,
|
||||
1469.99 1102.36 32.125,139 141 147 151,stand,,,
|
||||
1787.75 1153.8 32.125,140 142 146,stand,,,
|
||||
2216.52 1151.73 32.125,141 143,stand,,,
|
||||
2559.98 1169.48 32.5235,142 144,stand,,,
|
||||
2542.13 1694.62 32.4675,143 145,stand,,,
|
||||
2138.41 1702.02 32.1151,144 146,stand,,,
|
||||
1786.05 1645.99 32.2249,145 141 148,stand,,,
|
||||
1462.61 1355.85 32.125,140 148 149,stand,,,
|
||||
1452.02 1539.48 32.125,147 146 150,stand,,,
|
||||
1121.29 1354.14 36.125,147 150 327 328,stand,,,
|
||||
1115.96 1547.93 32.125,149 148 158 159,stand,,,
|
||||
1026.26 1157.13 32.125,140 152,stand,,,
|
||||
652.268 1175.47 32.125,151 153 154,stand,,,
|
||||
281.106 1046.17 32.125,152 133 63,stand,,,
|
||||
609.463 1308.23 32.125,152 155 159,stand,,,
|
||||
402.126 1353.89 32.125,154 156,stand,,,
|
||||
405.602 1588.94 32.125,155 157 159,stand,,,
|
||||
400.532 1840.87 48.125,156 158,stand,,,
|
||||
979.073 1827.18 41.7382,157 150,stand,,,
|
||||
823.021 1454.33 33.7895,150 154 156,stand,,,
|
||||
-329.274 -2922.79 0.124997,2 1,stand,,,
|
||||
-151.125 282.366 180.676,47 162,climb,-73.3777 -1.3623 0,,
|
||||
-151.125 270.588 312.082,161 136,climb,75.119 -4.53186 0,,
|
||||
983.125 131.294 311.992,164 270,climb,77.9413 -178.204 0,,
|
||||
983.125 127.901 183.078,163 43,climb,-83.8544 -170.832 0,,
|
||||
-757.3 -1073.32 258.164,25 22 342,stand,,,
|
||||
1828.22 -629.927 2.66588,118 257 258,stand,,,
|
||||
-1220.22 -1043.61 256.125,19 20 202 201 203,stand,,,
|
||||
-944.846 -2984.88 13.2703,3,crouch,2.2467 48.2135 0,,
|
||||
-303.662 -2274.51 0.124998,99 170 341,stand,68.0328 75.6683 0,,
|
||||
-249.459 -2198.98 4.2062,169 171 172,stand,80.1178 -16.5344 0,,
|
||||
-177.526 -2209.5 2.05211,170,crouch,4.14185 -0.648193 0,,
|
||||
-304.171 -2221.99 0.682602,170,crouch,4.14185 171.837 0,,
|
||||
-925.262 -2509.64 1.99326,4 3 338,stand,42.3029 -95.7953 0,,
|
||||
-428.187 -1842.73 48.125,176,crouch,2.98157 45.6207 0,,
|
||||
-329.55 -1849.04 48.125,110,crouch,3.67371 60.8148 0,,
|
||||
-411.965 -1935.29 48.125,174 110 177,stand,30.6067 115.021 0,,
|
||||
-514.458 -1917.89 48.125,176 98,stand,75.3265 -177.473 0,,
|
||||
-193.525 -2056.88 48.125,110,crouch,4.53613 87.2205 0,,
|
||||
-356.003 -1418.78 48.125,111 96 180 182,stand,47.0093 -71.8011 0,,
|
||||
-506.696 -1477.15 48.125,179 114 97,stand,20.2466 126.063 0,,
|
||||
-816.875 -1359.13 48.125,115,crouch,3.15186 -29.1632 0,,
|
||||
-95.959 -1462.09 48.125,179 96 183,stand,12.4792 1.22498 0,,
|
||||
73.8647 -1427.52 48.125,182 95 184,stand,25.0806 46.2909 0,,
|
||||
99.4833 -1194.86 63.5809,183 185 187 186,stand,8.85376 87.5555 0,,
|
||||
91.9864 -916.473 88.125,184 90 186 188,stand,58.7592 61.8311 0,,
|
||||
231.9 -1056.01 77.8952,90 187 184 185,stand,26.9867 -88.5608 0,,
|
||||
236.357 -1333.49 49.2887,186 95 184 112,stand,26.4703 -88.9014 0,,
|
||||
-95.7716 -815.558 88.125,185 83 90 191,stand,19.906 149.194 0,,
|
||||
292.875 -1729.53 48.125,112,crouch,1.60278 103.596 0,,
|
||||
279.578 -1776.87 48.125,113,crouch,3.6792 172.485 0,,
|
||||
-225.99 -805.01 88.7429,188 192,stand,16.6266 -164.218 0,,
|
||||
-304.84 -885.589 105.815,191 82,climb,5.22827 -178.198 0,,
|
||||
-525.249 -1496.54 258.928,22 23 194,stand,22.8448 -82.8918 0,,
|
||||
-447.577 -1441.13 280.798,193,crouch,2.98706 91.3239 0,,
|
||||
-679.596 -1913.66 253.625,23,crouch,34.0674 -74.6027 0,,
|
||||
-798.792 -1904.11 253.625,23,crouch,34.5837 -77.7118 0,,
|
||||
-1187.04 -1889.56 215.625,24,crouch,29.2334 -20.05 0,,
|
||||
-1528.88 -1840.88 256.125,17,crouch,17.6648 41.7645 0,,
|
||||
-1528.87 -1280.85 256.125,18,crouch,29.0576 -24.3622 0,,
|
||||
-1491.63 -975.282 256.125,19,crouch,6.09619 -48.1915 0,,
|
||||
-1343.22 -949.096 256.125,167,crouch,12.4847 85.6219 0,,
|
||||
-1285.59 -952.678 256.125,167,crouch,12.4847 85.6219 0,,
|
||||
-1083 -949.381 256.125,167,crouch,18.1812 85.7867 0,,
|
||||
-1004.24 -947.909 256.125,20,crouch,13.0011 97.5366 0,,
|
||||
-866.381 -1416.53 256.125,21,crouch,21.4606 153.825 0,,
|
||||
-937.328 -1237.5 120.125,11 207 225,stand,49.2615 -84.9628 0,,
|
||||
-933.243 -1321.11 98.125,206 208 214,stand,23.5315 89.4287 0,,
|
||||
-993.751 -1322.34 62.125,207 209 212,stand,22.8448 14.3207 0,,
|
||||
-993.606 -1365.33 0.124999,208 10,climb,2.46521 92.5378 0,,
|
||||
-1119.08 -1422.09 0.124999,10 211 213 9,stand,11.1005 17.6001 0,,
|
||||
-1112.39 -1363.13 0.124999,210 212,climb,4.01978 87.3578 0,,
|
||||
-1108.59 -1321.32 62.125,211 208 213,stand,65.4883 -6.22375 0,,
|
||||
-1256.25 -1295.13 44.125,212 210,crouch,5.92041 -32.9865 0,,
|
||||
-874.438 -1319.12 98.125,207 215,stand,79.9957 -173.551 0,,
|
||||
-877.637 -1360.13 49.125,214 216,climb,10.5841 91.6534 0,,
|
||||
-924.125 -1396.23 0.125,215 10,climb,9.02405 2.04346 0,,
|
||||
-1331.09 -1922.28 0.124998,6 8 218,stand,15.5884 175.378 0,,
|
||||
-1548.71 -1906.26 26.6683,217,crouch,4.53613 -12.9932 0,,
|
||||
-1127.86 -2009.6 0.125001,6 5,stand,23.0096 -13.8611 0,,
|
||||
-1240.62 -2531.37 7.23711,7,crouch,1.427 108.741 0,,
|
||||
-1548.81 -2370.57 30.767,7 222 224,stand,22.323 29.8315 0,,
|
||||
-1546.09 -2185.43 42.7615,221 6 223,stand,47.0093 4.27737 0,,
|
||||
-1584.88 -2150.83 40.5888,222,crouch,6.78284 -7.8131 0,,
|
||||
-1582.7 -2532.87 57.125,221,crouch,3.84399 48.6511 0,,
|
||||
-1413.11 -1219.98 120.125,13 12 206,stand,11.2708 57.4567 0,,
|
||||
-1213.51 -935.125 120.125,12 11 227,climb,8.85376 90.954 0,,
|
||||
-1217 -896.875 123.794,226 228,climb,9.54041 -87.9199 0,,
|
||||
-1199.7 -806.945 120.125,227 78 77,stand,38.7256 140.338 0,,
|
||||
-442.376 -999.276 267.232,25,crouch,11.6168 80.5939 0,,
|
||||
-100.597 -979.229 265.14,26,crouch,14.8962 69.7174 0,,
|
||||
271.624 -993.617 260.616,27,crouch,12.1332 104.764 0,,
|
||||
545.32 -1136.98 272.125,27 233 248,stand,85 -155.266 0,,
|
||||
624.184 -1145.59 272.125,232 234 247,stand,48.0475 -178.914 0,,
|
||||
703.927 -1048.63 272.125,233 28 241,stand,17.6593 25.1679 0,,
|
||||
685.226 -1317.88 272.125,30 247,stand,25.4266 -64.7937 0,,
|
||||
1036.12 -1092.33 272.125,29 31 28,stand,26.8109 -150.427 0,,
|
||||
1200.88 -983.137 272.125,31,crouch,12.1332 -97.2528 0,,
|
||||
1125.57 -983.125 272.125,31,crouch,13.1714 -76.3623 0,,
|
||||
1200.88 -1416.88 80.125,32,crouch,4.8822 150.516 0,,
|
||||
816.318 -951.749 272.125,28,crouch,15.0665 100.963 0,,
|
||||
681.237 -947.241 272.125,234,crouch,18.692 96.6504 0,,
|
||||
949.243 -950.335 272.125,28,crouch,15.9344 110.114 0,,
|
||||
805.362 -1484.38 306.125,30,crouch,24.9103 -92.243 0,,
|
||||
939.9 -1432.18 272.125,30 245 29,stand,45.1141 -95.3522 0,,
|
||||
955.134 -1486.03 272.125,244,crouch,22.4933 -104.504 0,,
|
||||
671.826 -1490.17 272.125,30,crouch,22.4933 -80.1581 0,,
|
||||
642.38 -1271.46 272.125,233 235 248,stand,37.5171 -177.706 0,,
|
||||
541.349 -1275.87 272.125,247 232 249,stand,59.7864 5.12332 0,,
|
||||
519.059 -1440.57 272.125,248 250,stand,37.3413 -168.23 0,,
|
||||
343.125 -1493.36 272.125,249,crouch,3.49792 49.3213 0,,
|
||||
351.177 -948.143 88.125,36,crouch,5.57434 -39.256 0,,
|
||||
355.107 -1485.65 56.125,35,crouch,2.46521 53.9795 0,,
|
||||
1196.54 -2539.53 12.3983,105,crouch,1.08093 127.198 0,,
|
||||
1724.62 -2288.88 13.2918,106,crouch,1.94336 123.743 0,,
|
||||
1640.39 -2291.44 12.407,106,crouch,4.36584 102.676 0,,
|
||||
1745.17 -2525.81 6.51703,106,crouch,0.394287 119.425 0,,
|
||||
1871.31 -555.01 17.3886,166,crouch,0.734863 155.164 0,,
|
||||
1847.7 -832.992 1.87435,166,crouch,1.77307 147.742 0,,
|
||||
1187.42 -743.551 77.0093,40 260,stand,56.1609 -96.7474 0,,
|
||||
1193.64 -966.909 88.125,259 39 262,stand,29.92 -100.889 0,,
|
||||
1200.88 -1080.4 88.125,39,crouch,4.19006 136.174 0,,
|
||||
1142.49 -880.764 80.125,260,crouch,6.60706 71.2555 0,,
|
||||
1257.71 -399.547 80.125,41 40 264,stand,46.3226 -96.5716 0,,
|
||||
1156.7 -400.022 80.125,263 265,stand,47.1851 95.0848 0,,
|
||||
1139.81 -226.772 80.125,264,crouch,-2.02271 -62.7338 0,,
|
||||
1290.28 -65.2218 224.125,41,crouch,12.3035 -108.657 0,,
|
||||
1152.35 -68.4922 224.125,41,crouch,11.2708 -77.7466 0,,
|
||||
1007.68 335.531 176.125,43,crouch,35.1001 66.2567 0,,
|
||||
913.248 301.035 312.125,137 270,stand,33.5455 -75.8404 0,,
|
||||
903.444 70.0446 312.125,269 271 163 273,stand,25.2563 -154.052 0,,
|
||||
700.683 80.676 314.626,270 137 272,stand,17.6593 115.646 0,,
|
||||
667.194 46.2472 315.125,271,crouch,15.7587 -111.579 0,,
|
||||
853.344 43.6972 312.014,270,crouch,18.5217 -112.441 0,,
|
||||
210.895 57.2108 312.125,136,crouch,14.3799 -90.3424 0,,
|
||||
361.084 427.943 176.125,135 276 280,stand,62.2089 5.48587 0,,
|
||||
648.475 428.971 176.125,275 277,stand,42.3511 3.9313 0,,
|
||||
895.187 428.88 32.125,276 134,stand,41.3129 122.551 0,,
|
||||
1374.15 494.669 0.504959,138 139 279,stand,34.9243 2.55801 0,,
|
||||
1262.69 265.633 0.125,278 124 125,stand,34.5782 -29.3738 0,,
|
||||
436.884 410.124 176.125,275,crouch,10.0623 -91.0126 0,,
|
||||
92.4469 874.44 33.125,61,crouch,0.0482178 -35.7733 0,,
|
||||
85.8005 733.061 33.125,61,crouch,0.910645 -48.3801 0,,
|
||||
-249.839 924.551 33.125,62,crouch,2.98157 -35.9436 0,,
|
||||
-354.856 887.62 89.125,53,crouch,5.05249 -121.417 0,,
|
||||
-671.199 885.542 118.907,52,crouch,3.67371 -80.1471 0,,
|
||||
-604.891 782.995 89.125,60 52 287,stand,53.7439 124.451 0,,
|
||||
-573.104 820.354 89.125,286 53,stand,59.0997 1.6846 0,,
|
||||
-381.249 -57.5633 89.125,58 59,stand,67.2131 100.616 0,,
|
||||
-548.463 -203.029 89.125,58,crouch,-0.127563 91.2946 0,,
|
||||
-711.289 -45.7827 89.125,57,crouch,1.25671 60.2142 0,,
|
||||
-354.125 -220.875 208.625,48,crouch,9.37012 133.076 0,,
|
||||
-563.022 -154.91 184.625,49 48 294 293,stand,15.4126 -17.8271 0,,
|
||||
-568.721 -232.875 185.125,292,crouch,10.4083 -105.02 0,,
|
||||
-518.475 -231.171 185.125,292,crouch,9.19983 -72.2095 0,,
|
||||
-986.014 54.7499 184.125,71 296 298 304,stand,30.0903 -91.1993 0,,
|
||||
-986.234 -184.046 184.125,295 297 300,stand,35.7867 -89.3042 0,,
|
||||
-801.677 -171.058 184.125,296 298 299 302,stand,25.6024 78.1824 0,,
|
||||
-802.595 46.8348 184.125,297 295 71,stand,56.507 111.85 0,,
|
||||
-832.146 -230.693 184.125,297,crouch,9.71619 -88.266 0,,
|
||||
-927.191 -215.188 184.125,296,crouch,9.19983 -88.0957 0,,
|
||||
-825.993 -271.125 152.125,302 85 76,climb,-13.421 88.0206 0,,
|
||||
-826.754 -232.875 184.125,301 297,climb,20.7684 -89.3042 0,,
|
||||
-1104.13 4.61504 114.555,304 73 72,climb,-0.643921 0.135527 0,,
|
||||
-1039.13 -1.01284 164.125,303 295,climb,5.91492 2.72281 0,,
|
||||
-1229.41 332.171 108.262,69 306 308 309 312,stand,49.256 -54.9115 0,,
|
||||
-1062.39 343.136 109.829,305 307 69,stand,30.6067 -79.6033 0,,
|
||||
-1067.09 211.588 111.366,306 308,stand,30.9528 -179.749 0,,
|
||||
-1211.13 214.508 111.028,307 72 305,stand,57.8912 175.933 0,,
|
||||
-1305.5 352.876 120.125,305 310 312,stand,44.2462 179.74 0,,
|
||||
-1501.15 352.251 120.125,309 311 75 314,stand,23.8721 93.4039 0,,
|
||||
-1508.47 558.596 120.125,310 67 312,stand,29.574 55.4187 0,,
|
||||
-1291.48 577.746 120.125,311 309 69 68 305,stand,27.8436 -70.622 0,,
|
||||
-1520.88 790.544 114.04,67,crouch,2.6355 -46.7816 0,,
|
||||
-1519.43 392.665 120.125,310,crouch,2.81128 -34.5209 0,,
|
||||
-891.345 379.592 184.125,71 70 316 317,stand,20.7684 -31.0657 0,,
|
||||
-1000.87 414.719 184.125,315,crouch,5.74463 -107.734 0,,
|
||||
-835.055 368.231 184.125,315,crouch,1.25671 -109.629 0,,
|
||||
-1033.74 475.845 107.652,69,crouch,1.25671 -99.0985 0,,
|
||||
-1039.13 -58.0591 125.48,73,crouch,2.11914 -101.862 0,,
|
||||
-1482.03 -241.861 168.125,74 79 76,stand,54.09 -61.7999 0,,
|
||||
881.32 -471.413 88.125,323 322 117 324,stand,34.5782 -92.8528 0,,
|
||||
877.675 -600.537 88.125,321,stand,33.1995 -163.989 0,,
|
||||
724.314 -504.071 88.125,128 92 321,stand,61.5167 74.4525 0,,
|
||||
940.759 -440.237 88.125,321 129 117,stand,40.7965 67.0313 0,,
|
||||
1086.97 -209.474 112.036,129,crouch,2.28943 -132.041 0,,
|
||||
1088.88 -890.919 96.252,117,crouch,1.60278 133.856 0,,
|
||||
1246.68 1280.71 36.125,149,crouch,2.11914 -80.5756 0,,
|
||||
1058.54 1286.09 36.125,149,crouch,3.32764 -71.2482 0,,
|
||||
-182.864 665.869 50.9239,54 330 62 331,stand,24.3939 175.823 0,,
|
||||
-116.7 613.215 33.125,329,crouch,5.39856 -21.0187 0,,
|
||||
-31.2508 638.488 33.125,329 61 132,stand,53.9197 13.6871 0,,
|
||||
-344.859 1010.28 63.4013,63,crouch,3.84399 21.6248 0,,
|
||||
-414.676 995.984 88.125,64,crouch,3.32764 161.31 0,,
|
||||
-791.548 1024.79 97.3042,65 64 70,stand,26.4648 17.8235 0,,
|
||||
-1458.33 1190.71 114.974,66,crouch,2.11914 -83.8769 0,,
|
||||
-590.596 -2163.72 0.095614,98 339 337 340 341,stand,76.4923 -91.1206 0,,
|
||||
-580.941 -2286.47 0.0940799,336 338 341 340,stand,35.9143 176.506 0,,
|
||||
-761.154 -2294.99 0.0519323,337 339 4 173 5,stand,33.327 146.805 0,,
|
||||
-776.226 -2152.46 1.44599,336 338 98 5,stand,26.5924 19.2096 0,,
|
||||
-406.67 -2214.72 0.860241,336 341 337,stand,23.1372 -4.27368 0,,
|
||||
-408.737 -2312.85 0.125,340 337 169 99 2 336,stand,37.8149 2.46094 0,,
|
||||
-772.573 -894.994 272.125,165 343,climb,85 90.3406 0,,
|
||||
-774.189 -888.875 131.53,342 81,climb,-85 -88.5333 0,,
|
||||
-203.609 -1836.54 48.125,110 345,stand,56.5863 -94.411 0,,
|
||||
-168.938 -1814.4 48.125,344 346,stand,76.6144 94.9988 0,,
|
||||
-161.807 -1685.5 48.125,345 96 97 113,stand,43.1171 1.41724 0,,
|
||||
|
@@ -0,0 +1,290 @@
|
||||
289
|
||||
2432.84 3177.44 48.125,1 7 109 198 199,stand,,,
|
||||
2623.91 3385.37 48.125,0 2 198 6,stand,,,
|
||||
2638.1 3634.09 48.125,1 3 6 140 199 7 161,stand,,,
|
||||
2611.72 4101.33 48.125,2 206 217,stand,,,
|
||||
2438.76 4101.49 48.125,12 161 206 205,stand,,,
|
||||
2186.04 3958.87 48.125,6 10 205 127 11,stand,,,
|
||||
2354.03 3681.54 48.125,5 2 7 9 161 199 1,stand,,,
|
||||
2226.13 3420.13 48.125,6 0 2 200,stand,,,
|
||||
1951.26 3588.48 48.125,9 200 201,stand,,,
|
||||
1940.87 3737.89 48.125,8 10 106 6,stand,,,
|
||||
1960.7 3934.71 48.125,9 11 5 127,stand,,,
|
||||
2023.73 4142.75 48.125,10 127 5,stand,,,
|
||||
2425.26 4538.21 192.125,4 17 207 216,stand,,,
|
||||
2021.94 4902.67 192.125,14 15 208 209 218 283 284,stand,,,
|
||||
1777.53 4905.69 192.125,13 78 104 219,stand,,,
|
||||
2344.83 4975.41 192.125,13 16 18 163 208,stand,,,
|
||||
2599.83 4983.93 192.125,15 17 19 22,stand,,,
|
||||
2744.51 4651.17 192.125,16 12 22 138 216,stand,,,
|
||||
2237.21 5305.93 192.125,15 19 24,stand,,,
|
||||
2567.42 5291.19 192.125,18 16 20 21,stand,,,
|
||||
2623.45 5463.14 192.125,19 21 23,stand,,,
|
||||
2647.17 5437.2 192.125,20 19,stand,,,
|
||||
2844.88 5005.63 192.125,16 17,stand,,,
|
||||
2607.05 5645.94 192.125,20 24 26,stand,,,
|
||||
2241.28 5607.58 192.125,23 18 25,stand,,,
|
||||
2271.2 5855.05 192.125,24 26 27 162 224,stand,,,
|
||||
2604.25 5887.97 192.125,25 23 224,stand,,,
|
||||
2006.8 5828.67 192.125,25 28 64 152 224,stand,,,
|
||||
1790.04 5836.05 192.125,27 29 63 62,stand,,,
|
||||
1433.78 5875.41 192.125,28 30 62 131 151 222,stand,,,
|
||||
1036.57 5804.74 192.125,29 31 69,stand,,,
|
||||
879.821 5799.07 192.125,30 32 67 68,stand,,,
|
||||
839.605 5621.73 192.125,31 33,stand,,,
|
||||
596.88 5612.15 192.125,32 34,stand,,,
|
||||
582.159 5822.87 192.125,33 35 68,stand,,,
|
||||
385.094 5787.88 192.125,34 36 53 287 288,stand,,,
|
||||
390.047 5462.98 192.125,35 37 133 238 288 129,stand,,,
|
||||
207.877 5464.84 192.125,36 38 39 129,stand,,,
|
||||
182.153 5253 192.125,37 39 40,stand,,,
|
||||
163.806 5276.92 192.125,38 37,stand,,,
|
||||
175.527 5118.8 192.125,38 41 74 156 236,stand,,,
|
||||
-70.7136 5134.85 193.125,40 42 43,stand,,,
|
||||
-275.549 4892.83 193.125,41 43 234 235,stand,,,
|
||||
-266.815 5296.99 193.125,42 41 44,stand,,,
|
||||
-271.371 5485 193.125,43 45 132,stand,,,
|
||||
-266.112 5628.38 192.125,44 46 54 47,stand,,,
|
||||
-459.103 5613.33 192.125,45 47,stand,,,
|
||||
-213.579 5992.19 192.125,46 48 54 45,stand,,,
|
||||
102.977 6223.63 192.125,47 49 53 286 287,stand,,,
|
||||
102.809 6476.36 192.125,48 50 233,stand,,,
|
||||
264.317 6469.23 192.125,49 51 232,stand,,,
|
||||
272.6 6624.24 192.125,50 52 150 231,stand,,,
|
||||
642.269 6605.11 192.125,51 56,stand,,,
|
||||
405.933 6202.26 192.125,48 35 55 286 287,stand,,,
|
||||
-11.4943 5718.22 192.125,45 129 47 285 286,stand,,,
|
||||
766.344 6179.48 192.125,53 68 67 230,stand,,,
|
||||
779.758 6492.23 192.125,52 57 230,stand,,,
|
||||
784.226 6862.18 192.125,56 58 229,stand,,,
|
||||
798.086 7324.38 192.125,57 59 229,stand,,,
|
||||
1395.91 7356.1 192.125,60 58 228,stand,,,
|
||||
1365.83 6918.85 192.125,59 61 228,stand,,,
|
||||
1361 6372.59 192.125,60 62 67,stand,,,
|
||||
1435.81 6129.11 192.125,61 29 63 166 28,stand,,,
|
||||
1795.88 6142.36 192.125,62 28 64,stand,,,
|
||||
2016.26 6176.57 192.125,63 27 65,stand,,,
|
||||
2315.85 6165.88 192.125,64 66 223 226 227,stand,,,
|
||||
2307.15 6297.77 192.125,65 137 225,stand,,,
|
||||
874.613 6285.15 192.125,61 31 55 230,stand,,,
|
||||
770.718 5995.93 192.125,34 55 31,stand,,,
|
||||
1048.09 5526 192.125,30 70 221,stand,,,
|
||||
1279.18 5584.71 192.125,69 71 155 220,stand,,,
|
||||
1256.24 5208.59 192.125,70 72 75 191,stand,,,
|
||||
1045.08 5210.46 192.125,71 73 190,stand,,,
|
||||
1052.15 4903.59 192.125,72 75 187,stand,,,
|
||||
456.413 4896.82 192.125,40 79 134 186 187 236 239 240,stand,,,
|
||||
1258.85 4919.74 192.125,71 73 76 77,stand,,,
|
||||
1473.05 4824.54 192.125,75 78,stand,,,
|
||||
1465.9 4999.85 192.125,75 78 193,stand,,,
|
||||
1640.86 4912.52 192.125,77 76 14 192,stand,,,
|
||||
362.831 4695.38 192.125,74 179 180 183 236 237 241,stand,,,
|
||||
265.8 4597.59 44.125,92 93 177 181,stand,,,
|
||||
616.188 4111.07 202.625,136 184 185 243 245,stand,,,
|
||||
600.151 3759.09 202.625,246 249 251 125,stand,,,
|
||||
600.137 3578.04 202.625,249 252,stand,,,
|
||||
608.502 3059.77 202.625,158 252 258 259,stand,,,
|
||||
606.225 2743.44 40.125,86 120 88 257 119 272,stand,,,
|
||||
608.651 2545.06 40.125,85 87 119,stand,,,
|
||||
336.006 2602.96 40.125,86 88,stand,,,
|
||||
329.621 3031.26 40.125,87 89 85 271 272,stand,,,
|
||||
315.668 3480.97 40.125,88 90 126,stand,,,
|
||||
176.967 3813.3 40.125,89 91 266,stand,,,
|
||||
155.913 4288.9 40.125,90 92 177 266,stand,,,
|
||||
121.219 4610.21 40.125,91 80 93 262,stand,,,
|
||||
258.037 4754.39 44.125,80 94 92 263,stand,,,
|
||||
766.15 4733.51 44.125,93 95 176 96,stand,,,
|
||||
1166.33 4731.8 40.125,94 96 176,stand,,,
|
||||
1201.57 4440.83 40.125,95 97 176 125 94 269,stand,,,
|
||||
1232.32 3919.95 40.125,96 125 169 274,stand,,,
|
||||
1736.29 4147.81 168.125,142 143 159 173 277,stand,,,
|
||||
1714.65 4502.26 168.266,104 144 173 144,stand,,,
|
||||
1436.93 4336.06 304.125,101 103 146 147 174,stand,,,
|
||||
1425.4 4038.5 304.125,100 102 148 281 282,stand,,,
|
||||
1824.75 4041.87 304.125,101 175 280,stand,,,
|
||||
1789.48 4345.09 304.125,100 105 278 279 280,stand,,,
|
||||
1776.43 4757.02 200.125,99 14,stand,,,
|
||||
2190.49 4336.59 304.125,103 149 194 214 215,stand,,,
|
||||
1748.92 3747.79 40.125,9 107 169 170,stand,,,
|
||||
1711.37 3305.54 40.125,106 108 110,stand,,,
|
||||
1807.72 3000.6 40.125,107 112 196,stand,,,
|
||||
2379.65 3008.03 40.125,0 114 196 197,stand,,,
|
||||
1209.35 3287.55 40.125,107 111 121 122 123,stand,,,
|
||||
1258.34 2823.42 40.125,110 112 118 120,stand,,,
|
||||
1825.95 2776.13 40.125,111 108 113 118,stand,,,
|
||||
2136.54 2660.8 40.125,112 195 196,stand,,,
|
||||
2584.62 2812.44 40.125,109 115 197,stand,,,
|
||||
2704.88 2749.92 40.125,114 116,crouch,,,
|
||||
2706.54 2620.76 40.125,115 117,crouch,,,
|
||||
2864.88 2616.28 40.125,116 141,stand,,,
|
||||
1483.51 2496.16 40.125,111 119 112,stand,,,
|
||||
919.938 2480.39 40.125,118 120 86 130 85,stand,,,
|
||||
873.911 2775.57 40.125,119 111 85 130,stand,,,
|
||||
895.982 3317.44 40.125,110 124,stand,,,
|
||||
1198.55 3533.84 40.125,110 123 124 273,stand,,,
|
||||
1201.6 3502.25 40.125,122 110,stand,,,
|
||||
958.648 3536.6 40.125,122 121 125 126 267 273,stand,,,
|
||||
987.825 3764.43 45.0348,124 97 96 269 274 82,stand,,,
|
||||
596.541 3557.07 40.125,124 89 267 268 270,stand,,,
|
||||
2211.78 4167.98 48.125,11 5 213 10,stand,-7.05872 93.4772 0,,
|
||||
555.174 2952.71 202.625,255 258,stand,16.2256 -85.0861 0,,
|
||||
219.436 5622.3 192.125,37 54 288 285 36,stand,19.2963 -95.3198 0,,
|
||||
939.439 2606.77 40.125,119 120 261,stand,-14.4757 1.10717 0,,
|
||||
1463.94 5560.67 192.125,29,crouch,3.58154 94.6143 0,,
|
||||
-47.8503 5470.4 193.125,44,crouch,-2.04895 -134.055 0,,
|
||||
389.24 5198.08 192.125,36,crouch,1.02173 93.62 0,,
|
||||
51.6285 4887.43 192.125,74,crouch,2.86194 1.95007 0,,
|
||||
1289.32 2606.94 156.125,260,crouch,0.144043 92.796 0,,
|
||||
611.671 4207.25 202.625,81,crouch,6.90062 -91.615 0,,
|
||||
2448.31 6276.81 192.125,66,crouch,4.95604 174.128 0,,
|
||||
2892.99 4459.39 192.125,17,crouch,3.31907 148.953 0,,
|
||||
2821.91 4345.19 48.125,217,crouch,4.85167 -136.549 0,,
|
||||
2901.95 3613.14 48.125,2,crouch,9.6637 179.039 0,,
|
||||
2864.88 2816.12 40.125,117,crouch,-3.02551 153.506 0,,
|
||||
1751.48 4011.13 168.125,98,crouch,13.042 -106.507 0,,
|
||||
1453.04 4286.1 168.125,98,crouch,1.27014 142.866 0,,
|
||||
1504.13 4486.21 162.019,99 145 99,climb,6.08215 -178.55 0,,
|
||||
1443.56 4482.01 224.125,144 146,climb,8.1311 -87.4677 0,,
|
||||
1442.02 4453.54 304.125,145 100,climb,3.52234 -90.2307 0,,
|
||||
1535.49 4341.86 304.125,100,crouch,11.8115 134.302 0,,
|
||||
1540.82 4098.13 304.125,101,crouch,12.8387 -139.526 0,,
|
||||
2111.78 4337.96 304.125,105,crouch,9.76807 88.5773 0,,
|
||||
186.781 6791.12 192.125,51,crouch,3.22021 -49.3286 0,,
|
||||
1210.93 5695.13 228.125,29,claymore,4.40002 133.978 0,,
|
||||
2013.26 5736.54 224.625,27,claymore,-1.53259 38.9355 0,,
|
||||
1962.42 4793.62 192.125,209,claymore,9.41528 86.2921 0,,
|
||||
2249.52 4476.14 192.125,211,claymore,0.203247 9.22852 0,,
|
||||
1189.81 5608.85 192.125,70,claymore,14.837 -159.736 0,,
|
||||
420.875 5027.39 192.125,40 164 167,claymore,20.9784 -108.561 0,,
|
||||
437.74 5643.81 192.125,288,claymore,7.67395 117.274 0,,
|
||||
650.92 3080.04 202.625,84,claymore,29.5752 -115.961 0,,
|
||||
1564.46 4101.74 168.125,98 160 172,claymore,14.9414 153.089 0,,
|
||||
1614.35 4288.61 168.125,159 172 173,claymore,6.54785 44.0991 0,,
|
||||
2419.09 3892.56 48.125,4 6 2 205 206,grenade,-29.1687 94.2737 0,,
|
||||
2339.29 5794.08 192.125,25,grenade,-11.8707 -62.7649 0,,
|
||||
2185.61 4873.97 192.125,15,grenade,-10.3381 178.319 0,,
|
||||
414.493 4889.83 192.125,156,grenade,-12.5848 2.62573 0,,
|
||||
381.378 5742.29 192.125,288,grenade,-21.0828 7.92114 0,,
|
||||
1232.79 6114.97 192.125,62,grenade,-36.9415 -98.8934 0,,
|
||||
373.718 4944.2 192.125,156,grenade,-7.26746 -89.3738 0,,
|
||||
1288.92 3970.38 40.125,169,grenade,-24.4611 94.3231 0,,
|
||||
1358.07 3908.41 44.125,97 168 106 171 274,stand,-5.55359 90.2856 0,,
|
||||
1686.98 3976.88 12.14,106,crouch,-10.2502 -87.0886 0,,
|
||||
1361.13 4159.79 168.125,169 172,stand,16.5125 1.86768 0,,
|
||||
1470.9 4159.54 168.125,171 159 160 275,stand,18.9349 4.43298 0,,
|
||||
1720.03 4347.59 168.125,160 98 99 276,stand,6.97632 89.1211 0,,
|
||||
1500.55 4350.61 304.125,100,claymore,10.2502 118.444 0,,
|
||||
1687.23 4138.38 304.125,102,crouch,8.54187 -37.2931 0,,
|
||||
781.245 4432.83 44.125,96 94 177 95,stand,9.9646 91.2579 0,,
|
||||
531.746 4368.17 44.125,176 91 80 178,stand,7.97058 -0.977783 0,,
|
||||
519.34 3953.97 40.125,177 266 267,stand,6.69067 -89.2255 0,,
|
||||
249.239 4700.53 192.125,79,claymore,19.093 19.2535 0,,
|
||||
477.435 4686.4 192.125,79,claymore,12.5452 160.455 0,,
|
||||
244.125 4528.14 56.2472,80 182,stand,52.4036 -87.951 0,,
|
||||
244.125 4328.59 198.125,181 183,stand,26.778 2.59827 0,,
|
||||
386.638 4328.68 198.125,182 79 184,stand,14.1107 89.577 0,,
|
||||
354.332 4119.38 198.125,183 81 264 265,stand,14.1107 86.8799 0,,
|
||||
500.328 4111.92 202.125,81,claymore,34.0399 175.128 0,,
|
||||
520.875 5003.09 192.125,74,crouch,2.58057 -115.84 0,,
|
||||
613.498 4892.86 192.125,74 73 188 189,stand,2.29492 0.461426 0,,
|
||||
590.818 5020.23 192.125,187,crouch,0.872192 -83.1006 0,,
|
||||
567.125 4989.53 192.125,187,claymore,6.56311 -65.451 0,,
|
||||
1019.16 5373.26 192.125,72,crouch,0.72937 -56.2061 0,,
|
||||
1294.12 5150.07 192.125,71,claymore,14.2535 -107.018 0,,
|
||||
1642.59 5096.88 192.125,78,crouch,5.2832 -89.0936 0,,
|
||||
1552.88 5074.72 192.125,77,crouch,5.2832 -114.587 0,,
|
||||
2240.97 4358.08 304.125,105,claymore,9.83704 -112.297 0,,
|
||||
2176.99 2550.38 40.125,113,crouch,-1.2085 134.193 0,,
|
||||
2158.42 2983.58 40.125,109 113 108,stand,25.3839 -98.7341 0,,
|
||||
2555.92 3030.58 40.125,114 109 198,stand,65.9564 140.246 0,,
|
||||
2523.46 3215.19 48.125,197 0 1,stand,26.4166 -89.2255 0,,
|
||||
2433.03 3386.9 80.125,0 6 2,stand,54.7339 93.7903 0,,
|
||||
2059.61 3540.93 48.125,8 7 201,stand,63.5394 -22.2363 0,,
|
||||
1998.28 3537.48 48.125,8 200 202,stand,85 -74.729 0,,
|
||||
1972.78 3474.27 48.125,201 203,stand,45.1141 42.1655 0,,
|
||||
2150.09 3289.75 48.125,202 204,stand,65.6641 -46.582 0,,
|
||||
2165.78 3228.84 48.125,203,crouch,2.11914 80.6726 0,,
|
||||
2341.14 4046.94 48.125,4 5 207 161,stand,19.2139 37.1613 0,,
|
||||
2520.04 4098.67 48.125,3 4 216 161,stand,22.4933 115.724 0,,
|
||||
2336.34 4533.27 192.125,205 12 211 208,stand,50.8106 -10.3217 0,,
|
||||
2148.36 4675.37 192.125,209 211 15 13 207,stand,54.0955 -108.924 0,,
|
||||
2018.64 4684.6 192.125,210 153 208 13,stand,29.92 -120.146 0,,
|
||||
2006.28 4507.86 192.125,211 209 212,stand,35.6165 -0.318604 0,,
|
||||
2155.21 4507.84 192.125,207 154 210 208,stand,35.2704 0.0274658 0,,
|
||||
1921.4 4447.13 192.125,210,crouch,2.29492 55.6183 0,,
|
||||
2213.09 4232.87 49.1296,127 214,climb,-85 92.0544 0,,
|
||||
2210.75 4242.14 304.125,213 105,climb,85 90.8868 0,,
|
||||
1976.09 4359.81 304.125,105,crouch,16.2805 85.5475 0,,
|
||||
2540.35 4510.84 192.125,12 17 206,stand,56.8585 -179.498 0,,
|
||||
2622.85 4261.23 48.125,139 3,stand,36.6547 47.8864 0,,
|
||||
1944.2 5061.09 192.125,13,crouch,5.40405 -81.0876 0,,
|
||||
1761.43 5024.88 192.125,14,crouch,2.98706 -64.1687 0,,
|
||||
1325.57 5648.88 192.125,70,crouch,2.81128 -112.684 0,,
|
||||
978.853 5449.89 192.125,69,crouch,4.36584 46.3373 0,,
|
||||
1412.39 5543.53 192.125,29,crouch,5.22827 83.1085 0,,
|
||||
2326.13 6039.13 192.125,65 224,climb,9.37561 -91.7993 0,,
|
||||
2325.08 5976.88 192.125,223 25 26 27,climb,9.89197 87.948 0,,
|
||||
2167.13 6266.89 192.125,66,crouch,4.8877 0.238652 0,,
|
||||
2212.1 6066.38 192.125,65,crouch,2.98706 -172.769 0,,
|
||||
2380.86 6053.57 192.125,65,crouch,5.22827 -92.6453 0,,
|
||||
1234.18 7111.57 192.125,60 229 59,stand,20.0818 171.186 0,,
|
||||
963.112 7121.16 192.125,228 57 58,stand,17.1429 -171.027 0,,
|
||||
780.804 6367.9 192.125,67 56 55,stand,33.7213 174.465 0,,
|
||||
452.084 6814.75 192.125,51,crouch,4.36584 -113.53 0,,
|
||||
437.644 6515.01 192.125,50,crouch,5.92041 -146.16 0,,
|
||||
76.3956 6511.41 192.125,49,crouch,3.50342 -80.0275 0,,
|
||||
-321.832 4848.37 193.125,42,crouch,2.81128 35.8289 0,,
|
||||
-86.7116 4874.72 193.125,42,crouch,5.22827 87.7997 0,,
|
||||
229.934 4910.01 192.125,40 74 79,stand,26.2946 149.79 0,,
|
||||
328.376 4636.98 190.125,79,crouch,3.6792 -88.1299 0,,
|
||||
426.088 5221.36 192.125,36,crouch,1.4325 -95.8972 0,,
|
||||
502.828 4852.87 192.125,74,crouch,2.4707 4.93531 0,,
|
||||
503.734 4922.59 192.125,74,crouch,2.29492 -2.66174 0,,
|
||||
385.669 4636.88 190.125,79,crouch,3.50342 -91.4148 0,,
|
||||
642.125 4204.23 202.625,243,crouch,11.7926 38.092 0,,
|
||||
614.729 4170 202.625,81 242 244,stand,73.0908 91.0956 0,,
|
||||
584.624 4196.33 202.625,243,crouch,3.33313 41.5418 0,,
|
||||
591.48 3967.93 202.625,81 246,stand,48.5693 89.7168 0,,
|
||||
598.901 3881.24 202.625,245 82 248 247,stand,59.7919 -78.8025 0,,
|
||||
673.875 3848.55 202.625,246,crouch,14.3799 -4.90844 0,,
|
||||
672.838 3911.6 202.625,246,crouch,16.1102 -2.66174 0,,
|
||||
593.998 3686.91 202.625,83 82 250,stand,47.0148 12.005 0,,
|
||||
673.875 3708.54 202.625,249,crouch,17.3187 4.92432 0,,
|
||||
674.498 3780.87 202.625,82,crouch,11.6168 -1.98059 0,,
|
||||
596.151 3498.8 202.625,84 83 253 254,stand,41.4886 72.9517 0,,
|
||||
670.513 3510.01 202.625,252,crouch,7.99133 179.14 0,,
|
||||
557.085 3497.66 202.625,252,crouch,6.95862 67.0795 0,,
|
||||
567.63 2872.98 202.625,128 256,stand,52.7112 87.7887 0,,
|
||||
605.195 2860.08 202.625,255,crouch,4.8877 90.7221 0,,
|
||||
611.517 2971.87 112.378,258 85,climb,-85 89.8596 0,,
|
||||
611.381 2979.71 202.625,257 128 84,climb,85 -89.5416 0,,
|
||||
576.445 3086.33 202.625,84,crouch,3.84399 87.4426 0,,
|
||||
1009.33 2599.38 174.125,261 135,climb,85 1.79871 0,,
|
||||
1000.87 2599.36 40.5887,260 130,climb,-85 1.11207 0,,
|
||||
25.1208 4740.64 40.125,92,crouch,-9.71621 -32.4017 0,,
|
||||
122.551 4787.85 44.125,93,crouch,-5.74465 -63.4821 0,,
|
||||
337.886 4147.93 198.125,184,crouch,0.473614 89.3213 0,,
|
||||
394.347 4129.99 202.125,184,crouch,3.75303 98.4729 0,,
|
||||
224.439 3975.04 40.125,178 90 91,stand,51.9281 -132.723 0,,
|
||||
541.394 3824.96 40.125,126 178 268 124,stand,32.2406 105.032 0,,
|
||||
803.49 3920.29 40.125,267 269 126,stand,15.4919 7.98951 0,,
|
||||
959.356 3892.43 40.125,268 125 96,stand,43.985 -61.076 0,,
|
||||
564.179 3326.42 40.125,126 271,stand,33.2788 -89.3933 0,,
|
||||
557.188 3100.88 40.125,270 88 272,stand,13.9374 -136.008 0,,
|
||||
512.641 2898.92 40.125,271 85 88,stand,50.8899 -71.2549 0,,
|
||||
1218.48 3622.07 40.125,122 274 124,climb,1.50633 92.4249 0,,
|
||||
1214.73 3672.34 40.125,273 97 169 125,climb,4.78575 -90.7666 0,,
|
||||
1527.94 4012.39 168.125,172,crouch,20.5017 -89.3878 0,,
|
||||
1835.19 4395.27 168.125,173,crouch,4.0991 -136.525 0,,
|
||||
1839.42 4120.79 168.125,98,crouch,6.34031 161.309 0,,
|
||||
1814.73 4396.99 304.125,103,crouch,15.6677 147.505 0,,
|
||||
1691.33 4392.61 304.125,103,crouch,15.3216 138.007 0,,
|
||||
1827.88 4310.82 304.125,102 103,stand,53.3069 95.7098 0,,
|
||||
1445.03 4006.14 304.125,101,crouch,13.421 158.903 0,,
|
||||
1425.34 4085.14 304.125,101,crouch,16.1841 -164.836 0,,
|
||||
1941.38 4881.8 192.125,13,crouch,1.2085 179.863 0,,
|
||||
1941.57 4932.29 192.125,13,crouch,2.58728 -178.412 0,,
|
||||
188.827 5739.82 192.125,288 286 54 129,stand,29.8718 36.0406 0,,
|
||||
181.269 5888.25 192.125,48 287 285 54 53,stand,29.5258 -2.8125 0,,
|
||||
307.551 5893.56 192.125,286 288 35 53 48,stand,32.4591 -56.5082 0,,
|
||||
309.579 5732.68 192.125,287 285 36 35 129 165 157,stand,40.2319 27.2351 0,,
|
||||
|
@@ -0,0 +1,301 @@
|
||||
300
|
||||
-2026.32 -600.616 -9.10811,1 13,stand,,,
|
||||
-1840.67 -728.105 -6.66582,0 2 215,stand,,,
|
||||
-1461.04 -743.573 -4.82172,1 210 208 213 215,stand,,,
|
||||
-1436.07 -483.177 -1.52717,4 210 211 209 212 245,stand,,,
|
||||
-1416.7 -295.741 6.15911,3 5 66 211 245 289,stand,,,
|
||||
-1502.69 -84.3858 1.72691,4 6 152 245 289,stand,,,
|
||||
-1600.06 111.764 0.125002,5 7 39,stand,,,
|
||||
-1812.03 97.021 23.7245,6 8 24 236,stand,,,
|
||||
-1818.43 -71.8446 23.9707,7 9 24 237 239,stand,,,
|
||||
-1998.38 -147.942 22.6708,8 10,stand,,,
|
||||
-2072.02 -184.226 20.625,9 11,stand,,,
|
||||
-2293.45 -212.97 -41.7375,10 12 14,stand,,,
|
||||
-2356.79 -402.836 -31.9477,11 13 217 219,stand,,,
|
||||
-2235.02 -516.454 -13.854,0 12 217,stand,,,
|
||||
-2247.36 32.8005 -23.0498,11 15,stand,,,
|
||||
-2231.87 329.913 -48.0427,14 16,stand,,,
|
||||
-2193.36 465.685 -68.3319,15 17,stand,,,
|
||||
-2197.76 596.053 -99.5487,16 18 166 168,stand,,,
|
||||
-2152.38 617.331 -74.641,17 19,stand,,,
|
||||
-2082.63 626.572 -37.0699,18 20 229,stand,,,
|
||||
-1968.53 652.086 -7.53048,19 21 229 25,stand,,,
|
||||
-1912.2 621.118 -1.82026,20 22 25 37,stand,,,
|
||||
-1920.99 488.385 23.2253,21 23 231,stand,,,
|
||||
-1923.6 317.719 25.182,22 164,stand,,,
|
||||
-1915.37 88.2068 24.3389,7 8 164 238,stand,,,
|
||||
-1914.13 848.6 -2.37081,21 26 20,stand,,,
|
||||
-1903.8 1141.1 -2.25296,25 27 246,stand,,,
|
||||
-1898.21 1373.12 2.125,26 28 247 253,stand,,,
|
||||
-1695.7 1446.37 2.125,27 29 252,stand,,,
|
||||
-1596.89 1588.61 2.125,28 30 249,stand,,,
|
||||
-1439.8 1627.1 -0.552495,29 31 251,stand,,,
|
||||
-1421.49 1415 -2.87977,30 32 33,stand,,,
|
||||
-1248.51 1407.26 0.314717,31 45 33,stand,,,
|
||||
-1494.32 1249.2 2.11077,31 34 246 32,stand,,,
|
||||
-1572.34 1049.2 1.09495,33 35 246,stand,,,
|
||||
-1605.25 829.027 0.125001,34 36,stand,,,
|
||||
-1603.83 652.233 0.124999,35 37 38,stand,,,
|
||||
-1780.22 623.005 0.331597,36 21,stand,,,
|
||||
-1577.38 469.722 -0.623427,36 39 40 299 298,stand,,,
|
||||
-1594.23 283.687 0.125,38 6 234 299,stand,,,
|
||||
-1403.8 577.38 7.82506,38 41 59 297 298,stand,,,
|
||||
-1392.61 827.775 10.8592,40 42 59,stand,,,
|
||||
-1318.08 1099.28 12.8137,41 43,stand,,,
|
||||
-1002.96 1135.24 12.779,42 44 45,stand,,,
|
||||
-873.858 1149.53 13.0767,43 45 46,stand,,,
|
||||
-915.481 1367.31 0.125,44 32 254 43,stand,,,
|
||||
-592.573 1140.85 12.896,44 47 281,stand,,,
|
||||
-317.821 1121.88 12.4863,46 48,stand,,,
|
||||
-8.91961 999.161 8.89676,47 49 141 150 273 274 279,stand,,,
|
||||
-157.869 821.563 3.31569,48 50 60 151 150,stand,,,
|
||||
-330.238 869.81 28.125,49 51 60,stand,,,
|
||||
-471.976 874.54 36.125,50 52 259,stand,,,
|
||||
-477.601 683.184 36.125,51 53 258,stand,,,
|
||||
-529.587 494.225 36.125,52 54,stand,,,
|
||||
-627.744 478.229 36.125,53 55 257,stand,,,
|
||||
-722.013 506.337 27.1107,54 56,stand,,,
|
||||
-822.638 535.461 0.97744,55 57 256,stand,,,
|
||||
-802.055 719.935 1.68364,56 58 255,stand,,,
|
||||
-1075.17 711.955 -3.84338,57 59,stand,,,
|
||||
-1267.1 654.805 -1.08925,58 40 41 297,stand,,,
|
||||
-234.227 635.109 5.62068,49 61 50 140,stand,,,
|
||||
-359.672 362.645 5.7597,60 62 260 262 264,stand,,,
|
||||
-383.365 152.579 3.92952,61 63 262 260,stand,,,
|
||||
-661.532 138.948 4.21784,62 64,stand,,,
|
||||
-809.48 8.65492 3.625,63 65,stand,,,
|
||||
-857.041 -247.476 3.625,64 66 67 290,stand,,,
|
||||
-1126.13 -269.947 6.125,65 4 211 289,stand,,,
|
||||
-701.144 -285.52 3.625,65 68,stand,,,
|
||||
-679.028 -200.533 33.125,67 69,stand,,,
|
||||
-650.239 -99.2598 33.125,68 70 203 204,stand,,,
|
||||
-481.851 -138.844 33.125,69 71,stand,,,
|
||||
-489.283 -209.743 33.125,70 72,stand,,,
|
||||
-218.409 -267.926 33.125,71 73 163,stand,,,
|
||||
-249.83 -373.767 15.625,72 74,stand,,,
|
||||
-271.808 -531.944 -13.191,73 75 135 153,stand,,,
|
||||
-396.953 -665.696 -8.53964,74 76 153,stand,,,
|
||||
-631.287 -724.986 -8.92424,75 77 79,stand,,,
|
||||
-913.071 -706.514 -9.85932,76 78,stand,,,
|
||||
-1172 -705.625 -9.04957,77 208 209 214,stand,,,
|
||||
-491.416 -848.916 -9.64055,76 80,stand,,,
|
||||
-300.977 -1069.2 -9.23636,79 81 154,stand,,,
|
||||
-120.667 -1276.71 -7.97988,80 82 154 207,stand,,,
|
||||
193.483 -1301.82 -8.98131,81 83 205,stand,,,
|
||||
504.782 -1313.02 -8.49464,82 84,stand,,,
|
||||
810.591 -1299.88 -9.12452,83 85 155,stand,,,
|
||||
1116.24 -1267.8 3.68847,84 86 91,stand,,,
|
||||
1115.71 -1023.44 5.03899,85 87 130,stand,,,
|
||||
1355.57 -1002.57 2.27535,86 88 95 101,stand,,,
|
||||
1441.6 -1171.44 0.653159,87 89,stand,,,
|
||||
1435.03 -1401.18 2.125,88 90 92,stand,,,
|
||||
1423.22 -1514.72 1.58514,89 91 171,stand,,,
|
||||
1189.11 -1536.98 5.15073,90 85 170 174,stand,,,
|
||||
1547.67 -1409.27 23.125,89 93,stand,,,
|
||||
1703.43 -1301.02 23.125,92 175 178 179,stand,,,
|
||||
1735.1 -931.467 22.125,95 96 180,stand,,,
|
||||
1589.03 -957.883 22.125,94 87,stand,,,
|
||||
1892.58 -926.623 22.125,94 97,stand,,,
|
||||
1871.34 -783.168 7.64482,96 98 184 100,stand,,,
|
||||
1797.43 -613.18 7.45521,97 99 100 107 108,stand,,,
|
||||
1725.38 -396.016 7.26997,98 102 107 190,stand,,,
|
||||
1660.38 -731.165 1.63162,98 101 107 97,stand,,,
|
||||
1518.44 -886.009 0.124368,100 87,stand,,,
|
||||
1657.82 -275.418 -4.51262,99 103 108 109,stand,,,
|
||||
1519.19 -286.047 11.125,102 104 109 108,stand,,,
|
||||
1395.49 -297.762 31.125,103 105 188 189,stand,,,
|
||||
1403.03 -474.416 31.125,104 106 186,stand,,,
|
||||
1410.21 -634.829 31.125,105 107,stand,,,
|
||||
1540.11 -646.788 0.257195,106 98 100 108 99,stand,,,
|
||||
1602.26 -441.042 3.43335,107 102 103 98,stand,,,
|
||||
1645.7 -52.4858 0.748013,102 110 116 103,stand,,,
|
||||
1509.16 34.1945 3.43696,109 111 120 126,stand,,,
|
||||
1629.36 195.111 6.625,110 112 193,stand,,,
|
||||
1764.29 375.453 6.625,111 113,stand,,,
|
||||
1897.72 510.858 9.72905,112 114 117,stand,,,
|
||||
1981.12 400.155 2.28562,113 115 192,stand,,,
|
||||
1908.68 182.623 -4.76643,114 116 191,stand,,,
|
||||
1766.06 68.5174 -4.92014,115 109,stand,,,
|
||||
1693.3 520.78 0.76198,113 118 119,stand,,,
|
||||
1485.69 542.122 0.889626,117 119 121,stand,,,
|
||||
1588.02 446.259 0.124999,118 120 117,stand,,,
|
||||
1472.25 238.671 -0.783496,119 110,stand,,,
|
||||
1325.4 530.513 0.267984,118 122 265,stand,,,
|
||||
1303.25 652.947 3.75778,121 123 162,stand,,,
|
||||
1089.16 649.873 4.76343,122 124 143 144 162,stand,,,
|
||||
1119.24 377.7 5.1122,123 125 159,stand,,,
|
||||
1128.37 89.6745 4.95395,124 126 128 159 270,stand,,,
|
||||
1377.67 59.8361 0.920102,125 110 270,stand,,,
|
||||
1111.09 -176.849 4.9427,131,stand,,,
|
||||
1111.8 -208.917 4.95746,125 292 293 131,stand,,,
|
||||
1200.34 -713.129 2.79055,130 291,stand,,,
|
||||
1213.41 -817.18 2.24623,129 86,stand,,,
|
||||
899.146 -211.114 -4.81523,127 132 197 128,stand,,,
|
||||
594.187 -208.603 -2.09453,131 133,stand,,,
|
||||
261.756 -215.793 -5.2388,132 134 200,stand,,,
|
||||
79.5468 -240.328 -4.18565,133 135 136,stand,,,
|
||||
61.7428 -441.529 -10.1765,134 74 201,stand,,,
|
||||
80.5295 -100.083 -2.53829,134 137 200,stand,,,
|
||||
-139.23 32.9057 6.141,136 138 261 262,stand,,,
|
||||
17.0851 187.06 -0.788587,137 139 261 263,stand,,,
|
||||
70.8492 444.735 4.30535,138 140,stand,,,
|
||||
48.168 600.904 3.89931,139 141 151 60,stand,,,
|
||||
209.472 831.251 9.39502,140 48 142 148 151 274,stand,,,
|
||||
542.296 792.143 4.125,141 143,stand,,,
|
||||
830.607 814.296 4.54835,142 123,stand,,,
|
||||
1059.84 924.677 7.56855,123 145,stand,,,
|
||||
1024.85 1130.35 11.125,144 146 161,stand,,,
|
||||
722.259 1142.26 11.125,145 147 149,stand,,,
|
||||
592.978 1004.83 5.20139,146 148,stand,,,
|
||||
436.145 944.672 2.125,141 149 147 274,stand,,,
|
||||
445.365 1112.69 5.03488,148 146 271,stand,,,
|
||||
26.8172 881.574 9.70653,48 151 49,stand,,,
|
||||
108.293 773.746 8.56882,150 140 141 49,stand,,,
|
||||
-1273.67 32.2848 -0.775501,5 282 296,stand,,,
|
||||
-138.945 -766.012 -12.8294,75 154 74,stand,,,
|
||||
-115.304 -1087.4 -10.0359,153 81 80,stand,,,
|
||||
894.166 -1150.99 -7.875,84 156,stand,,,
|
||||
892.603 -832.841 -14.0913,155 157,stand,,,
|
||||
899.572 -547.87 -1.62845,156 294 295,stand,,,
|
||||
853.71 236.343 3.9549,159 195,stand,,,
|
||||
1056.87 240.6 3.5077,158 125 124,stand,,,
|
||||
1274.89 1204.49 5.11003,161 194,stand,,,
|
||||
1141.91 1130.06 5.08424,160 145 162,stand,,,
|
||||
1172.1 934.087 6.93144,161 123 122,stand,,,
|
||||
-76.2742 -230.443 33.125,72 202,stand,,,
|
||||
-1921.8 240.504 23.019,23 165 24,stand,,,
|
||||
-1747.45 259.319 22.9599,164 232 235,stand,,,
|
||||
-2252.23 784.739 -102.875,17 167 168 229 228,stand,,,
|
||||
-2270.73 1167.5 -102.875,166 221 228 230,stand,,,
|
||||
-2370.07 495.304 -102.875,166 169 17,stand,,,
|
||||
-2501.58 302.016 -91.3315,168 220,stand,,,
|
||||
854.779 -1713.67 3.83928,91,crouch,1.90063 63.0615 0,,
|
||||
1479.08 -1513.07 3.42186,90 172,stand,52.1466 -96.6522 0,,
|
||||
1483.78 -1659.05 3.05119,171 173 174,stand,15.5402 179.78 0,,
|
||||
1559.88 -1678.88 8.23623,172,crouch,1.90063 158.368 0,,
|
||||
1236.95 -1654.75 -0.375589,172 91,stand,68.5492 142.482 0,,
|
||||
1657.21 -1470.29 23.125,93 176 177,stand,80.6342 -106.672 0,,
|
||||
1595.46 -1499.79 23.125,175,crouch,8.3374 66.1542 0,,
|
||||
1705.63 -1502.36 23.125,175,crouch,5.05798 126.936 0,,
|
||||
1899.31 -1360.61 23.125,93,crouch,2.12463 159.565 0,,
|
||||
1735.03 -1223.98 23.125,93 181 180,stand,26.1243 85.3198 0,,
|
||||
1740.63 -1120.67 23.125,179 182 94,stand,58.4131 7.7948 0,,
|
||||
1869.13 -1218.76 23.125,179,crouch,6.09619 -178.506 0,,
|
||||
1837.08 -1125.37 23.125,180 183,stand,67.735 62.0123 0,,
|
||||
1911.92 -1035.71 23.125,182,crouch,4.71191 -144.833 0,,
|
||||
1959.77 -790.114 9.01143,97 185,stand,41.4886 -140.702 0,,
|
||||
2003.51 -983.822 6.65695,184,crouch,-1.67664 115.01 0,,
|
||||
1350.84 -505.924 31.125,105 187,stand,73.6072 -176.27 0,,
|
||||
1299.31 -504.939 31.125,186,crouch,1.77856 1.74133 0,,
|
||||
1271.13 -284.517 31.125,104,crouch,2.12463 -42.8082 0,,
|
||||
1271.13 -428.875 31.125,104,crouch,2.81128 20.907 0,,
|
||||
1846.07 -105.084 -0.81405,99 191,stand,35.4462 64.4183 0,,
|
||||
1918.73 39.2255 -5.48183,190 115,stand,85 105.337 0,,
|
||||
1996.88 533.556 12.0094,114,crouch,6.09619 -131.21 0,,
|
||||
1695.21 190.84 6.625,111,crouch,4.8877 -143.124 0,,
|
||||
1347.88 1218.87 5.53219,160,crouch,4.36584 -143.822 0,,
|
||||
763.679 228.49 8.60731,158 196,stand,6.78284 1.73035 0,,
|
||||
750.634 367.588 5.23399,195,crouch,3.15735 -28.6578 0,,
|
||||
886.686 -90.9037 0.590178,131 198,stand,40.6262 175.089 0,,
|
||||
697.829 -86.3916 32.625,197 199,stand,82.7588 -174.897 0,,
|
||||
628.313 -114.06 32.625,198,crouch,6.61255 -168.849 0,,
|
||||
245.949 -108.718 0.546991,133 136,stand,64.9719 172.678 0,,
|
||||
187.604 -559.064 -6.58156,135,crouch,2.6355 134.341 0,,
|
||||
-28.6473 -175.374 33.125,163,crouch,4.19006 -159.708 0,,
|
||||
-684.421 18.0277 33.125,69,crouch,2.98157 -56.4532 0,,
|
||||
-508.738 -36.4376 33.125,69,crouch,4.36584 -153.66 0,,
|
||||
288.658 -1219.84 -7.1432,82 206,stand,32.337 75.9705 0,,
|
||||
363.685 -1058.85 -5.875,205,crouch,5.05249 -116.202 0,,
|
||||
-392.875 -1416.38 3.19999,81,crouch,2.28943 35.9033 0,,
|
||||
-1309.37 -752.187 -7.47548,78 209 2,stand,36.3086 105.491 0,,
|
||||
-1310.24 -637.203 -3.79099,210 78 208 211 3,stand,36.4789 162.125 0,,
|
||||
-1461.55 -628.58 -3.78488,2 3 209 211,stand,35.6165 124.481 0,,
|
||||
-1338.72 -489.591 0.937575,209 66 3 4 210,stand,21.2848 51.2512 0,,
|
||||
-1643.07 -443.414 -1.78063,3,crouch,4.01978 21.72 0,,
|
||||
-1548.88 -856.367 -8.25679,2,crouch,4.53613 53.1464 0,,
|
||||
-967.125 -856.375 -9.84582,78,crouch,2.6355 159.851 0,,
|
||||
-1732.13 -837.226 -7.07294,1 216 2,stand,11.7871 -45.2747 0,,
|
||||
-1592.13 -985.213 -10.0391,215,crouch,0.910645 131.874 0,,
|
||||
-2450.53 -520.097 -21.3166,13 12 218 219,stand,24.3939 53.4924 0,,
|
||||
-2621.41 -628.788 -16.576,217,crouch,5.56885 47.2797 0,,
|
||||
-2505.79 -341.553 -54.989,12 217 220,stand,22.8394 -63.4021 0,,
|
||||
-2538.23 41.6091 -73.3627,219 169,stand,39.9341 90.6097 0,,
|
||||
-2354.1 1074.43 -102.875,167 222,stand,23.3557 94.7461 0,,
|
||||
-2450.09 1162.05 -75.2889,221 223,stand,57.3694 115.988 0,,
|
||||
-2474.8 1304.4 2.63232,222 224,stand,34.5782 -0.730591 0,,
|
||||
-2260.51 1322.41 31.7934,223 225 226,stand,42.3511 -81.8811 0,,
|
||||
-2268.1 1209.15 31.7119,224,crouch,15.929 -82.2272 0,,
|
||||
-2131.21 1311.74 3.60343,224 227,stand,37.6874 -69.2743 0,,
|
||||
-2077.32 1165.87 -66.69,226 228,stand,4.19556 99.0747 0,,
|
||||
-2032.45 980.415 -61.0717,227 229 166 167,stand,20.5981 108.051 0,,
|
||||
-2062.64 724.608 -43.5667,228 20 19 166,stand,20.7684 -68.4119 0,,
|
||||
-2259.73 1264.72 -102.875,167,crouch,4.01978 -94.3176 0,,
|
||||
-2013.25 497.759 22.625,22,crouch,3.84949 0.302124 0,,
|
||||
-1705.86 294.11 21.5077,165 233,stand,15.9344 0.466919 0,,
|
||||
-1686.13 291.797 21.125,232 234,climb,23.3557 0.983276 0,,
|
||||
-1648.77 291.515 0.125001,233 39,climb,1.94885 179.692 0,,
|
||||
-1830.09 354.875 25.8457,165,crouch,6.95313 -38.3807 0,,
|
||||
-1743.28 194.375 22.8162,7,crouch,3.84399 -115.735 0,,
|
||||
-1686.13 -168.875 21.125,8,crouch,2.81128 134.967 0,,
|
||||
-2047.86 133.702 20.625,24,crouch,5.22827 -8.16833 0,,
|
||||
-1843.33 -176.443 26.3082,8 240,stand,40.7965 -84.6606 0,,
|
||||
-1838.42 -278.338 26.1369,239 241 243,stand,29.92 -85.0067 0,,
|
||||
-1916.13 -287.072 25.625,240 242,stand,24.3939 33.6127 0,,
|
||||
-1939.31 -203.125 25.625,241,crouch,3.84399 -37.1832 0,,
|
||||
-1686.13 -327.924 21.125,240 244,climb,10.0623 0.802002 0,,
|
||||
-1648.77 -327.334 -1.20143,243 245,climb,5.39856 179.852 0,,
|
||||
-1532.48 -327.155 -1.68171,244 3 4 5,stand,14.0338 -146.146 0,,
|
||||
-1659.73 1136.53 -0.59571,26 34 33,stand,34.754 -8.71216 0,,
|
||||
-1986.58 1545.22 2.125,27 248,stand,64.7961 -1.47217 0,,
|
||||
-1923.95 1605.88 2.125,247 249 250,stand,43.2135 -2.85095 0,,
|
||||
-1770.03 1639.06 2.125,248 29,stand,21.4606 4.91638 0,,
|
||||
-1994.88 1622.88 2.125,248,crouch,2.98157 -34.2773 0,,
|
||||
-1403.13 1644.19 3.80388,30,crouch,2.98157 -100.41 0,,
|
||||
-1586 1306.9 2.125,28,crouch,3.15735 141.493 0,,
|
||||
-2018.88 1314.13 2.125,27,crouch,3.84399 39.4464 0,,
|
||||
-819.125 1506.69 0.124997,45,crouch,2.29492 -120.965 0,,
|
||||
-661.949 792.032 3.82441,57,crouch,4.19006 -132.198 0,,
|
||||
-878.116 452.748 -2.11648,56,crouch,-1.50635 52.196 0,,
|
||||
-552.663 388.16 36.125,54,crouch,6.26099 117.109 0,,
|
||||
-583.784 710.148 36.125,52,crouch,4.71191 -13.2495 0,,
|
||||
-512.322 930.645 36.125,51,crouch,3.50342 -50.5426 0,,
|
||||
-266.414 214.38 4.10431,61 261 262 62,stand,53.2275 -27.4219 0,,
|
||||
-84.9532 215.045 6.17511,260 138 137,stand,31.4746 -87.6819 0,,
|
||||
-267.474 76.9116 5.46057,260 137 62 61,stand,53.2275 4.1748 0,,
|
||||
177.347 -28.7426 4.24631,138,crouch,1.94885 127.793 0,,
|
||||
-520.047 264.719 5.60651,61,crouch,4.53613 17.1222 0,,
|
||||
1289.36 530.668 -0.232775,121 266,stand,64.7961 -68.5272 0,,
|
||||
1287.22 487.337 -0.630782,265 267,climb,7.99133 -88.5498 0,,
|
||||
1288.29 431.817 46.125,266 268,stand,74.4641 -83.3752 0,,
|
||||
1288.39 274.565 -1.14148,267 269,stand,15.2423 -66.8024 0,,
|
||||
1322.28 182.471 -3.04239,268 270,stand,16.6211 126.925 0,,
|
||||
1329.54 82.1068 -2.91615,269 126 125,stand,14.5502 87.0447 0,,
|
||||
460.197 1301.56 -0.946253,149 272,stand,16.9672 -179.55 0,,
|
||||
323.908 1298.21 -1.19141,271 273,stand,25.7727 -74.7455 0,,
|
||||
313.089 1075.62 2.63467,272 48 274 275,stand,18.0054 -169.706 0,,
|
||||
322.703 933.107 4.04642,273 148 141 48,stand,42.005 -7.92664 0,,
|
||||
247.467 1189.21 30.5091,273 276,stand,66.6968 88.5828 0,,
|
||||
252.357 1284.93 59.5874,275 277,stand,63.0713 125.876 0,,
|
||||
192.883 1306.83 61.0252,276 278,stand,51.8488 -175.941 0,,
|
||||
155.208 1310.78 60.6376,277,crouch,4.53613 -171.277 0,,
|
||||
71.9841 1157.1 6.23263,48 280,stand,24.0479 85.3088 0,,
|
||||
112.855 1289.24 4.04257,279,crouch,3.84399 -136.906 0,,
|
||||
-483.125 1374.88 7.50406,46,crouch,5.92041 -123.442 0,,
|
||||
-1151.33 -6.48112 1.65244,152 283 288,stand,49.256 120.696 0,,
|
||||
-1145.1 112.703 31.125,282 284 287,stand,68.7677 98.5913 0,,
|
||||
-1188.73 176.998 31.125,283 285,stand,35.4462 104.117 0,,
|
||||
-1182.22 277.51 31.125,284 286,stand,50.2942 81.156 0,,
|
||||
-1132.87 328.234 31.125,285,crouch,5.22827 114.653 0,,
|
||||
-1130.77 169.311 31.125,283,crouch,5.74463 -118.784 0,,
|
||||
-1159.98 -88.3803 0.956356,282 289 290,stand,37.3413 -129.666 0,,
|
||||
-1216.89 -156.79 -3.92152,288 66 4 5,stand,24.3939 -84.2542 0,,
|
||||
-955.669 -105.267 3.625,288 65,stand,61.687 -9.83276 0,,
|
||||
1190.5 -482.391 3.20053,294 292 129,stand,25.7245 92.2852 0,,
|
||||
1184.84 -341.612 3.43643,291 293 128,stand,29.8718 178.621 0,,
|
||||
1034.28 -355.717 2.56634,292 294 128,stand,25.3839 -113.005 0,,
|
||||
1032.79 -469.687 2.50417,291 293 157,stand,25.2081 -24.7742 0,,
|
||||
790.788 -590.09 -11.7256,157,crouch,1.37878 47.9279 0,,
|
||||
-1326.67 318.049 5.07161,299 152 297,stand,28.147 102.821 0,,
|
||||
-1329.96 437.799 5.27723,40 298 59 296,stand,30.9045 174.996 0,,
|
||||
-1486.62 435.931 5.7215,297 299 38 40,stand,30.2179 -119.388 0,,
|
||||
-1477.24 313.368 5.82689,298 296 39 38,stand,25.5542 -149.26 0,,
|
||||
|
@@ -0,0 +1,416 @@
|
||||
415
|
||||
3449.15 -891.658 353.19,128 131 132,stand,,,
|
||||
3446.15 -333.007 336.125,2 132 351,stand,,,
|
||||
3102.34 -303.271 334.55,1 3 82 132,stand,,,
|
||||
3071.78 -109 340.125,2 4 136 149,stand,,,
|
||||
3633.85 -93.181 340.125,3 148,stand,,,
|
||||
3086.69 355.472 272.427,7 149 153 9,stand,,,
|
||||
3662.98 339.407 288.125,153 154,stand,,,
|
||||
3102.6 538.051 283.759,5 8 9,stand,,,
|
||||
3660.77 578.988 288.125,7 155,stand,,,
|
||||
2933.53 542.036 276.925,7 10 17 5 156,stand,,,
|
||||
2618.76 670.378 285.244,9 11 16 20 17,stand,,,
|
||||
2589.82 645.935 289.512,10 12 156 20 16,stand,,,
|
||||
2306.16 539.214 286.302,11 13 14 156 160 162,stand,,,
|
||||
2302.75 357.788 292.125,12 157 159,stand,,,
|
||||
2257.43 768.539 282.138,12 20 162 163,stand,,,
|
||||
1765.99 758.822 448.125,77 164 168 165,stand,,,
|
||||
2614.08 803.665 285.171,10 20 18 11 17,stand,,,
|
||||
2947.62 972.593 300.07,9 18 10 16,stand,,,
|
||||
2751.81 1099.02 282.779,17 19 16 21 20,stand,,,
|
||||
2519.6 1095.77 283.447,18 20 161,stand,,,
|
||||
2469.19 780.358 285.104,19 14 16 11 10 18 162,stand,,,
|
||||
2683.97 1482.39 278.887,18 22 23 344 374,stand,,,
|
||||
3238.38 1474.93 284.65,21 348 349,stand,,,
|
||||
2644.44 1987.13 288.125,21 24 25 341 344,stand,,,
|
||||
3081.02 1992.95 294.156,23 345 347,stand,,,
|
||||
2625.04 2491.25 380.395,23 26,stand,,,
|
||||
2625.74 2768.65 376.144,25 336 337 338,stand,,,
|
||||
2329.38 2978.26 384.874,28 336 338 376,stand,,,
|
||||
2382.94 3299.33 393.808,27 339 340,stand,,,
|
||||
1755.72 3008.21 385.806,30 334 375,stand,,,
|
||||
1413.97 2925.41 377.107,29 31 35 373,stand,,,
|
||||
1230.12 3101.85 379.513,30 370 371,stand,,,
|
||||
719.247 2914.18 371.099,305 308 379 380,stand,,,
|
||||
1248.41 2889.49 376.125,321 322 373,stand,,,
|
||||
1198.95 2521.54 374.484,35 36 318,stand,,,
|
||||
1439.04 2652.22 375.81,34 30 334,stand,,,
|
||||
1202.39 2313.97 384.125,34 37,stand,,,
|
||||
1170.06 2236.94 384.125,36 38 333,stand,,,
|
||||
1165.58 1833.96 378.137,37 39 57 74 332 353,stand,,,
|
||||
1371.65 1735.32 376.125,38 74 330 331,stand,,,
|
||||
1490.87 2104.24 241.671,72 326,stand,,,
|
||||
938.574 1331.17 360.383,113 114 177 353 377,stand,,,
|
||||
631.748 1234.34 336.125,43 174 181 175,stand,,,
|
||||
330.757 1227.15 338.144,42 44 191 192 193 194,stand,,,
|
||||
331.848 1385.84 372.794,43 45 48,stand,,,
|
||||
339.506 1607.89 384.125,44 46 190,stand,,,
|
||||
236.789 1601.3 384.125,45 47 182 184,stand,,,
|
||||
32.2328 1510.5 384.125,46 185 188 189,stand,,,
|
||||
31.197 1384.85 368.125,44 50 187,stand,,,
|
||||
-130.296 1530.85 384.125,50 51 186,stand,,,
|
||||
-136.009 1388.05 368.125,49 48 69,stand,,,
|
||||
-139.717 1713.05 384.125,49 52 199,stand,,,
|
||||
-117.248 1953.89 384.125,51,stand,,,
|
||||
246.448 1737.8 384.125,183 199 200,stand,,,
|
||||
210.797 2481.74 302.547,55 220 221,stand,,,
|
||||
216.612 1984.77 330.153,54 56 200 222,stand,,,
|
||||
811.009 1967.78 343.746,55 356 357 358,stand,,,
|
||||
879.619 1812.23 377.387,38 353 354 377,stand,,,
|
||||
169.236 3055.81 279.076,59 60 219 218 305,stand,,,
|
||||
-49.7729 3420.92 289.774,58 218 219,stand,,,
|
||||
-83.9202 2829.16 254.708,58 61 62 63 218 304,stand,,,
|
||||
-189.03 2456.97 280.125,60,stand,,,
|
||||
-4.8071 2303.86 0.880319,60 70 302,stand,,,
|
||||
-261.915 3170.37 264.125,60 215 218,stand,,,
|
||||
-610.632 3172.51 264.125,65 213 214,stand,,,
|
||||
-616.378 2951.13 392.125,64 66,stand,,,
|
||||
-467.367 2976.78 392.125,65 67 209,stand,,,
|
||||
-468.672 2441.51 352.125,66 201,stand,,,
|
||||
-458.045 1986.04 352.125,201 202 205 206,stand,,,
|
||||
-447.126 1392.86 352.125,50 197 198 202,stand,,,
|
||||
491.768 2165.86 66.104,62 71,stand,,,
|
||||
783.779 2163.1 140.809,70 72 355,stand,,,
|
||||
1200.95 2199.15 197.415,71 40,stand,,,
|
||||
2024.11 2077.79 288.125,326 341 327,stand,,,
|
||||
1463.23 1447.29 378.503,39 75 114 116 38 353,stand,,,
|
||||
1730.97 1437.56 448.125,74 76 172 173,stand,,,
|
||||
1765.18 1056.55 448.125,75 168 171,stand,,,
|
||||
1504.92 647.033 401.86,15 78 108 115,stand,,,
|
||||
1858.37 357.245 456.125,77 79,stand,,,
|
||||
2082.95 -121.025 413.796,78 80 107 122 123,stand,,,
|
||||
2295.63 -576.438 384.125,79 81 123 412,stand,,,
|
||||
2564.27 -834.922 365.746,80 82 126 130 411 412,stand,,,
|
||||
2868.75 -569.29 327.674,81 2 130 126,stand,,,
|
||||
2159.23 -1005.7 370.408,84 85 124 409 410,stand,,,
|
||||
2112.93 -1331.05 373.502,83 85 133 410,stand,,,
|
||||
1748.79 -908.919 369.212,83 122 84 134 135 289 123,stand,,,
|
||||
1169.31 -789.289 448.078,87 102 288 287 289,stand,,,
|
||||
966.949 -767.481 458.656,86 88 287 288,stand,,,
|
||||
969.219 -429.656 463.89,87 89 294,stand,,,
|
||||
393.004 -395.058 324.05,88 90 254,stand,,,
|
||||
247.477 -145.404 320.202,89 94 253 254 266,stand,,,
|
||||
-184.96 -380.843 312.125,92 93 254 256,stand,,,
|
||||
-235.774 -948.15 312.125,91 258 259,stand,,,
|
||||
-208.182 -137.853 318.125,91 94 97,stand,,,
|
||||
82.2525 -130.375 318.125,93 90 95,stand,,,
|
||||
117.842 344.35 318.125,94 246 250,stand,,,
|
||||
-446.632 371.655 318.125,245 249,stand,,,
|
||||
-385.118 -146.135 318.125,93 233 244,stand,,,
|
||||
-184.581 581.531 164.887,120 121 234,stand,,,
|
||||
-3.4811 -97.3133 184.125,100 235 236 237,stand,,,
|
||||
-421.59 -152.007 184.125,99 238 242 243,stand,,,
|
||||
1359.77 -256.855 512.125,262 282 283 278 279 285,stand,,,
|
||||
1350.26 -731.4 512.125,86 283 285,stand,,,
|
||||
291.332 314.778 352.125,104 251 299 300 301,stand,,,
|
||||
858.297 289.272 352.125,103 105 297 298,stand,,,
|
||||
1314.01 380.426 443.314,104 106 108 109,stand,,,
|
||||
1418.77 -8.68756 445.114,105 107 125,stand,,,
|
||||
1738.93 -26.7734 429.408,106 79 108 296,stand,,,
|
||||
1502.51 474.865 419.02,107 105 77,stand,,,
|
||||
938.243 730.388 285.171,105 110 112 115,stand,,,
|
||||
719.033 601.535 229.742,109 111,stand,,,
|
||||
405.891 791.676 100.162,110 112 119 223,stand,,,
|
||||
776.489 962.943 262.21,111 109 113,stand,,,
|
||||
960.079 1076.48 337.225,112 41,stand,,,
|
||||
1143.09 1304.75 377.946,41 74 115 359,stand,,,
|
||||
1308.84 904.774 379.718,114 77 116 109,stand,,,
|
||||
1490.45 1040.37 378.852,74 115,stand,,,
|
||||
-174.957 1891.13 42.7026,118 302,stand,,,
|
||||
-231.508 1359.29 96.0002,117 119 121 226 227,stand,,,
|
||||
29.5393 1039.58 86.4872,118 111 227,stand,,,
|
||||
126.608 614.914 150.852,98 223,stand,,,
|
||||
-268.32 900.592 85.5508,98 118 226 230 231,stand,,,
|
||||
1778.39 -391.275 399.693,85 79 123 124 295,stand,,,
|
||||
2015.65 -421.453 374.238,122 79 80 124 85,stand,49.8999 42.3523 0,,
|
||||
2119.09 -724.891 384.125,123 83 122 409 412,stand,32.113 -80.2386 0,,
|
||||
1276.27 -108.467 430.325,106,crouch,-1.55457 46.8347 0,,
|
||||
2904.86 -1175.57 366.266,81 127 82 411,stand,15.7104 147.673 0,,
|
||||
3093.64 -1177.27 364.805,126 128 130,stand,17.7869 25.4224 0,,
|
||||
3348.83 -1066.17 357.292,127 0 129,stand,24.9103 40.1001 0,,
|
||||
3271.12 -997.427 354.395,128 130,stand,85 160.966 0,,
|
||||
3141.94 -945.094 338.843,129 82 127 81 131,stand,44.2517 -124.788 0,,
|
||||
3271.95 -877.369 338.604,130 0,stand,28.3655 17.1442 0,,
|
||||
3450.2 -529.648 339.458,1 0 2,stand,19.5599 -108.034 0,,
|
||||
2076.72 -1525.87 383.743,84,crouch,1.4325 83.2764 0,,
|
||||
1615.13 -735.125 376.532,85,crouch,3.50342 -57.9639 0,,
|
||||
1618.73 -1296.88 391.404,85,crouch,1.26221 56.5137 0,,
|
||||
2865.36 -83.2909 340.125,3 137 138,stand,53.9252 34.585 0,,
|
||||
2589.51 -99.8138 292.125,136 146,stand,15.072 1.25793 0,,
|
||||
2880.04 -11.1254 340.716,136 139,climb,-85 91.2195 0,,
|
||||
2879.29 -6.34745 452.125,138 140,climb,85 -87.8357 0,,
|
||||
2875.62 76.9074 452.125,139 141 143 142,stand,85 100.02 0,,
|
||||
2863.33 390.059 452.125,140 142 143 144 145,stand,39.588 -125.997 0,,
|
||||
2757.34 331.071 452.125,141 143 140,stand,24.9103 -113.39 0,,
|
||||
2757.69 64.6661 452.125,142 140 141,stand,40.4504 -14.9689 0,,
|
||||
2826.3 428.875 452.125,141,crouch,6.95313 121.608 0,,
|
||||
2872.13 425.607 452.125,141,crouch,8.85376 123.162 0,,
|
||||
2529.35 132.442 292.125,137 147,stand,47.5311 144.404 0,,
|
||||
2415.12 176.875 292.125,146,crouch,4.36584 -32.915 0,,
|
||||
3760.88 -192.875 340.125,4,crouch,3.32764 145.091 0,,
|
||||
3073.96 125.611 272.033,5 3 152 350,stand,9.89197 -85.0616 0,,
|
||||
3501.4 86.5511 281.567,151 152,stand,20.4224 1.09863 0,,
|
||||
3701.78 32.5999 287.915,150,crouch,3.84949 158.22 0,,
|
||||
3371.27 92.359 294.098,149 150 153,stand,32.8534 16.8036 0,,
|
||||
3359.55 345.946 288.583,152 5 6,stand,33.0292 164.949 0,,
|
||||
3760.58 331.656 288.024,6,crouch,3.84949 175.309 0,,
|
||||
3760.88 561.145 288.124,8,crouch,2.98157 -178.819 0,,
|
||||
2574.54 521.177 307.13,9 11 12,stand,9.71619 -178.995 0,,
|
||||
2168.04 363.608 292.125,13 158,stand,18.3514 -95.4218 0,,
|
||||
2149.8 215.812 292.125,157,crouch,4.8822 68.4393 0,,
|
||||
2392.88 271.125 292.125,13,crouch,2.46521 120.927 0,,
|
||||
2159.13 463.125 288.125,12,crouch,-0.46814 34.942 0,,
|
||||
2447.13 1200.88 283.678,19,crouch,2.6355 -48.9771 0,,
|
||||
2365.43 712.066 284.959,20 12 14,stand,69.4598 178.418 0,,
|
||||
2171.03 788.012 283.952,14 164,stand,43.5596 -175.545 0,,
|
||||
1899 778.403 448.125,163 15 165,stand,31.4746 -176.929 0,,
|
||||
1880.89 676.285 448.125,164 166 15,stand,46.4984 -7.72339 0,,
|
||||
2033.12 676.158 448.125,165 167 352,stand,26.6406 -62.6276 0,,
|
||||
2078.3 463.125 448.125,166,crouch,10.9247 46.6644 0,,
|
||||
1775.57 862.456 448.125,76 15 169 170,stand,61.0004 -86.9733 0,,
|
||||
1650.56 931.7 448.125,168,crouch,11.1005 -176.583 0,,
|
||||
1639.13 855.125 448.125,168,crouch,3.15735 47.5214 0,,
|
||||
1639.13 1104.01 448.125,76,crouch,7.2992 -177.797 0,,
|
||||
1856.88 1520.88 448.125,75,crouch,6.61255 -133.594 0,,
|
||||
1639.13 1347.33 448.125,75,crouch,9.19983 -177.797 0,,
|
||||
786.589 1210.23 336.125,42 175 179,stand,45.1141 -3.41125 0,,
|
||||
780.062 1320.61 336.125,174 176 178 180 42,stand,49.2615 -3.24097 0,,
|
||||
840.875 1321.82 336.125,175 177,climb,5.74463 0.560303 0,,
|
||||
875.128 1321.24 368.125,41 176,crouch,14.8962 -178.83 0,,
|
||||
741.82 1375.14 336.125,175,crouch,4.01978 -52.7838 0,,
|
||||
785.104 1147.05 336.125,174,crouch,7.2992 -85.589 0,,
|
||||
840.875 1319.85 336.125,175,crouch,4.36584 -0.296631 0,,
|
||||
568.023 1143.7 336.125,42,crouch,3.84949 37.1722 0,,
|
||||
272.875 1481.33 384.125,46,crouch,4.36584 138.708 0,,
|
||||
237.675 1695.14 384.125,53 184,climb,12.4792 -90.4175 0,,
|
||||
238.635 1656.6 384.125,183 46,climb,8.50769 90.1923 0,,
|
||||
-72.875 1528.07 384.125,47 186,climb,4.36584 -179.335 0,,
|
||||
-111.125 1524.78 384.125,49 185,stand,12.655 0.230713 0,,
|
||||
27.0051 1408.88 368.125,48 188,climb,8.16162 92.124 0,,
|
||||
22.0179 1447.13 384.125,47 187,climb,17.1429 -87.9639 0,,
|
||||
-72.8715 1656.88 388.125,47,crouch,5.05249 -43.7604 0,,
|
||||
376.822 1640.88 384.125,45,crouch,6.43677 -130.959 0,,
|
||||
199.125 1147.89 339.308,43,crouch,11.441 -112.826 0,,
|
||||
335.407 1143.13 343.236,43,crouch,10.9247 -87.7936 0,,
|
||||
475.199 1144.8 340.125,43,crouch,6.43677 -58.96 0,,
|
||||
172.449 1280.28 368.125,43 195 196,stand,72.2229 -144.077 0,,
|
||||
100.572 1244.02 340.125,194,crouch,14.3799 -98.6645 0,,
|
||||
59.7472 1297.79 340.125,194,crouch,26.8109 -164.105 0,,
|
||||
-418.782 1259.35 352.125,69,crouch,14.8962 -54.9774 0,,
|
||||
-513.677 1270.77 352.125,69,crouch,13.0011 -52.7307 0,,
|
||||
166.896 1715.67 384.125,53 51,stand,85 -177.568 0,,
|
||||
231.663 1864.88 384.125,53 55,stand,76.8866 87.8174 0,,
|
||||
-441.547 2243.49 352.125,67 68 207 208,stand,18.0054 -91.5839 0,,
|
||||
-437.705 1695.12 352.125,68 69 203 204,stand,30.6122 -92.9681 0,,
|
||||
-418.055 1631.37 352.125,202,crouch,12.3035 -49.6271 0,,
|
||||
-417.154 1796.73 352.125,202,crouch,11.7871 -54.8071 0,,
|
||||
-420.324 1921.27 352.125,68,crouch,10.0623 38.7799 0,,
|
||||
-424.976 2046.62 352.125,68,crouch,11.095 -61.366 0,,
|
||||
-431.938 2195.21 352.125,201,crouch,9.37012 2.17349 0,,
|
||||
-431.48 2338.64 352.125,201,crouch,7.12341 2.17349 0,,
|
||||
-479.923 3153.25 392.125,66 210 212,stand,35.2704 104.736 0,,
|
||||
-628.875 3156.83 392.125,209 211,stand,69.8004 107.845 0,,
|
||||
-628.875 3224.88 392.125,210,crouch,0.388794 -48.067 0,,
|
||||
-390.656 3211.18 392.125,209,crouch,5.22278 -123.351 0,,
|
||||
-628.875 3218.63 268.125,64,crouch,1.94336 -52.5659 0,,
|
||||
-470.852 3162.38 264.125,64 215 216,stand,59.4403 -1.46301 0,,
|
||||
-319.903 3188.86 264.125,214 63,stand,82.9236 -1.80907 0,,
|
||||
-406.82 3074.86 264.125,214 217,stand,45.636 -66.0406 0,,
|
||||
-339.81 2951.13 264.125,216,crouch,8.16711 137.36 0,,
|
||||
-66.7183 3183.16 262.781,63 59 58 60,stand,16.6266 156.526 0,,
|
||||
136.388 3440.3 306.866,59 58,stand,15.5884 -62.0691 0,,
|
||||
304.875 2496.87 312.948,54,crouch,6.43677 -128.037 0,,
|
||||
58.8157 2447.84 280.125,54,crouch,15.5884 -106.97 0,,
|
||||
328.51 1927.13 376.27,55,crouch,3.67371 22.3554 0,,
|
||||
258.482 706.573 113.324,111 120 224,stand,9.37561 -135.287 0,,
|
||||
52.9096 837.09 89.3315,223 225 229,stand,69.9817 137.69 0,,
|
||||
-98.5324 953.99 75.1151,224 226 228,stand,53.0573 139.069 0,,
|
||||
-178.242 1016.35 77.3134,225 121 118 227 231,stand,17.1429 -117.33 0,,
|
||||
-98.3441 1084.67 82.6385,226 119 118,stand,28.5413 -5.62133 0,,
|
||||
-49.0968 915.513 79.7774,225,crouch,1.94885 141.65 0,,
|
||||
-12.7823 884.235 83.4073,224,crouch,0.564575 -34.801 0,,
|
||||
-491.782 837.951 110.874,121,crouch,-1.50635 -4.7589 0,,
|
||||
-335.049 1025.71 89.9273,121 232 226,stand,14.0338 131.993 0,,
|
||||
-528.875 1208.88 120.883,231,crouch,7.2992 -31.0052 0,,
|
||||
-386.879 200.38 184.125,238 234 241 97,stand,30.7825 -49.3085 0,,
|
||||
-184.029 226.15 184.125,233 98 235 239,stand,23.5315 -92.8198 0,,
|
||||
-179.979 70.3825 184.125,99 234,stand,38.7256 -82.8058 0,,
|
||||
125.394 -174.423 184.125,99,crouch,4.01978 145.281 0,,
|
||||
130.411 36.875 184.125,99,crouch,4.53613 -143.582 0,,
|
||||
-467.535 148.041 184.125,100 233,stand,73.0853 79.8413 0,,
|
||||
-74.4438 314.917 184.125,234 240,stand,50.9863 12.5006 0,,
|
||||
143.875 399.875 184.125,239,crouch,4.01978 -156.535 0,,
|
||||
-467.875 360.519 184.125,233,crouch,2.98706 -36.5314 0,,
|
||||
-536.875 -143.754 184.125,100,crouch,-0.12207 30.9796 0,,
|
||||
-428.875 -200.872 184.125,100,crouch,-1.85242 47.0417 0,,
|
||||
-536.875 -200.875 318.125,97,crouch,2.81128 36.3355 0,,
|
||||
-273.857 363.552 318.125,96 246 248,stand,50.47 -1.99584 0,,
|
||||
-116.288 360.582 318.125,245 95 247,stand,50.1239 7.15579 0,,
|
||||
-112.66 416.86 320.125,246,crouch,11.7926 91.9317 0,,
|
||||
-262.087 408.874 318.125,245,crouch,10.238 89.8608 0,,
|
||||
-536.875 406.74 318.125,96,crouch,13.3472 -38.7781 0,,
|
||||
152.872 408.875 318.125,95,crouch,7.82105 -131.843 0,,
|
||||
285.403 194.828 384.125,103 252,stand,53.233 -90.7489 0,,
|
||||
285.365 159.125 384.125,251 253,climb,1.25671 -89.3646 0,,
|
||||
284.115 120.858 367.077,252 90,climb,-37.0746 88.8171 0,,
|
||||
225.107 -374.216 322.642,90 89 91,stand,53.9197 -75.2142 0,,
|
||||
-354.498 -271.466 320.125,256,crouch,2.81128 -17.2119 0,,
|
||||
-296.492 -351.329 312.125,91 255 257,stand,33.1995 151.994 0,,
|
||||
-444.58 -368.451 312.125,256,crouch,3.15735 -7.36816 0,,
|
||||
-398.958 -1115.35 312.125,92 259 261,stand,26.8109 30.4468 0,,
|
||||
-146.442 -1153.91 312.125,258 92 260,stand,15.7642 98.4796 0,,
|
||||
152.875 -1264.88 320.125,259,crouch,3.50342 125.588 0,,
|
||||
-600.875 -1232.88 320.125,258,crouch,1.4325 49.4422 0,,
|
||||
1181.7 -221.116 512.125,263 101 264,stand,53.7494 17.3291 0,,
|
||||
1086.48 11.77 512.125,264 262 274 275 276 277,stand,13.3472 -136.853 0,,
|
||||
956.728 -140.139 512.125,263 262 265,stand,33.8916 156.323 0,,
|
||||
621.578 -149.981 320.125,264 266 269 270,stand,25.7782 179.279 0,,
|
||||
441.458 -145.283 320.125,265 90 267 268 270,stand,16.7969 -179.859 0,,
|
||||
391.125 -31.125 331.125,266,crouch,1.4325 -42.2443 0,,
|
||||
391.125 -296.875 320.125,266,crouch,-0.814209 59.4562 0,,
|
||||
720.875 -296.875 320.125,265,crouch,2.64099 138.882 0,,
|
||||
629.759 -53.9826 320.125,265 271 266,stand,22.4988 80.1764 0,,
|
||||
692.62 17.4875 320.125,270 272,stand,8.68347 69.4702 0,,
|
||||
701.978 102.634 352.125,271 273,stand,53.7494 -24.6332 0,,
|
||||
912.875 120.634 352.125,272,crouch,6.61255 -152.58 0,,
|
||||
1094.73 184.865 512.125,263,crouch,12.1387 90.1904 0,,
|
||||
1035.04 184.867 512.125,263,crouch,8.68347 89.8443 0,,
|
||||
969.082 130.842 512.125,263,crouch,18.3514 -153.267 0,,
|
||||
1193.33 120.875 512.125,263,crouch,7.82105 -120.632 0,,
|
||||
1352.1 -155.125 512.125,101,crouch,6.26648 92.6074 0,,
|
||||
1424.3 -154.996 512.125,101,crouch,6.09619 91.5747 0,,
|
||||
1491.11 -154.931 512.125,282,crouch,6.09619 91.2286 0,,
|
||||
1534.95 -159.227 512.125,282,crouch,5.75012 91.9208 0,,
|
||||
1536.38 -242.272 512.125,101 283 281 280,stand,19.7357 -144.28 0,,
|
||||
1463.45 -491.003 512.125,282 102 101 284,stand,14.3799 -120.797 0,,
|
||||
1576.57 -638.052 512.125,283,crouch,4.19556 154.768 0,,
|
||||
1354.15 -473.876 512.125,101 102 286,stand,22.8448 -90.0622 0,,
|
||||
1079.13 -414.434 512.125,285,crouch,19.3896 -178.986 0,,
|
||||
961.914 -1000.88 460.917,87 288 86 293,stand,23.0151 17.851 0,,
|
||||
1205.7 -930.517 418.837,287 86 87 289,stand,39.2474 75.1776 0,,
|
||||
1514.02 -900.093 395.243,288 85 86 290 291 292,stand,37.5171 1.97574 0,,
|
||||
1576.7 -735.125 385.307,289,crouch,2.64099 -116.473 0,,
|
||||
1576.88 -1040.88 392.033,289,crouch,2.81128 137.509 0,,
|
||||
1340.55 -735.125 442.566,289,crouch,11.4465 -59.8389 0,,
|
||||
905.125 -1048.88 463.097,287,crouch,7.47498 33.3911 0,,
|
||||
1040.88 -335.125 474.864,88,crouch,13.0011 -128.558 0,,
|
||||
1656.96 -272.012 422.431,122 296,stand,32.1667 100.743 0,,
|
||||
1647.3 -164.627 442.042,295 107,stand,43.7299 79.5008 0,,
|
||||
904.875 159.128 352.125,104,crouch,3.32764 135.449 0,,
|
||||
847.515 380.176 352.125,104,crouch,3.84399 83.6481 0,,
|
||||
268.676 401.943 352.125,103,crouch,12.9956 120.595 0,,
|
||||
364.783 392.985 352.125,103,crouch,11.441 75.1886 0,,
|
||||
446.482 376.671 352.125,103,crouch,8.33191 82.0935 0,,
|
||||
-63.5513 2136.55 1.54189,117 62 303,stand,20.0763 76.5674 0,,
|
||||
-198.023 2317.94 65.933,302,crouch,10.2325 -46.7157 0,,
|
||||
178.27 2771.63 255.15,60,crouch,6.77734 145.463 0,,
|
||||
534.933 2892.27 335.531,32 58 306 380,stand,39.0662 163.074 0,,
|
||||
648.671 2954.06 365.914,305 307,stand,58.7537 -126.306 0,,
|
||||
674.289 3014.86 378.099,306,crouch,4.8822 -35.1416 0,,
|
||||
668.52 2739.14 369.393,32 309 380,climb,-16.1841 -89.3591 0,,
|
||||
659.317 2695.13 431.976,308 310,climb,-28.4448 -86.0742 0,,
|
||||
663.334 2646.46 496.125,309 311 313 312,stand,82.4127 -24.2651 0,,
|
||||
829.2 2642.53 496.125,310 312 313 316,stand,20.4224 -91.9464 0,,
|
||||
822.323 2405.77 496.125,311 313 310 314,stand,34.408 -122.681 0,,
|
||||
667.122 2406.37 496.125,312 310 311 315,stand,38.3795 111.443 0,,
|
||||
851.862 2367.19 496.125,312,crouch,8.50769 -66.2219 0,,
|
||||
721.394 2374.39 496.125,313,crouch,9.5459 -66.3922 0,,
|
||||
825.348 2579.04 496.125,311,crouch,9.19983 -25.3088 0,,
|
||||
849.778 2796.43 368.07,318 319 378 380,stand,54.6118 -31.8677 0,,
|
||||
969.685 2582.41 375.039,317 34 325,stand,41.4886 -22.7161 0,,
|
||||
980.007 2741.69 377.108,317 320 378,stand,58.067 0.0751019 0,,
|
||||
1143.21 2738.93 376.125,319 321 324,stand,43.5596 88.9984 0,,
|
||||
1144.57 2883.1 376.125,320 33 323,stand,25.4321 15.2692 0,,
|
||||
1296.88 2703.13 376.125,33,crouch,5.92041 122.842 0,,
|
||||
1039.13 2960.88 376.125,321,crouch,5.05798 -44.8096 0,,
|
||||
1160.88 2737.43 376.125,320,crouch,4.01978 175.675 0,,
|
||||
887.293 2439.13 386.001,318,crouch,2.46521 -69.8474 0,,
|
||||
1798.04 2075.12 281.737,40 73 327,stand,15.4181 -1.29821 0,,
|
||||
1784.09 1808.08 341.762,326 328 73 342,stand,49.9481 157.718 0,,
|
||||
1443.33 1919.54 343.461,327 329,stand,42.8729 -111.112 0,,
|
||||
1415.08 1888.4 375.912,328 330,climb,5.75012 -108.003 0,,
|
||||
1414.92 1848.42 376.125,329 39,climb,22.6691 71.5686 0,,
|
||||
1498.77 1818.27 376.125,39,crouch,3.32764 -138.215 0,,
|
||||
1263.6 2076.15 384.125,38,crouch,6.0907 -113.694 0,,
|
||||
1063.13 2317.46 384.125,37,crouch,6.26648 -49.4733 0,,
|
||||
1761.91 2674.04 380.388,35 29 335,stand,18.6975 78.8196 0,,
|
||||
1864.63 2743.16 426.125,334 336,stand,55.304 -178.442 0,,
|
||||
2306.98 2756.07 395.027,335 27 26 338,stand,66.5265 62.071 0,,
|
||||
2704.87 2848.87 381.649,26,crouch,6.95862 -131.997 0,,
|
||||
2473.86 2844.79 384.674,27 26 336,stand,32.6831 -23.0511 0,,
|
||||
2247.13 3440.88 397.331,28,crouch,4.71191 -49.2975 0,,
|
||||
2498.6 3440.87 391.128,28,crouch,3.32764 -114.567 0,,
|
||||
2327.25 2089.44 288.124,23 73,stand,42.8729 -174.816 0,,
|
||||
2057.06 1763.36 360.081,327 343,stand,36.6547 9.75406 0,,
|
||||
2352.92 1792.8 336.526,342 344,stand,73.6072 23.9099 0,,
|
||||
2480.8 1781.78 309.839,343 23 21,stand,20.7684 -45.672 0,,
|
||||
3276.98 2142.58 288.825,24 346,stand,37.8632 -97.6428 0,,
|
||||
3360.88 2152.88 288.187,345,crouch,4.71191 -152.206 0,,
|
||||
3360.87 1743.17 376.235,24,crouch,9.37561 162.036 0,,
|
||||
3360.88 1696.87 303.397,22,crouch,5.22827 -132.343 0,,
|
||||
3294.08 1353.8 291.271,22,crouch,4.36584 157.559 0,,
|
||||
2927.13 42.132 287.942,149,crouch,6.61255 31.5235 0,,
|
||||
3509.67 -239.125 336.125,1,crouch,1.77856 -150.284 0,,
|
||||
2107.45 673.287 448.125,166,crouch,19.2139 16.3294 0,,
|
||||
1043.83 1545.41 382.373,74 41 38 57 377,stand,43.5596 -116.27 0,,
|
||||
820.121 1888.87 376.125,57 358,climb,41.1426 90.3937 0,,
|
||||
786.541 2109.23 143.895,356 71,climb,1.94885 -90.0403 0,,
|
||||
782.078 2047.13 231.12,56 355,climb,-33.6249 -91.9409 0,,
|
||||
1017.57 1959.3 350.532,56,crouch,4.01978 127.863 0,,
|
||||
812.207 1927.13 376.27,354 56,climb,6.60706 -90.4303 0,,
|
||||
1111.49 1107.13 384.665,114 360,climb,-85 -91.8146 0,,
|
||||
1110.61 1107.13 607.265,359 361 365,climb,85 -88.0133 0,,
|
||||
1042.13 1084.15 632.125,360 362,stand,41.6644 -17.3932 0,,
|
||||
1012.4 999.396 632.125,361 363 369,stand,50.816 -40.3601 0,,
|
||||
1083.73 922.2 632.125,362 364 368,stand,43.3893 10.578 0,,
|
||||
1192.91 962.342 632.125,363 365 367,stand,58.4131 66.8665 0,,
|
||||
1188.31 1072.26 632.125,364 360 366,stand,83.7915 150.61 0,,
|
||||
1162.13 1094.97 632.125,365,crouch,16.7969 92.2559 0,,
|
||||
1195.34 974.817 632.125,364,crouch,18.0054 -26.7096 0,,
|
||||
1046.42 958.568 632.125,363,crouch,24.5697 -170.713 0,,
|
||||
1036.29 1053.25 632.125,362,crouch,16.9727 119.359 0,,
|
||||
1448.88 3120.88 393.909,31,crouch,8.85925 -132.03 0,,
|
||||
985.558 3097.01 376.409,31 372 379,stand,32.8589 -159.825 0,,
|
||||
1160.88 3200.88 381.276,371,crouch,6.95862 -139.286 0,,
|
||||
1289.8 2926.56 376.125,33 30,stand,59.1052 4.37076 0,,
|
||||
2447.13 1391.13 301.01,21,crouch,6.44226 50.6342 0,,
|
||||
1955.6 3008.47 391.029,29 376,stand,54.2658 16.4502 0,,
|
||||
2084.38 3054.43 396.053,375 27,stand,26.8164 1.59671 0,,
|
||||
894.777 1708.36 381.452,57 353 41 381,stand,21.2903 -102.345 0,,
|
||||
929.269 2880.83 374.065,317 379 319,stand,63.7152 108.737 0,,
|
||||
864.007 2970.02 373.854,378 32 371,stand,41.7865 -156.467 0,,
|
||||
757.311 2793.53 365.146,32 317 308 305,stand,59.9139 -18.0011 0,,
|
||||
678.323 1718.55 440.347,377 382,stand,83.7433 107.699 0,,
|
||||
682.051 1736.87 440.36,381 383,climb,2.98157 88.363 0,,
|
||||
689.149 1783.88 498.3,382 384 385 386,stand,85 90.9503 0,,
|
||||
726.722 1865.1 499.605,383,crouch,14.2041 71.098 0,,
|
||||
747.9 1799.52 500.519,383,crouch,10.4083 -45.1099 0,,
|
||||
634.502 1828.47 536.125,383 387 389 388 398,stand,49.4318 7.03125 0,,
|
||||
387.294 1833.84 536.125,386 388 389 397,stand,18.5217 -71.1804 0,,
|
||||
387.023 1716.23 536.125,387 389 386 394 399,stand,30.7825 -22.6593 0,,
|
||||
589.331 1720.56 536.125,388 386 387 390 394,stand,59.0997 89.5715 0,,
|
||||
598.657 1566.24 512.125,389 391 393 392,stand,44.5978 -81.7053 0,,
|
||||
593.38 1415.41 512.125,390 392 393 396,stand,32.337 -112.44 0,,
|
||||
490.764 1412.79 512.125,391 393 390 395,stand,31.2988 95.9601 0,,
|
||||
499.803 1544.49 512.125,392 390 391 394,stand,31.1285 80.766 0,,
|
||||
493.252 1661.08 536.125,393 388 389,stand,47.0148 109.775 0,,
|
||||
416.023 1341.59 512.125,392,crouch,25.4321 -124.536 0,,
|
||||
631.15 1356.93 512.125,391,crouch,10.2325 -37.5128 0,,
|
||||
315.917 1886.44 536.125,387,crouch,17.3132 118.235 0,,
|
||||
626.34 1886.43 536.125,386,crouch,13.1714 62.9791 0,,
|
||||
239.323 1618.45 521.125,388 400 403 401 408,stand,78.2654 -112.61 0,,
|
||||
238.607 1467.56 521.125,399 401 403 405,stand,52.019 171.414 0,,
|
||||
20.4613 1473.73 521.125,400 402 403 399 404,stand,34.2377 113.401 0,,
|
||||
38.3069 1786.31 520.125,401 403 406 407,stand,47.3608 66.4343 0,,
|
||||
89.4893 1645.81 521.125,402 399 401 400,stand,32.5073 -28.8776 0,,
|
||||
-37.0962 1454.2 521.125,401,crouch,26.9812 -98.1079 0,,
|
||||
198.552 1453.3 521.125,400,crouch,18.6975 -105.705 0,,
|
||||
29.2681 1866.35 520.125,402,crouch,23.1854 91.1261 0,,
|
||||
101.145 1828.1 520.125,402,crouch,15.4126 41.9183 0,,
|
||||
226.903 1646.72 521.125,399,crouch,24.0479 91.8182 0,,
|
||||
2248.2 -852.645 368.32,124 83 412 410,stand,27.2791 -74.6246 0,,
|
||||
2323.52 -991.352 374.705,83 411 409 413 84,stand,47.4829 52.9761 0,,
|
||||
2466.97 -908.869 371.075,410 412 81 126,stand,29.0094 55.9094 0,,
|
||||
2410.4 -781.382 368.726,411 409 80 81 414 124,stand,31.9427 -158.187 0,,
|
||||
2446.88 -1150.88 373.647,410,crouch,5.69641 140.18 0,,
|
||||
2547.37 -555.107 384.125,412,crouch,6.21826 -113.637 0,,
|
||||
|
@@ -0,0 +1,259 @@
|
||||
258
|
||||
-1992.75 201.824 -114.338,1 116 143,stand,,,
|
||||
-1991.87 56.0386 -113.158,0 2 5 4,stand,,,
|
||||
-1972.51 -237.832 -111.804,1 3 139,stand,,,
|
||||
-1588.18 -230.85 -111.829,2 4 20 140 141,stand,,,
|
||||
-1586.44 -28.2586 -111.875,1 3 5 244,stand,,,
|
||||
-1569.34 124.103 -114.404,1 4 142 243,stand,,,
|
||||
-1223.93 -24.1245 -111.05,19 20 23 244 243 21,stand,,,
|
||||
-1604.89 542.181 -111.483,10 13 147,stand,,,
|
||||
-1605.83 369.433 -111.883,9 142 147,stand,,,
|
||||
-1265.01 378.095 -111.254,8 23 148 149,stand,,,
|
||||
-1962.22 533.086 -111.875,7 11 146,stand,,,
|
||||
-1963.2 716.745 -111.875,10 12 13,stand,,,
|
||||
-1920.91 1228.02 -115.523,11 15 117 119 151,stand,,,
|
||||
-1561.15 701.608 -111.875,11 7 14,stand,,,
|
||||
-1324.54 727.864 -100.097,13 15 17 18,stand,,,
|
||||
-1385.99 1293.28 -112.192,14 12 16 17 119 117,stand,,,
|
||||
-983.34 1352.7 -112.298,15 30 26 27,stand,,,
|
||||
-1114.21 1010.77 -108.897,15 14 25 26,stand,,,
|
||||
-1206.65 582.859 -107.791,14 24 25 148,stand,,,
|
||||
-1243.94 96.0762 -114.666,6 23 149 243 244,stand,,,
|
||||
-1181.65 -235.99 -111.875,6 3 21,stand,,,
|
||||
-1003.44 -286.021 -119.817,20 22 80 23 6,stand,,,
|
||||
-859.581 -75.5334 -111.875,21 23 77,stand,,,
|
||||
-984.546 174.733 -113.734,22 6 19 9 24 21 149,stand,,,
|
||||
-973.911 586.984 -113.962,18 23 25 148 150,stand,,,
|
||||
-928.432 805.799 -110.254,24 18 17 26 42,stand,,,
|
||||
-863.611 987.601 -114.679,25 17 27 16,stand,,,
|
||||
-593.658 1014 -113.348,26 28 16 38 63,stand,,,
|
||||
-410.938 1383.15 -102.353,27 29 38 39 63,stand,,,
|
||||
-706.324 1654.06 -115.205,28 30 38 37,stand,,,
|
||||
-974.904 1659.82 -100.414,29 16 154,stand,,,
|
||||
179.866 1393.53 -108.529,32 35 36 39,stand,,,
|
||||
596.189 1384.75 -112.432,31 33 226,stand,,,
|
||||
678.315 1767.77 -110.969,32 34 156,stand,,,
|
||||
523.182 1782.72 -111.881,33 36 227,stand,,,
|
||||
419.968 1625.43 -111.881,31 227,stand,,,
|
||||
81.9947 1746.04 -109.732,34 31 37 39,stand,,,
|
||||
-378.795 1762.23 -106.811,36 38 29,stand,,,
|
||||
-486.024 1603.46 -106.457,37 29 28 27,stand,,,
|
||||
-43.5384 1373.46 -104.489,28 31 155 36,stand,,,
|
||||
-32.0376 1291.47 -47.875,41 155,stand,,,
|
||||
38.2095 920.84 -47.875,40 45 44 47,stand,,,
|
||||
-741.528 823.544 -47.875,25 43,stand,,,
|
||||
-466.077 782.394 -47.875,42 44 121,stand,,,
|
||||
-271.874 918.322 -47.875,43 45 41 64 120 121,stand,,,
|
||||
-51.4254 815.876 -47.875,44 46 41,stand,,,
|
||||
-12.2358 614.174 -47.875,45 65 74,stand,,,
|
||||
168.666 927.685 -47.875,41 48 49 160 159,stand,,,
|
||||
195.763 1209.7 -47.875,47 53 159,stand,,,
|
||||
239.01 743.145 -47.875,47 52,stand,,,
|
||||
490.534 1068.01 -47.875,53 62 158,stand,,,
|
||||
482.649 852.351 -47.875,52 61 161 158 62,stand,,,
|
||||
462.551 712.782 -47.875,51 49 61 66,stand,,,
|
||||
400.073 1213.84 -47.875,48 50 54 158,stand,,,
|
||||
979.305 1189.15 -47.875,53 55 162,stand,,,
|
||||
1065.08 1101.99 -47.875,54 56 59 62,stand,,,
|
||||
1245.25 1052.06 -47.875,55 57 164 165 166,stand,,,
|
||||
1267.41 872.374 -47.875,56 58 131,stand,,,
|
||||
1167.07 682.783 -47.875,57 96 97 131 251,stand,,,
|
||||
930.555 740.959 -47.875,55 60 163,stand,,,
|
||||
713.618 764.108 -47.875,59 61 62,stand,,,
|
||||
564.714 755.778 -47.875,60 51 52,stand,,,
|
||||
758.743 993.237 -47.875,60 55 50 51,stand,,,
|
||||
-467.326 976.805 -105.599,27 28 64,stand,,,
|
||||
-373.804 974.295 -47.875,63 44,stand,,,
|
||||
259.885 511.96 -47.875,46 66 103,stand,,,
|
||||
438.175 568.299 -47.875,65 52 67 138 194,stand,,,
|
||||
466.641 491.589 -47.875,66 187,stand,,,
|
||||
450.265 118.189 -47.375,69 70 106 187,stand,,,
|
||||
596.52 66.578 -47.875,68 91,stand,,,
|
||||
281.485 47.3397 -47.875,68 71 105 106,stand,,,
|
||||
224.034 -286.291 -47.875,70 86 254,stand,,,
|
||||
-274.158 -106.833 -47.875,73 233 256,stand,,,
|
||||
-482.517 -21.0415 -47.375,72 74 76 78,stand,,,
|
||||
-406.296 569.751 -47.875,73 75 46,stand,,,
|
||||
-750.232 582.207 -47.875,74 150,stand,,,
|
||||
-605.517 -42.6159 -47.875,73 77 137 222,stand,,,
|
||||
-741.186 -39.0625 -103.875,22 76 221,stand,,,
|
||||
-442.69 -404.441 -47.875,73 81 87,stand,,,
|
||||
-799.711 -447.328 -47.875,81 219,stand,,,
|
||||
-999.46 -458.248 -117.406,21 112 219 220,stand,,,
|
||||
-589.024 -468.308 -47.875,79 78 82,stand,,,
|
||||
-575.819 -761.023 -47.875,81 83 135 240,stand,,,
|
||||
-263.003 -753.594 -47.875,82 84 87 238,stand,,,
|
||||
31.7126 -733.986 -47.875,83 85 239,stand,,,
|
||||
265.455 -720.062 -47.875,84 86 107 228 229,stand,,,
|
||||
267.911 -431.977 -47.875,85 71 230 235,stand,,,
|
||||
-310.052 -467.264 -47.875,83 78 234,stand,,,
|
||||
639.405 -438.074 -47.875,89 90 125 230,stand,,,
|
||||
833.303 -703.869 -47.875,88 92 102 125 126,stand,,,
|
||||
723.022 -185.265 -47.875,88 91,stand,,,
|
||||
698.81 89.6756 -47.875,90 69 123 186,stand,,,
|
||||
1032.79 -618.51 -47.875,89 93 102 174 175,stand,,,
|
||||
1172.78 -370.624 -47.875,92 94 178 175,stand,,,
|
||||
1187.63 -63.4828 -47.875,93 170 171,stand,,,
|
||||
1012.63 362.415 -47.375,96 133 248 250,stand,,,
|
||||
1085.35 597.625 -47.875,95 58 132 97 248,stand,,,
|
||||
1309.14 530.996 -47.875,58 98 130 96 247,stand,,,
|
||||
1379.36 392.47 -47.875,97 99 246 247,stand,,,
|
||||
1553.34 205.015 -47.875,98 100 130 246,stand,,,
|
||||
1585.3 -165.35 -47.875,99 101 180,stand,,,
|
||||
1548.71 -578.935 -47.875,100 129 176 127 177,stand,,,
|
||||
1061.23 -760.643 -47.875,89 92 126 174,stand,,,
|
||||
248.747 366.493 -47.875,65 104,stand,,,
|
||||
233.663 304.445 2.62499,103 105,stand,,,
|
||||
226.381 205.457 -47.875,104 70 106,stand,,,
|
||||
329.876 128.947 -47.875,105 68 70,stand,,,
|
||||
502.582 -728.839 -47.875,85 108 134,stand,,,
|
||||
483.337 -943.64 -47.875,107 197 198 199,stand,,,
|
||||
194.144 -893.016 -103.875,110 115 199,stand,,,
|
||||
303.761 -1243.59 -103.875,109 124 201 203 208,stand,,,
|
||||
-937.678 -1165.28 -106.325,112 212 215 216 217,stand,,,
|
||||
-982.491 -783.85 -115.911,111 80 216 218,stand,,,
|
||||
-801.987 -924.725 -61.9447,114 216,stand,,,
|
||||
-381.69 -899.131 -59.4169,113 211 214,stand,,,
|
||||
-42.0161 -907.1 -103.875,109 209 210,stand,,,
|
||||
-1742.65 210.274 -102.875,0 144 145,stand,,,
|
||||
-1773.59 1392.45 -112.927,12 118 119 15,stand,,,
|
||||
-1794.97 1681.91 -103.875,117 152 153,stand,,,
|
||||
-1335.81 1437.69 -105.645,117 15 12 252,stand,,,
|
||||
-261.714 729.117 -47.875,44 121 157,stand,,,
|
||||
-334.577 817.233 -47.875,43 44 120,stand,,,
|
||||
735.864 587.188 -47.875,123 183 184,stand,,,
|
||||
718.154 320.474 -47.875,122 91 185,stand,,,
|
||||
470.336 -1142.21 -102.625,110 200 201,stand,,,
|
||||
693.889 -801.131 -47.875,89 88 182,stand,,,
|
||||
970.805 -888.746 -47.875,102 89 173,stand,,,
|
||||
1404.81 -778.652 -47.875,128 177 101 176,stand,,,
|
||||
1492.42 -910.683 -47.875,127 129,stand,,,
|
||||
1585.84 -831.825 -47.875,128 101 172,stand,,,
|
||||
1588.28 579.876 -47.875,99 97 181,stand,,,
|
||||
1295.72 744.88 -47.875,58 57 167,stand,,,
|
||||
942.997 587.267 -47.875,96 133 169,stand,,,
|
||||
899.334 391.416 -47.875,132 95 168,stand,,,
|
||||
512.674 -637.062 -47.875,107 195 196,stand,,,
|
||||
-415.08 -801.901 -47.875,82,stand,,,
|
||||
-797.089 -288.671 -47.875,137 224,stand,,,
|
||||
-580.253 -252.885 -47.875,136 76 223,stand,,,
|
||||
550.187 578.302 -47.875,66 192 193,stand,,,
|
||||
-2088.88 -320.875 -108.006,2,crouch,1.90063 41.9568 0,,
|
||||
-1364.9 -315.154 -72.578,3,crouch,2.2467 23.3075 0,,
|
||||
-1703.44 -320.569 -106.01,3,crouch,6.38855 50.7623 0,,
|
||||
-1594.13 295.523 -111.832,8 5 143 149,stand,65.7861 163.685 0,,
|
||||
-1985.98 304.417 -114.412,142 0 146 225,stand,19.8578 -5.17456 0,,
|
||||
-1659.13 239.875 -102.875,116,crouch,4.14185 -170.931 0,,
|
||||
-1661.86 177.997 -102.875,116,crouch,2.59277 170.074 0,,
|
||||
-1975.24 462.279 -111.875,10 143 147,stand,60.6061 -2.2467 0,,
|
||||
-1598.77 462.464 -111.875,146 148 8 7,stand,85 -2.2467 0,,
|
||||
-1240.47 481.193 -108.801,147 18 9 24,stand,83.6157 -4.14185 0,,
|
||||
-1249.5 315.204 -111.84,142 19 9 23,stand,72.9095 -95.3174 0,,
|
||||
-931.135 579.768 -110.78,24 75,climb,8.16162 -0.351563 0,,
|
||||
-2088.88 1416.88 -108.588,12,crouch,3.49792 -44.7253 0,,
|
||||
-1848.88 1784.88 -103.875,118,crouch,6.26099 -71.6528 0,,
|
||||
-1754.86 1778.38 -103.875,118,crouch,5.05249 -104.458 0,,
|
||||
-1066.4 1777.71 -110.723,30,crouch,3.67371 -40.9186 0,,
|
||||
-33.243 1337.93 -102.065,40 39,climb,-4.61546 -89.4397 0,,
|
||||
764.875 1788.88 -109.784,33,crouch,4.70642 -149.518 0,,
|
||||
-197.627 767.794 -39.875,120,crouch,1.427 14.859 0,,
|
||||
383.928 1039.47 -47.875,50 159 161 53 51,stand,55.2985 -179.044 0,,
|
||||
204.609 1041.17 -47.875,158 160 48 47,stand,47.5311 -169.2 0,,
|
||||
211.543 916.843 -47.875,159 161 47,stand,55.6445 9.1626 0,,
|
||||
365.591 915.184 -47.875,51 160 158,stand,37.3413 147.986 0,,
|
||||
1028.26 1240.88 -47.875,54,crouch,3.32764 -124.827 0,,
|
||||
1021.09 711.466 -47.875,59,crouch,3.49792 136.417 0,,
|
||||
1103.27 997.077 -47.875,56,crouch,3.32764 179.407 0,,
|
||||
1108.12 967.214 -47.875,56,crouch,1.77307 178.022 0,,
|
||||
1351.75 1235.75 -15.875,56,crouch,6.60706 -131.896 0,,
|
||||
1338.71 725.052 -47.875,131,crouch,2.46521 141.938 0,,
|
||||
880.934 470.185 -47.875,133,crouch,4.8822 -123.613 0,,
|
||||
917.432 602.181 -47.875,132,crouch,2.28943 -42.1161 0,,
|
||||
1182.57 167.963 -47.875,94 249,stand,25.7727 90.4834 0,,
|
||||
1289.5 -173.203 -47.875,94 180,stand,48.3936 -2.58179 0,,
|
||||
1639.91 -946.078 -47.875,129,crouch,1.94336 119.312 0,,
|
||||
882.591 -943.215 -47.875,126,crouch,3.84399 49.8999 0,,
|
||||
1155.19 -728.494 -47.875,177 102 92,stand,29.3982 76.6626 0,,
|
||||
1152.46 -577.264 -47.875,92 176 93,stand,29.574 -7.59705 0,,
|
||||
1324.93 -591.449 -47.875,175 101 177 127 179 178,stand,33.5455 -90.4779 0,,
|
||||
1325.11 -721.132 -47.875,127 174 176 101,stand,32.1613 -76.4923 0,,
|
||||
1313 -418.824 -47.875,93 179 176,stand,25.943 125.013 0,,
|
||||
1418.46 -355.831 -47.875,178 180 176,stand,45.1141 74.4214 0,,
|
||||
1430.22 -170.907 -47.875,179 171 100,stand,42.6917 93.9331 0,,
|
||||
1638.1 643.696 -47.875,130,crouch,2.6355 -124.651 0,,
|
||||
654.625 -889.29 -47.875,125,crouch,4.36035 65.451 0,,
|
||||
638.938 616.088 -47.875,122,crouch,5.22827 -60.4138 0,,
|
||||
795.735 596.285 -47.875,122,crouch,4.8822 -108.413 0,,
|
||||
803.848 328.888 -47.875,123,crouch,3.49792 35.7605 0,,
|
||||
820.875 26.879 -47.875,91,crouch,2.6355 167.849 0,,
|
||||
456.38 309.735 -47.875,68 67 188 189 190 191,stand,21.4551 80.9967 0,,
|
||||
567.942 193.038 -47.875,187,crouch,7.81555 137.115 0,,
|
||||
352.128 464.875 -47.875,187,crouch,5.74463 -45.0385 0,,
|
||||
350.879 191.125 -47.875,187,crouch,5.05249 41.9788 0,,
|
||||
548.875 464.875 -47.875,187,crouch,4.8822 -126.705 0,,
|
||||
572.875 656.875 -47.875,138,crouch,4.8822 -145.701 0,,
|
||||
572.875 503.263 -47.875,138,crouch,3.15186 152.139 0,,
|
||||
320.903 632.303 -47.875,66,crouch,2.11914 -177.127 0,,
|
||||
559.986 -573.006 -47.875,134,crouch,2.98157 -129.979 0,,
|
||||
377.221 -594.125 -47.875,134,crouch,1.94336 -66.264 0,,
|
||||
536.078 -1035.32 -47.875,108,crouch,5.22827 135.225 0,,
|
||||
363.398 -1014.48 -47.875,108,crouch,6.60706 -179.187 0,,
|
||||
348.757 -899.099 -47.875,109 108,stand,53.3978 179.083 0,,
|
||||
536.848 -1178.32 -75.875,124,crouch,11.441 178.215 0,,
|
||||
437.19 -1372.09 -102.583,124 110 202,stand,34.0619 118.125 0,,
|
||||
552.875 -1392.88 -102.023,201,crouch,5.91492 142.652 0,,
|
||||
25.3522 -1371.72 -103.875,110 204 208,stand,38.2037 176.666 0,,
|
||||
-183.82 -1379.18 -103.875,203 205 206 213,stand,16.7969 19.5392 0,,
|
||||
-361.592 -1318.15 -103.875,204 212 206,stand,21.6309 152.15 0,,
|
||||
-163.067 -1110.5 -103.875,204 207 209 213 205,stand,20.5927 -9.6405 0,,
|
||||
-67.7055 -1112.77 -103.875,206 208 209,stand,20.5927 -16.897 0,,
|
||||
48.1263 -1188.49 -104.652,207 203 110,stand,22.1472 -167.459 0,,
|
||||
-95.7696 -954.667 -103.875,207 115 210 206,stand,56.3367 45.9558 0,,
|
||||
-112.875 -896.525 -103.875,115 211 209,climb,3.15186 -179.374 0,,
|
||||
-189.826 -893.533 -61.8149,210 114,stand,50.8106 -42.2809 0,,
|
||||
-532.013 -1121.29 -103.875,205 213 111,stand,55.2985 4.3396 0,,
|
||||
-370.823 -1028.53 -103.93,212 206 204 214,stand,21.6309 33.0029 0,,
|
||||
-398.674 -959.125 -103.875,213 114,climb,4.71191 88.429 0,,
|
||||
-1193.16 -1384.8 -103.875,111,crouch,4.19556 49.0594 0,,
|
||||
-867.125 -921.524 -103.875,111 112 113,climb,4.53613 -1.70288 0,,
|
||||
-863.125 -1392.81 -103.875,111,crouch,3.67371 105.013 0,,
|
||||
-1200.88 -824.875 -103.875,112,crouch,0.740357 40.0891 0,,
|
||||
-927.211 -445.934 -112.651,80 79,climb,4.71191 -1.52161 0,,
|
||||
-1200.88 -375.125 -103.875,80,crouch,5.57434 -23.9722 0,,
|
||||
-662.483 -152.875 -111.875,77,crouch,2.98706 145.404 0,,
|
||||
-539.125 152.875 -47.875,76,crouch,6.43677 -129.65 0,,
|
||||
-539.125 -320.834 -47.875,137,crouch,8.50769 124.162 0,,
|
||||
-828.875 -320.875 -47.875,136,crouch,5.05798 51.9873 0,,
|
||||
-2088.86 303.115 -111.528,143,crouch,1.4325 -2.23022 0,,
|
||||
699.832 1284.02 -108.437,32,crouch,3.84949 151.441 0,,
|
||||
494.449 1691.08 -111.875,35 34,stand,74.4696 62.1771 0,,
|
||||
308.875 -832.875 -47.875,85,crouch,5.05798 110.001 0,,
|
||||
211.125 -832.875 -47.875,85,crouch,5.57434 68.736 0,,
|
||||
483.239 -442.075 -47.875,88 86 231 232,stand,19.906 2.77405 0,,
|
||||
512.428 -303.125 -47.875,230,crouch,5.05798 -102.376 0,,
|
||||
572.875 -520.875 -47.875,230,crouch,5.57434 143.844 0,,
|
||||
-364.875 -320.875 -46.4055,72,crouch,5.22827 47.851 0,,
|
||||
-39.3371 -389.068 -47.875,87 235 237,stand,39.2419 -22.7692 0,,
|
||||
114.325 -398.401 -47.875,234 86 236,stand,22.6691 -157.967 0,,
|
||||
84.5143 -509.052 -47.875,235,crouch,3.67371 18.1439 0,,
|
||||
4.90338 -518.762 -47.875,234,crouch,6.26648 140.048 0,,
|
||||
-364.875 -832.875 -47.875,83,crouch,5.92041 44.9176 0,,
|
||||
172.875 -629.125 -47.875,84,crouch,7.82105 -135.857 0,,
|
||||
-718.475 -671.444 -47.875,82 241 242,stand,15.4181 100.503 0,,
|
||||
-792.728 -785.534 -40.875,240,crouch,4.53613 42.6654 0,,
|
||||
-755.125 -568.508 -47.875,240,crouch,4.71191 126.579 0,,
|
||||
-1381.93 110.509 -115.788,5 244 19 6,stand,20.2039 -174.743 0,,
|
||||
-1371.56 -25.5867 -111.65,4 243 6 19,stand,22.6208 178.693 0,,
|
||||
1149.5 271.216 -47.875,248 249 246,stand,42.8192 5.8667 0,,
|
||||
1303.88 265.105 -47.875,249 245 247 98 99,stand,25.3839 131.567 0,,
|
||||
1299.99 413.676 -47.875,246 98 97 248,stand,28.3173 176.111 0,,
|
||||
1134.83 413.033 -47.875,245 247 95 96,stand,26.7627 -147.453 0,,
|
||||
1178.64 234.516 -47.875,245 170 246,stand,67.6868 91.3348 0,,
|
||||
867.798 133.469 -47.875,95,crouch,3.62549 56.6235 0,,
|
||||
1107.13 846.875 -47.875,58,crouch,5.18005 -60.271 0,,
|
||||
-1305.13 1486.88 -103.875,119,crouch,6.95313 -134.418 0,,
|
||||
-155.285 -256.896 -47.875,256 254,stand,29.696 3.5376 0,,
|
||||
7.2435 -258.663 -47.875,253 71 255,stand,35.2222 67.2473 0,,
|
||||
29.9097 -123.598 -47.875,254 256 257,stand,26.4166 -173.782 0,,
|
||||
-153.629 -126.01 -47.875,253 255 72,stand,23.3075 -66.5607 0,,
|
||||
169.315 -72.3959 -22.6032,255,crouch,11.0522 -137.697 0,,
|
||||
|
@@ -0,0 +1,158 @@
|
||||
157
|
||||
-822.026 1464.92 -287.875,1 99,stand,,,
|
||||
-807.557 1208.11 -287.875,0 2 98,stand,,,
|
||||
-633.393 1175.46 -287.875,1 3 4 19,stand,,,
|
||||
-618.753 1423.69 -281.817,2 100,stand,,,
|
||||
-413.421 1177.76 -287.875,2 5 16 17,stand,,,
|
||||
-412.043 1388.66 -279.875,4 8 103 102,stand,,,
|
||||
-59.4128 1398.99 -279.875,7 102 109 116,stand,,,
|
||||
-59.5178 1502.88 -279.875,6 110 111 113 116,stand,,,
|
||||
-336.931 1544.3 -279.875,5 102 104 105,stand,,,
|
||||
193.373 1490.52 -279.875,10 13 113 116 117 118,stand,,,
|
||||
317.11 1528.68 -279.875,9 119,stand,,,
|
||||
514.47 1434.1 -274.875,12 119,stand,,,
|
||||
544.192 1170.3 -279.875,11 13 118 120 121,stand,,,
|
||||
218.613 1165.59 -279.875,12 9 14,stand,,,
|
||||
206.395 922.298 -287.875,13 15 76,stand,,,
|
||||
-42.9216 887.362 -286.875,14 16 74,stand,,,
|
||||
-121.647 1092.64 -287.875,15 4 101,stand,,,
|
||||
-396.971 699.427 -287.875,4 18 27,stand,,,
|
||||
-765.391 681.307 -287.875,17 19 21 20,stand,,,
|
||||
-706.78 959.375 -287.875,18 20 2 97,stand,,,
|
||||
-870.255 976.447 -287.875,19 18 97,stand,,,
|
||||
-762.346 386.723 -287.875,18 22 24,stand,,,
|
||||
-666.46 388.308 -287.875,21 23,stand,,,
|
||||
-662.546 79.4598 -287.875,22 24 25,stand,,,
|
||||
-789.253 82.9664 -287.875,23 21 96,stand,,,
|
||||
-429.809 40.5011 -287.875,23 26 27 28,stand,,,
|
||||
-490.843 -183.312 -287.875,25 28 95,stand,,,
|
||||
-370.469 339.632 -287.875,25 17 30,stand,,,
|
||||
-365.774 -61.9152 -286.875,25 29 26,stand,,,
|
||||
-84.0733 -50.8349 -287.875,28 38 41,stand,,,
|
||||
-86.1229 341.97 -286.875,27 31 33 41,stand,,,
|
||||
-77.7785 505.018 -281.875,30 32 73,stand,,,
|
||||
128.436 515.361 -281.875,31 33 72,stand,,,
|
||||
131.953 343.54 -286.875,32 30 72 153,stand,,,
|
||||
533.465 367.281 -287.875,35 37 70 156 155,stand,,,
|
||||
794.653 430.852 -287.875,34 36,stand,,,
|
||||
798.088 -3.39992 -287.875,35 37 42 60,stand,,,
|
||||
558.847 20.4708 -287.875,36 34 38 40,stand,,,
|
||||
190.889 -73.634 -287.875,37 39 29,stand,,,
|
||||
168.666 -173.142 -287.875,38,stand,,,
|
||||
313.625 181.391 -287.875,37 41 155 154,stand,,,
|
||||
-56.1528 118.003 -287.875,40 29 30,stand,,,
|
||||
912.637 32.2351 -287.875,36 43 60 61,stand,,,
|
||||
1104.28 7.5762 -287.875,42 44 50,stand,,,
|
||||
1106.99 -61.6543 -287.875,43 45 60,stand,,,
|
||||
1375.07 -62.9017 -287.875,44 46 48 49,stand,,,
|
||||
1761.68 -76.9641 -287.875,45 47,stand,,,
|
||||
1770.3 236.221 -287.875,46,stand,,,
|
||||
1389.55 11.1926 -287.875,45,stand,,,
|
||||
1352.95 -170.147 -287.875,45,stand,,,
|
||||
1398.28 19.3083 -119.875,43 51,stand,,,
|
||||
1402.31 186.216 -87.875,50 52 59,stand,,,
|
||||
1406.26 556.278 -87.875,51 53 56 57,stand,,,
|
||||
1407.12 786.845 -87.875,52 54 55 58,stand,,,
|
||||
1404.89 927.201 -87.875,53,stand,,,
|
||||
1263.7 777.867 -87.875,53 56,stand,,,
|
||||
1262.11 524.681 -87.875,55 52,stand,,,
|
||||
1584.45 563.578 -87.875,52 58 59,stand,,,
|
||||
1602.14 803.507 -87.875,57 53,stand,,,
|
||||
1594.99 244.26 -87.875,57 51,stand,,,
|
||||
922.266 -68.2416 -287.875,42 44 36,stand,,,
|
||||
921.03 394.481 -287.875,42 62 63,stand,,,
|
||||
1091.15 380.363 -287.875,61,stand,,,
|
||||
918.837 781.016 -287.875,61 64 66,stand,,,
|
||||
930.8 958.611 -287.875,63 65,stand,,,
|
||||
1108.1 958.624 -287.875,64,stand,,,
|
||||
754.225 780.571 -287.875,63 67 68,stand,,,
|
||||
727.501 930.129 -287.875,66 76,stand,,,
|
||||
754.518 686.766 -287.875,66 69,stand,,,
|
||||
520.347 702.355 -286.875,68 70 75 76,stand,,,
|
||||
537.371 584.193 -287.875,69 34 71,stand,,,
|
||||
222.777 594.506 -286.875,70 72 73 75,stand,,,
|
||||
222.779 466.427 -281.875,71 32 33 153,stand,,,
|
||||
-80.4735 590.314 -286.875,71 31 74,stand,,,
|
||||
-34.9286 724.084 -286.875,73 15 75,stand,,,
|
||||
220.997 700.756 -286.875,74 71 69,stand,,,
|
||||
464.972 921.021 -287.875,69 67 14,stand,,,
|
||||
690.868 1568.34 -279.375,126 128 127,stand,,,
|
||||
813.084 1490.26 -279.875,79 124 125,stand,,,
|
||||
944.774 1486.77 -287.875,78 80 81,stand,,,
|
||||
979.596 1235.68 -287.875,79 89 131 133 132 136 135,stand,,,
|
||||
958.313 1594.94 -287.875,79 147 150,stand,,,
|
||||
1186.98 1731.85 -287.875,146 152 151,stand,,,
|
||||
1515.39 1601.26 -287.875,84 85 138 140 139 141,stand,,,
|
||||
1722.41 1589.57 -287.875,83 86 90 85 141,stand,,,
|
||||
1492.46 1752.42 -287.875,83 139 140 84 141,stand,,,
|
||||
1811.79 1464.34 -287.875,84 87,stand,,,
|
||||
1805.57 1117.71 -287.875,86 88 138,stand,,,
|
||||
1454.08 1148.82 -287.875,87 134 138 137,stand,,,
|
||||
1040.99 1051.08 -287.875,80 135 134 148,stand,,,
|
||||
1891.35 1591.54 -238.875,84 142,stand,,,
|
||||
1894.12 1801.08 -203.875,92 94 93 142 145 144,stand,,,
|
||||
1611.59 2160.18 -203.875,91 93 94 143 144,stand,,,
|
||||
1892.79 2481.04 -203.875,92 94 91,stand,,,
|
||||
2229.65 2209.06 -203.875,93 91 92,stand,,,
|
||||
-549.009 -211.935 -277.505,26,crouch,2.76733 32.8491 0,,
|
||||
-787.779 -5.44992 -287.875,24,crouch,2.76733 70.8344 0,,
|
||||
-937.875 817.035 -287.875,20 19,crouch,2.25098 39.4189 0,,
|
||||
-919.56 1196.54 -287.875,1,crouch,4.49768 10.7556 0,,
|
||||
-896.053 1470.49 -287.875,0,crouch,3.63525 -35.0024 0,,
|
||||
-610.599 1490.87 -272.065,3,crouch,3.45947 -96.9873 0,,
|
||||
-42.0148 1158.96 -287.875,16,crouch,0.872192 -140.328 0,,
|
||||
-199.85 1398.21 -279.875,5 8 6 108,stand,13.3032 5.92163 0,,
|
||||
-548.875 1303.13 -279.875,5,crouch,3.1134 23.5382 0,,
|
||||
-319.197 1636.68 -279.875,8,crouch,0.526123 -93.3508 0,,
|
||||
-487.24 1595.45 -279.875,8 106,stand,49.5636 -6.84998 0,,
|
||||
-516.9 1596.7 -279.875,105 107,stand,49.5636 -2.53235 0,,
|
||||
-535.13 1640.87 -279.875,106,crouch,1.04248 -55.3711 0,,
|
||||
-206.539 1524.46 -279.875,102,crouch,4.3219 -94.2188 0,,
|
||||
-134.875 1303.13 -279.875,6,crouch,0.180054 44.4342 0,,
|
||||
-134.875 1611.07 -279.875,7 111,crouch,-0.336304 -31.1957 0,,
|
||||
-33.0874 1624.78 -279.875,110 7 112,stand,14.5117 -33.4369 0,,
|
||||
99.8169 1609.29 -279.875,113 111 114,stand,20.9003 -79.1949 0,,
|
||||
104.509 1499.26 -279.875,7 9 112,stand,24.5258 -17.8967 0,,
|
||||
122.875 1625.38 -279.875,112,crouch,4.49768 -127.024 0,,
|
||||
122.875 1303.13 -279.875,116,crouch,3.63525 89.5001 0,,
|
||||
121.62 1405.7 -279.875,9 7 6 115,stand,73.5632 34.0741 0,,
|
||||
161.125 1604.2 -279.875,9,crouch,4.3219 -59.8535 0,,
|
||||
333.497 1362.26 -275.875,12 9 119,stand,12.9572 -29.1193 0,,
|
||||
403.633 1484.38 -278.875,118 11 10,stand,44.8999 119.196 0,,
|
||||
531.492 1047.03 -279.875,12,crouch,1.90491 78.4534 0,,
|
||||
691.482 1167.78 -278.875,124 12 122 130,stand,30.7385 -178.638 0,,
|
||||
755.894 1107.58 -278.875,121 123 129 130,stand,31.7767 87.7863 0,,
|
||||
824.034 1206.57 -279.875,122 124,stand,30.7385 119.037 0,,
|
||||
749.115 1296.97 -278.875,121 123 78 126,stand,25.7343 -105.595 0,,
|
||||
795.423 1607.08 -279.875,78,crouch,3.80554 -88.8519 0,,
|
||||
699.139 1350.18 -279.875,124 77,stand,25.9045 94.1693 0,,
|
||||
641.125 1620.88 -279.875,77,crouch,4.49768 -70.2026 0,,
|
||||
732.875 1615.88 -279.875,77,crouch,3.1134 -111.473 0,,
|
||||
827.875 1031.13 -279.875,122 130,crouch,2.42126 131.808 0,,
|
||||
641.125 1031.13 -245.875,122 121 129,crouch,7.60132 65.6763 0,,
|
||||
895.816 1020.82 -163.875,132 80,crouch,20.2466 -101.118 0,,
|
||||
929.689 1019.72 -163.875,133 131 80,crouch,22.6636 -93.6969 0,,
|
||||
983.423 1018.35 -163.875,132 80,crouch,18.692 -125.634 0,,
|
||||
1261.43 1131.81 -287.875,137 135 88 89 138,stand,24.5642 179.451 0,,
|
||||
1085.1 1134.05 -287.875,134 89 136 80,stand,31.123 73.2623 0,,
|
||||
1080.04 1290.27 -287.875,135 80 137,stand,28.0194 0.22522 0,,
|
||||
1255.03 1285.83 -287.875,134 136 138 88,stand,32.337 -97.3334 0,,
|
||||
1457.23 1278.98 -287.875,137 88 83 140 87 141 134,stand,30.6067 -26.8835 0,,
|
||||
1390.5 1774.31 -287.875,140 85 83,stand,18.3459 -80.4034 0,,
|
||||
1403.15 1610.3 -287.875,83 139 85 138 149,stand,24.0479 -95.4218 0,,
|
||||
1728.9 1649.52 -287.875,142 84 85 83 138,stand,17.3132 -1.15356 0,,
|
||||
1878.04 1649.34 -239.375,91 90 141,stand,36.1328 -68.6646 0,,
|
||||
1552.99 1935.91 -203.875,92 144,prone,5.56885 -142.399 0,,
|
||||
1624.2 1873.67 -203.875,145 92 143 91,prone,6.0907 -139.812 0,,
|
||||
1682.47 1810.47 -203.875,144 91,prone,7.46948 -148.101 0,,
|
||||
1102.13 1795.88 -287.875,82,crouch,5.39856 -122.042 0,,
|
||||
873.125 1659.88 -287.875,81,crouch,8.33191 -52.63 0,,
|
||||
906.088 1031.92 -287.875,89,crouch,2.98157 -141.031 0,,
|
||||
1256.4 1585.28 -287.875,150 152 140,stand,30.2179 161.878 0,,
|
||||
1135.89 1571.9 -287.875,151 149 81,stand,32.8052 95.0537 0,,
|
||||
1132.12 1721.67 -287.875,82 150,stand,41.4404 1.64246 0,,
|
||||
1252.75 1716.05 -287.875,82 149,stand,39.8859 -105.062 0,,
|
||||
268.105 382.819 -281.875,154 72 33 156,stand,31.7725 -92.9718 0,,
|
||||
263.003 250.245 -286.875,155 40 153,stand,30.2179 4.06494 0,,
|
||||
424.348 268.933 -285.875,34 40 154 156,stand,28.3173 12.7002 0,,
|
||||
418.899 395.865 -286.875,34 153 155,stand,32.2888 3.20251 0,,
|
||||
|
@@ -0,0 +1,269 @@
|
||||
268
|
||||
-10702.9 11111.2 575.311,1 3 59,stand,20.3796 -59.2157 0,,
|
||||
-10694.8 10326.6 638.741,0 2,stand,22.9559 -72.8772 0,,
|
||||
-10505.6 9956.17 622.813,1 3,stand,19.9347 31.9379 0,,
|
||||
-10308.9 10271.8 616.212,0 2 4,stand,19.7095 78.4156 0,,
|
||||
-10192 10291.8 622.125,3 5 55,stand,27.323 3.71952 0,,
|
||||
-9988.56 10579 616.125,4 6 58 93,stand,24.9719 -20.0219 0,,
|
||||
-9672.77 10326.1 616.125,5 52 54 94,stand,23.7415 -39.281 0,,
|
||||
-9173.92 10578 624.125,8 95,stand,23.4064 95.2137 0,,
|
||||
-9103.01 10654.8 624.125,7 9,stand,36.7328 145.383 0,,
|
||||
-9204.27 10725.6 624.125,8,stand,32.4756 149.415 0,,
|
||||
-9226.15 10103 624.125,49 95,stand,27.6581 -101.288 0,,
|
||||
-9176.21 9260.44 624.125,12 47,stand,15.6775 59.4092 0,,
|
||||
-8952.32 9184.58 624.125,11 13 17 47,stand,20.3796 -16.5173 0,,
|
||||
-8784.88 9420.22 624.125,12 14 17 45 46,stand,22.9559 62.6612 0,,
|
||||
-8808.3 9620.25 624.125,13 15 16,stand,23.0713 92.6703 0,,
|
||||
-8988.34 9873.46 624.125,14 16 49,stand,30.1245 138.807 0,,
|
||||
-8828.5 9956.42 624.125,14 15,stand,38.9685 35.6733 0,,
|
||||
-8704.13 9198.24 624.125,12 13,stand,28.7787 -12.1447 0,,
|
||||
-8280.35 9470.72 624.125,19 22 44 45,stand,29.5642 31.7182 0,,
|
||||
-8288.24 9671.23 624.125,18 20,stand,23.6316 10.8881 0,,
|
||||
-7756.6 9671.28 625.214,19 21 23,stand,25.5322 -16.7755 0,,
|
||||
-7756.5 9438.87 624.125,20 22 41 42,stand,26.6528 -93.5974 0,,
|
||||
-8108.9 9387.55 627.352,18 21 43,stand,27.8833 -88.2196 0,,
|
||||
-7737.69 10274.8 626.162,20 24,stand,30.2344 100.586 0,,
|
||||
-8025.53 10286.1 630.372,23 25 40,stand,24.8621 165.762 0,,
|
||||
-8049.02 10513.9 624.124,24 26,stand,26.6528 90.0611 0,,
|
||||
-7989.94 10754.1 536.125,25 27,stand,12.7661 -78.0298 0,,
|
||||
-7724.3 10841.1 541.51,26 28,stand,29.0039 -92.5866 0,,
|
||||
-7743.14 10276.3 456.165,27 29 31,stand,33.4863 -84.638 0,,
|
||||
-7504.1 10280 456.112,28 30,stand,28.2184 -5.23983 0,,
|
||||
-7505.21 9897.51 456.112,29 31,stand,26.3177 -115.323 0,,
|
||||
-7686.01 9872.2 456.265,28 30 32,stand,49.0485 -174.303 0,,
|
||||
-7824.44 9614.97 457.825,31 33,stand,28.3337 12.7118 0,,
|
||||
-7742.9 9396.89 456.125,32 34,stand,35.9473 -71.839 0,,
|
||||
-7733.27 9110.34 416.125,33 35 36 38,stand,26.0925 -148.101 0,,
|
||||
-8611.25 9183.88 416.125,34,stand,20.495 177.073 0,,
|
||||
-7697.66 8811.1 416.125,34 37 39,stand,20.6049 120.295 0,,
|
||||
-7625.39 8525.74 412.125,36,stand,26.9879 -76.7663 0,,
|
||||
-7557.58 9177.08 416.125,34 39,stand,26.3177 -148.963 0,,
|
||||
-7137.06 9167.97 414.234,36 38,stand,33.8214 -161.762 0,,
|
||||
-8190.88 10211.1 624.694,24,stand,36.2823 36.8598 0,,
|
||||
-7690.79 9335.06 624.125,21 42,stand,23.0713 -87.0001 0,,
|
||||
-7819.02 9337.85 625.359,21 41,stand,14.2218 -58.2159 0,,
|
||||
-8096.66 9334.13 625.101,22,stand,28.2184 -95.509 0,,
|
||||
-8410.52 9340.19 626.655,18 45 46,stand,22.9559 -100.552 0,,
|
||||
-8552.34 9457.02 626.851,13 18 44 46,stand,19.8193 -6.73947 0,,
|
||||
-8543.69 9334.13 624.394,13 44 45,stand,44.0112 11.1408 0,,
|
||||
-9066.53 9340.27 624.125,11 12 48 51,stand,42.7808 -82.4408 0,,
|
||||
-9094.9 9575.77 624.125,47 49 51,stand,30.2344 -90.3619 0,,
|
||||
-9048.45 9880.92 624.125,10 15 48 50,stand,51.2897 -104.172 0,,
|
||||
-9197.19 9715.21 624.125,49,stand,24.8621 18.9411 0,,
|
||||
-9258.77 9451.15 624.125,47 48,stand,26.0925 -117.311 0,,
|
||||
-9541.6 9936.4 616.125,6 56,stand,13.2166 -70.1306 0,,
|
||||
-9934.47 9839.51 616.125,54 55 56,stand,45.3571 68.7696 0,,
|
||||
-9774.95 10244.2 616.125,6 53,stand,26.0925 62.5019 0,,
|
||||
-10214.4 9852.67 622.125,4 53,stand,16.3531 90.7971 0,,
|
||||
-9711.47 9759.05 622.125,52 53 57,stand,29.339 -4.16867 0,,
|
||||
-9338.9 9771.23 622.125,56 94,stand,19.4843 175.458 0,,
|
||||
-10367.3 10935.2 578.835,5 59,stand,16.7981 115.286 0,,
|
||||
-10465.8 11244.7 508.386,0 58 60,stand,10.3052 -65.1263 0,,
|
||||
-10498.1 11437.4 488.125,59 61,stand,24.7467 43.2813 0,,
|
||||
-9749.34 11824.2 484.125,60 64 69 70,stand,20.0446 114.577 0,,
|
||||
-9320.36 11723.9 508.363,71,stand,24.8621 38.4308 0,,
|
||||
-9689.95 11505.9 502.8,71,stand,18.2538 -131.868 0,,
|
||||
-9876.2 11970 508.125,61 65 67,stand,30.0146 -31.5631 0,,
|
||||
-9677.35 12074 508.125,64 66 68,stand,25.7574 26.5601 0,,
|
||||
-9782.16 12354.8 502.343,65 67 68 74,stand,63.1604 -111.631 0,,
|
||||
-9879.76 12191.2 508.125,64 66,stand,23.0713 53.7732 0,,
|
||||
-9462.31 12189.2 492.125,65 66 69 72 73,stand,12.8815 -155.978 0,,
|
||||
-9520.18 11906.8 482.393,61 68 70 73,stand,23.9667 85.4303 0,,
|
||||
-9625.5 11754.3 505.255,61 69 71,stand,27.1033 -64.8242 0,,
|
||||
-9520.03 11664 500.346,62 63 70,stand,55.5469 -93.0426 0,,
|
||||
-9192.98 12358.7 493.469,68,stand,15.7928 32.7948 0,,
|
||||
-9316.75 12025 481.098,68 69,stand,19.8193 -72.7728 0,,
|
||||
-9755.45 12872 512.125,66 76,stand,28.2184 71.203 0,,
|
||||
-9540.22 13470.7 508.692,76 77 78 86 83,stand,29.2291 88.1165 0,,
|
||||
-9554.34 13053.3 508.88,74 75,stand,60.4742 15.8869 0,,
|
||||
-9605.95 13687.2 519.011,75 78 83 86 89,stand,17.1332 167.625 0,,
|
||||
-9243.24 13633.1 536.257,77 79 83 75,stand,23.9667 144.108 0,,
|
||||
-8974.03 13538.5 515.359,78 80,stand,23.4064 -8.74997 0,,
|
||||
-8940.26 13832.8 517.402,79 81,stand,16.7981 86.3257 0,,
|
||||
-9070.99 13960.5 515.107,80 82 83,stand,15.2325 140.862 0,,
|
||||
-8967.06 14168.1 504.125,81 83,stand,20.3796 52.3944 0,,
|
||||
-9380.52 14143.1 506.199,77 78 81 82 84 85 75,stand,28.7787 -113.724 0,,
|
||||
-9409.66 14339.7 523.565,83,stand,41.5448 92.6319 0,,
|
||||
-10012.3 14293.7 511.876,83 86 89,stand,13.9966 171.354 0,,
|
||||
-10403.2 14351.8 504.125,77 85 87 88 89 75,stand,15.3424 -73.8604 0,,
|
||||
-10603 14379.2 504.125,86,stand,20.7202 -165.464 0,,
|
||||
-10429.3 14512.4 504.125,86,stand,23.291 77.0972 0,,
|
||||
-10440.7 13596.5 518.19,77 85 86,stand,17.4683 -78.4472 0,,
|
||||
-10853.9 11362.1 488.125,91,stand,26.8781 -173.457 0,,
|
||||
-11485.5 11261.4 488.125,90 92,stand,9.85474 -90.5871 0,,
|
||||
-11646.1 10697.9 488.125,91,stand,62.265 44.726 0,,
|
||||
-9309.21 10740.7 622.125,5 94,stand,26.543 -99.2883 0,,
|
||||
-9314.41 10290.8 622.125,6 57 93 95,stand,30.4596 87.6166 0,,
|
||||
-9191.71 10305.7 624.125,7 10 94,stand,39.1937 165.444 0,,
|
||||
-10060.4 8731.67 412.125,97,stand,26.3177 -45.4992 0,,
|
||||
-10074.6 8904.92 402.906,96 98 99,stand,35.5023 20.1221 0,,
|
||||
-10223.9 9021.38 412.125,97,stand,26.4276 -179.291 0,,
|
||||
-8880.39 8849.82 396.039,97 100,stand,25.6476 -1.71322 0,,
|
||||
-8677.08 8831.51 394.971,99 101 102,stand,25.1971 -160.735 0,,
|
||||
-8052.92 8432 400.824,100 102 105,stand,28.3337 -36.0949 0,,
|
||||
-8761.31 8141.75 501.119,100 101 103,stand,27.6636 79.2121 0,,
|
||||
-8283.58 8065.2 438.907,102 104,stand,20.2698 -169.057 0,,
|
||||
-8093.73 7863.82 454.555,103 105,stand,40.6494 32.2895 0,,
|
||||
-7623.66 8049.26 404.174,101 104 106 115,stand,32.1405 15.7166 0,,
|
||||
-7178.03 8682.95 404.125,105 107 114 267,stand,21.0553 47.4451 0,,
|
||||
-6899.02 8631.3 412.262,106 108 267,stand,34.1565 25.8295 0,,
|
||||
-6777.94 8732.32 484.125,107 109,stand,35.1672 -126.243 0,,
|
||||
-6713.43 8669.33 484.125,108 110,stand,25.3125 -103.287 0,,
|
||||
-6882.82 8391.62 484.125,109 112,stand,38.8586 -121.541 0,,
|
||||
-6967.17 8006.54 484.125,112,stand,31.8054 124.267 0,,
|
||||
-7017.1 8225.43 484.125,110 111 113,stand,25.1971 -82.3089 0,,
|
||||
-7101.68 8131.8 484.125,112 232,stand,45.2417 -123.629 0,,
|
||||
-6806.86 9082.11 404.125,106 261,stand,15.7928 38.0024 0,,
|
||||
-7593.49 7544.7 404.125,105 116 117,stand,24.4116 -83.8415 0,,
|
||||
-6831.06 7694.95 338.086,115 223 225 264,stand,21.0553 9.77848 0,,
|
||||
-7650.57 6915.61 397.277,115 128,stand,15.6775 -143.53 0,,
|
||||
-7911.45 5616.16 369.663,124 126,stand,15.0073 84.8535 0,,
|
||||
-7781.39 4458.7 367.507,120 121 125,stand,19.5996 -83.0945 0,,
|
||||
-7647.66 4020.52 370.481,119 129 136,stand,18.5889 -64.7253 0,,
|
||||
-7988.1 4437.98 380.125,119,stand,20.1599 -168.618 0,,
|
||||
-8460.08 4703.89 380.125,125,stand,23.8568 -164.58 0,,
|
||||
-7283.61 5060.52 380.125,124,stand,22.1759 24.9012 0,,
|
||||
-7852.6 5040.56 367.827,118 123 125,stand,25.9827 1.60465 0,,
|
||||
-7804.5 4720.9 364.057,119 122 124,stand,26.4276 -174.473 0,,
|
||||
-7883.99 6003.98 386.152,118 127 128,stand,20.6049 134.094 0,,
|
||||
-8258.52 6011.4 395.124,126,stand,22.7362 72.3896 0,,
|
||||
-7854.26 6389.42 398.025,117 126,stand,75.141 73.4003 0,,
|
||||
-7658.18 3581.7 368.125,120 130 131,stand,23.0713 -169.914 0,,
|
||||
-7960.53 3594.6 372.125,129,stand,20.6049 -168.233 0,,
|
||||
-7724.8 3248.11 368.125,129 132,stand,14.5569 -104.287 0,,
|
||||
-7894.98 2889.42 368.125,131 133,stand,12.8815 -114.032 0,,
|
||||
-8219.38 2264.55 369.491,132 134 135,stand,11.8707 -109.659 0,,
|
||||
-8763.74 1701.04 376.125,133,stand,18.1439 -152.33 0,,
|
||||
-8073.41 2154.02 384.125,133,stand,14.447 -25.3723 0,,
|
||||
-6604.2 3964.26 362.348,120 137 138,stand,14.1119 -4.17416 0,,
|
||||
-6558.88 4210.24 382.294,136,stand,14.1119 82.2827 0,,
|
||||
-6391.27 3911.76 368.127,136 139 140,stand,31.355 1.61563 0,,
|
||||
-6379.3 3584.05 397.922,138,stand,21.1652 -88.3075 0,,
|
||||
-5592.74 3823.09 363.4,138 141 142 143,stand,17.4683 -9.13449 0,,
|
||||
-5651.98 3558.6 376.125,140,stand,28.7842 -86.4013 0,,
|
||||
-5475.59 4021.26 364.733,140,stand,15.4578 157.501 0,,
|
||||
-5375.69 3783.39 364.918,140 144 145,stand,19.7095 -93.537 0,,
|
||||
-5415 3509.82 376.125,143,stand,21.0553 81.7224 0,,
|
||||
-5169.89 3755.79 363.296,143 146 148 221,stand,22.0605 84.7492 0,,
|
||||
-5224.19 3516.57 372.125,145 147,stand,26.543 89.303 0,,
|
||||
-5376.15 3348.06 378.915,146,stand,18.9294 -139.784 0,,
|
||||
-4806.15 3656.09 366.187,145 149 150,stand,14.3372 145.185 0,,
|
||||
-4742.27 3950.74 372.125,148,stand,18.8141 81.1292 0,,
|
||||
-4250.25 3467.7 343.548,148 151 152,stand,14.7821 -20.7415 0,,
|
||||
-4239.02 3910.58 373.856,150,stand,12.0959 -102.342 0,,
|
||||
-3682.82 3030.58 300.852,150 153 159,stand,20.1599 -41.0882 0,,
|
||||
-3213.57 3557.49 327.82,152 154,stand,16.3531 46.4838 0,,
|
||||
-3023.13 3674.64 329.022,153 155,stand,15.4578 38.4198 0,,
|
||||
-2594.27 4188.18 359.002,154 156 157 158,stand,15.6775 45.8136 0,,
|
||||
-3037.33 4662.78 366.014,155,stand,13.6615 137.418 0,,
|
||||
-2282.19 3782.16 351.61,155,stand,18.479 -70.2789 0,,
|
||||
-1816.93 4764.77 382.387,155,stand,7.72888 33.7561 0,,
|
||||
-3131.14 2351.78 245.14,152 160 165,stand,12.7661 100.613 0,,
|
||||
-2956.54 2332.78 260.125,159 161 165,stand,20.8301 10.8057 0,,
|
||||
-2869.51 2393.14 260.125,160 162 164,stand,22.0605 36.8982 0,,
|
||||
-2632.1 2530.93 260.125,161 163,stand,20.1599 30.0647 0,,
|
||||
-2466.92 2353.63 260.125,162 164,stand,28.894 -61.6491 0,,
|
||||
-2661.87 2215.78 260.125,161 163,stand,25.5322 -155.269 0,,
|
||||
-2578.96 946.958 176.125,159 160 180 181,stand,12.5409 -78.2989 0,,
|
||||
-1282.15 817.729 195.542,167 172,stand,23.4064 -7.74472 0,,
|
||||
-1018.46 742.247 191.245,166 168,stand,17.2485 -21.5161 0,,
|
||||
-505.086 801.988 190.12,167 169 170 171,stand,20.1599 -4.27304 0,,
|
||||
25.9743 818.832 190.599,168,stand,15.7928 -0.466275 0,,
|
||||
-496.089 258.89 190.093,168,stand,21.9507 -94.6026 0,,
|
||||
-539.93 1194.96 195.047,168,stand,14.3372 83.4528 0,,
|
||||
-2271.72 591.919 176.125,166 173 179 180,stand,26.3177 108.348 0,,
|
||||
-2162.42 330.609 190.125,172 174,stand,26.0925 -81.886 0,,
|
||||
-2142.63 82.5133 190.125,173 175 179,stand,21.3904 -79.425 0,,
|
||||
-2119.27 -38.943 190.125,174 176 178,stand,32.7008 -83.2318 0,,
|
||||
-2093.06 -231.046 190.125,175 177,stand,36.3977 -91.6308 0,,
|
||||
-2219.38 -243.21 184.125,176 178 203,stand,31.5802 -177.753 0,,
|
||||
-2263.46 -51.0418 184.125,175 177 179,stand,34.3817 95.7959 0,,
|
||||
-2284.77 67.1852 184.125,172 174 178,stand,36.2823 34.4263 0,,
|
||||
-2613.99 541.131 175.973,165 172 181 188 192 204,stand,39.4189 72.84 0,,
|
||||
-2820.29 874.179 160.18,165 180 182,stand,22.9559 26.67 0,,
|
||||
-2993.51 1292.22 160.125,181 183 187,stand,24.4116 166.949 0,,
|
||||
-3545.71 2265.64 160.125,182 184,stand,14.447 127.755 0,,
|
||||
-4116.74 2751.95 160.125,183 185,stand,14.8975 144.218 0,,
|
||||
-4607.67 2925.92 160.125,184 186,stand,20.3851 179.16 0,,
|
||||
-5779.26 2923.16 160.125,185,stand,22.7362 -177.819 0,,
|
||||
-3374.85 1239.56 161.956,182,stand,25.0873 -162.581 0,,
|
||||
-2655.05 -84.3585 176.125,180 189 191,stand,22.511 90.6214 0,,
|
||||
-2617.02 -577.885 176.125,188 190 201 202 203 204,stand,22.7362 -63.3246 0,,
|
||||
-2846.4 -442.608 184.125,189 191 194,stand,28.559 13.5688 0,,
|
||||
-2848.91 -90.4745 183.825,188 190 192,stand,30.3497 17.1558 0,,
|
||||
-2886.29 389.332 180.125,180 191,stand,22.9559 93.3075 0,,
|
||||
-4018.51 -119.137 184.125,194,stand,17.8088 -94.9102 0,,
|
||||
-4043.8 -607.785 176.125,190 193 195 199,stand,30.1245 52.356 0,,
|
||||
-9652.59 -708.017 176.125,194,stand,12.5464 41.6004 0,,
|
||||
-4874.25 -153.974 184.125,197,stand,30.3497 -9.57394 0,,
|
||||
-4845.03 -461.506 184.125,196 198 200,stand,35.1672 -11.8152 0,,
|
||||
-4161.78 -478.044 192.125,197 199,stand,53.7561 -109.022 0,,
|
||||
-4151.54 -691.991 176.125,194 198 200 201,stand,43.4509 -77.6672 0,,
|
||||
-4815.14 -739.202 176.125,197 199,stand,35.8374 -28.7231 0,,
|
||||
-3309.4 -726.378 176.125,189 199,stand,14.0021 3.59867 0,,
|
||||
-2586.49 -2378.66 176.125,189,stand,22.1759 -87.2528 0,,
|
||||
-2198.89 -409.339 184.125,177 189 205 207,stand,84.7748 -23.4167 0,,
|
||||
-2384.77 -551.684 176.125,180 189 205,stand,24.1907 98.1964 0,,
|
||||
-2214.84 -621.669 176.125,203 204 206,stand,76.2604 143.103 0,,
|
||||
-1812.28 -655.69 176.123,205 207 208 220,stand,19.5984 1.07821 0,,
|
||||
-1786.13 -401.508 184.125,203 206 211,stand,25.0861 -3.06364 0,,
|
||||
350.155 -713.732 176.125,206 209,stand,18.9282 -16.5768 0,,
|
||||
3560.72 -689.942 176.125,208,stand,28.5577 -12.435 0,,
|
||||
-716.996 -470.642 188.125,211 213,stand,24.5258 174.47 0,,
|
||||
-1136.99 -467.338 188.125,207 210 212,stand,35.7263 93.1711 0,,
|
||||
-1131.18 -239.577 188.125,211,stand,41.8842 33.4824 0,,
|
||||
-712.991 -684.41 176.125,210 214,stand,49.7229 -86.9772 0,,
|
||||
-691.819 -903.401 176.125,213 215,stand,55.0952 -94.2557 0,,
|
||||
-692.775 -1154.88 -15.875,214 216 217,stand,57.3364 -91.3388 0,,
|
||||
3562.96 -1184.89 -15.875,215,stand,22.2845 -138.52 0,,
|
||||
-1696.07 -1183.03 -15.875,215 218 219,stand,26.2067 33.6801 0,,
|
||||
-2149.9 -1181.02 -15.875,217,stand,24.8608 -132.021 0,,
|
||||
-1723.89 -1037.47 64.9171,217 220,stand,14.671 89.1501 0,,
|
||||
-1729.99 -873.24 176.125,206 219,stand,26.2067 69.5505 0,,
|
||||
-5160.98 4239.9 379.318,145 222,stand,22.2845 69.0781 0,,
|
||||
-4839.48 4583.06 374.338,221,stand,33.9301 17.338 0,,
|
||||
-6759.99 6441.28 338.555,116 224,stand,10.7489 89.6829 0,,
|
||||
-6269.11 6385.75 338.716,223,stand,24.0753 -12.6767 0,,
|
||||
-6747.06 7974.04 338.978,116 226,stand,24.3005 13.3884 0,,
|
||||
-6592.91 8028.66 337.844,225 227,stand,22.5098 -169.787 0,,
|
||||
-6538.73 8258.36 338.252,226 228 233,stand,15.451 -146.155 0,,
|
||||
-6525.37 8393.38 348.125,227 229,stand,19.7083 144.856 0,,
|
||||
-6620.84 8460.7 348.125,228 230,stand,19.9335 -151.868 0,,
|
||||
-6810.98 8282.81 348.125,229 231,stand,23.0701 -133.839 0,,
|
||||
-7028.32 7950.29 348.125,230 232,stand,33.0347 -132.164 0,,
|
||||
-7173.58 8025.88 420.125,113 231,stand,37.0667 122.01 0,,
|
||||
-6168.49 8665.86 339.079,227 234 262,stand,20.6036 135.337 0,,
|
||||
-5812.18 8880.1 339.287,233 235,stand,25.6464 -140.481 0,,
|
||||
-5009.83 8219.37 338.996,234 236 237,stand,19.483 -49.5468 0,,
|
||||
-4467.74 8157.37 340.979,235 238,stand,14.3359 0.506916 0,,
|
||||
-5045.66 7654.71 338.893,235,stand,23.7402 -89.158 0,,
|
||||
-3897.52 8184.73 340.125,236 239 241,stand,15.6763 100.433 0,,
|
||||
-3299.29 8220.28 340.125,238 240,stand,14.8907 18.0136 0,,
|
||||
-2898.98 8604.6 340.125,239,stand,45.9106 -106.401 0,,
|
||||
-3954.77 8627.91 360.125,238 242 243,stand,30.6836 99.1696 0,,
|
||||
-4233.4 8462.47 364.125,241,stand,17.6923 21.6007 0,,
|
||||
-4056.06 8867.54 360.125,241 244 245,stand,20.8289 -8.6392 0,,
|
||||
-3583.76 9064.06 422.381,243,stand,18.1427 -35.9622 0,,
|
||||
-4458 9125 384.928,243 246 247,stand,14.8907 148.366 0,,
|
||||
-4742.63 9073.09 394.801,245,stand,28.2172 143.214 0,,
|
||||
-4721.09 9960.8 404.125,245 248 255,stand,20.8289 97.5217 0,,
|
||||
-4021.23 10038.5 404.125,247 249 252,stand,15.5664 0.0949287 0,,
|
||||
-4016.84 10187.9 412.125,248 251,stand,29.563 152.508 0,,
|
||||
-3800.82 10393.7 412.125,251,stand,33.1445 -3.93705 0,,
|
||||
-4275.84 10273.1 412.125,249 250,stand,27.0966 9.80135 0,,
|
||||
-3162.56 10001.3 404.125,248 253 254,stand,12.9901 4.76412 0,,
|
||||
-2612.57 9655.49 404.125,252,stand,19.5984 -30.2933 0,,
|
||||
-2684.26 10685.3 404.125,252,stand,18.6975 65.09 0,,
|
||||
-5482.51 9867.27 404.111,247 256 260,stand,18.3624 -165.156 0,,
|
||||
-5598.26 10043 414.125,255 257,stand,20.3784 -163.03 0,,
|
||||
-5991.94 9822.84 414.125,256 258,stand,25.3058 -158.998 0,,
|
||||
-6079.95 9826.29 414.125,257 259,stand,31.1285 -147.688 0,,
|
||||
-6176.27 9684.92 412.125,258 260,stand,30.3485 -110.955 0,,
|
||||
-6214.76 9489.71 404.125,255 259 261,stand,17.2418 -153.395 0,,
|
||||
-6649.73 9197.09 404.125,114 260 262 263,stand,22.8448 -83.0276 0,,
|
||||
-6338.84 8860.9 412.125,233 261,stand,22.1692 1.03975 0,,
|
||||
-6320.81 9014.52 412.125,261,stand,23.0646 116.72 0,,
|
||||
-6526.1 7512.61 348.125,116,stand,25.0806 20.513 0,,
|
||||
-6721.88 8768.77 416.288,266,stand,30.9088 129.514 0,,
|
||||
-6803.5 8827.22 412.882,265 267,stand,34.0399 -130.923 0,,
|
||||
-6904.74 8710.52 412.125,106 107 266,stand,50.6183 -123.864 0,,
|
||||
|
@@ -0,0 +1,178 @@
|
||||
177
|
||||
2043 3223 48.125,1,stand,,,
|
||||
1831.54 3198.69 48.125,0 2 141,stand,,,
|
||||
1771.53 3109.12 48.125,1 3 4,stand,,,
|
||||
1614.05 3055.79 48.125,2 4 5 48 15,stand,,,
|
||||
1802.37 2907.46 48.125,3 15 52 2 48,stand,,,
|
||||
1294.6 2914.98 48.125,3 6 133 47,stand,,,
|
||||
1010.56 2856.75 48.125,5 47 131 132,stand,,,
|
||||
1152.23 2441.07 48.1784,8 8 131,stand,,,
|
||||
1113.75 2379.53 48.4586,7 7 9,stand,,,
|
||||
1283.64 2192.96 49.2232,8 10 11,stand,,,
|
||||
1155.48 1964.01 48.4915,9 11 16 43 170,stand,,,
|
||||
1396.81 2078.67 48.125,9 12 10,stand,,,
|
||||
1568.91 2137.36 48.125,11 13,stand,,,
|
||||
1811.1 2217.06 48.125,12 14 148,stand,,,
|
||||
1782.95 2464.88 48.125,13 15 142,stand,,,
|
||||
1746.15 2627.32 48.1104,14 4 48 49 52 3,stand,,,
|
||||
988.8 1759.26 39.3681,10 17 43 168,stand,,,
|
||||
898.079 1482.12 48.0862,16 18 38,stand,,,
|
||||
875.185 1205.34 48.0212,17 19 82,stand,,,
|
||||
874.6 969.342 48.125,18 20 28 36 82,stand,,,
|
||||
1099.8 876.364 48.125,19 21 26 27,stand,,,
|
||||
1418.52 982.567 48.125,20 22 26 23 164,stand,,,
|
||||
1591.97 1018.84 48.125,21 23 80 26,stand,,,
|
||||
1591.72 729.26 48.125,22 24 26 21,stand,,,
|
||||
1565.03 553.248 48.125,23 25 79,stand,,,
|
||||
1339.89 548.266 49.4065,24 26 78 93,stand,,,
|
||||
1350.5 803.367 48.125,21 25 23 20 22 92,stand,,,
|
||||
1013.83 729.909 48.125,20 28 36 92,stand,,,
|
||||
890.876 723.648 48.8701,27 33 34 19,stand,,,
|
||||
591.601 364.798 60.875,30 125,stand,,,
|
||||
602.413 491.391 60.4593,29 31 32,stand,,,
|
||||
723.719 494.235 59.7507,30 32,stand,,,
|
||||
705.415 640.985 51.0084,31 33 30,stand,,,
|
||||
820.615 690.08 48.804,32 28 36,stand,,,
|
||||
906.734 636.255 49.8304,28,stand,,,
|
||||
570.52 879.728 49.125,36 126 127,stand,,,
|
||||
730.906 864.001 49.125,35 19 33 27,stand,,,
|
||||
586.109 1521.44 53.6003,38 39 128,stand,,,
|
||||
797.224 1536.13 48.67,37 17,stand,,,
|
||||
390.375 1611.66 58.9374,37 40,stand,,,
|
||||
321.187 1847.62 50.6148,39 41,stand,,,
|
||||
394.033 2072.21 56.2713,40 42 44,stand,,,
|
||||
632.933 2021.41 50.9029,41 43,stand,,,
|
||||
854.963 2005.5 53.47,42 10 16 129,stand,,,
|
||||
471.238 2366.12 59.7767,41 45,stand,,,
|
||||
532.644 2551.39 63.9027,44 46 130,stand,,,
|
||||
834.357 2567.29 54.4027,45 47 129,stand,,,
|
||||
989.059 2683.33 48.125,46 6 131 5,stand,,,
|
||||
1623.82 2835.06 48.125,3 15 4,stand,,,
|
||||
2056.03 2972.15 48.125,15 50,stand,,,
|
||||
2112.76 2853.73 48.125,49 51 52 153,stand,,,
|
||||
2284.9 2602.65 48.0569,50 53 59 151 153,stand,,,
|
||||
1954.6 2722.9 48.125,15 50 4,stand,,,
|
||||
2149.56 2278.61 48.0859,51 54 145 150 151,stand,,,
|
||||
2355.04 1878.48 47.5598,53 55 56,stand,,,
|
||||
2557.16 1988.49 50.9365,54 57 56 58,stand,,,
|
||||
2460.31 1613.44 52.476,54 57 55 163,stand,,,
|
||||
2744.78 1723.83 50.9572,55 56 162,stand,,,
|
||||
2435.8 2271.85 48.125,55 151 159,stand,,,
|
||||
2470.18 2623.46 47.3385,51 60 66,stand,,,
|
||||
2486.87 2753.57 48.0464,59 71 71 152,stand,,,
|
||||
2928.79 2260.74 48.125,64 65 159,stand,,,
|
||||
3014.42 2090.28 54.4085,63 157 158,stand,,,
|
||||
2997.03 2145.99 52.2499,62 64,stand,,,
|
||||
2972.71 2205.98 49.4658,63 61,stand,,,
|
||||
2832.97 2503.88 48.0374,61 67,stand,,,
|
||||
2747.8 2689.17 48.125,67 59 73,stand,,,
|
||||
2779.92 2589.36 48.125,65 66,stand,,,
|
||||
2381.92 3499.16 52.125,69,stand,,,
|
||||
2442.63 3356.5 52.125,68 70,stand,,,
|
||||
2474.98 3242.92 52.125,69 71,stand,,,
|
||||
2553.66 3031.6 48.125,70 60 72 74 60 152,stand,,,
|
||||
2721.51 2974.06 48.1127,71 73,stand,,,
|
||||
2913.97 2904.22 48.125,72 74 76 77 66 156,stand,,,
|
||||
2939.03 3162.09 48.125,73 71 77 154,stand,,,
|
||||
3325.14 2975.96 50.1482,76 155,stand,,,
|
||||
3140.22 2928.42 48.125,75 73 77,stand,,,
|
||||
3032.11 2982.09 48.125,76 74 73,stand,,,
|
||||
1301.13 432.602 54.6113,25,crouch,5.18005 58.0861 0,,
|
||||
1642.13 599.138 48.125,24,crouch,6.55884 151.327 0,,
|
||||
1616.88 1068.86 48.125,22,crouch,5.87219 -141.162 0,,
|
||||
1183.1 1095.78 48.125,82 164,stand,25.7245 169.982 0,,
|
||||
1055.42 1105.61 48.125,81 18 19 83,stand,26.7627 168.427 0,,
|
||||
1041.71 1237.6 57.125,82 84,stand,44.8956 80.2016 0,,
|
||||
1097.49 1352.93 58.125,83 85 91,stand,17.6111 -10.2763 0,,
|
||||
1291.36 1393.73 56.125,84 86 90 166 172,stand,24.3457 -14.0721 0,,
|
||||
1495.63 1254.78 56.125,85 87 88 89 166,stand,11.7389 140.637 0,,
|
||||
1626.25 1396.31 81.225,86,crouch,10.014 -147.364 0,,
|
||||
1578.98 1128.61 76.125,86,crouch,7.42676 134.941 0,,
|
||||
1482.93 1140.57 56.125,86,crouch,3.62549 -92.8001 0,,
|
||||
1244.9 1452.9 56.125,85,crouch,3.10913 96.4339 0,,
|
||||
1033.2 1475.59 56.125,84,crouch,6.73455 -50.8436 0,,
|
||||
1269.34 769.496 48.125,26 27 93,stand,35.7439 -82.9621 0,,
|
||||
1306.57 645.726 48.1786,92 25 94,stand,32.8051 84.1729 0,,
|
||||
1232.2 613.306 56.125,93 95,stand,21.0662 176.722 0,,
|
||||
1075.71 621.073 112.125,94 96,stand,36.7767 -88.1367 0,,
|
||||
1083.83 424.106 112.125,95 97 100,stand,27.4548 172.058 0,,
|
||||
982.741 420.085 112.125,96 98 106,stand,33.327 128.722 0,,
|
||||
987.97 515.063 112.125,97 99 111,stand,15.8862 92.116 0,,
|
||||
871.125 424.125 119.125,98,crouch,8.28911 32.3779 0,,
|
||||
1188.95 420.009 112.125,96 101 112,stand,22.9668 -71.2232 0,,
|
||||
1195.73 303.274 112.125,100 102 110,stand,44.0276 -105.237 0,,
|
||||
1181.58 229.643 113.125,101 103,stand,52.4926 -97.2938 0,,
|
||||
1174.41 95.9936 112.125,102 104 109,stand,29.8718 162.731 0,,
|
||||
994.787 104.563 112.125,103 105 108,stand,26.7626 110.93 0,,
|
||||
976.899 229.154 113.125,104 106,stand,23.9996 91.4184 0,,
|
||||
975.67 340.479 112.125,105 97 107,stand,25.9002 87.7929 0,,
|
||||
809.563 329.102 112.125,106 113,stand,42.8191 91.7645 0,,
|
||||
945.125 39.1313 112.125,104,crouch,8.97576 59.992 0,,
|
||||
1209.5 63.6995 112.125,103,crouch,6.21819 121.12 0,,
|
||||
1262.52 247.487 112.125,101,crouch,5.0042 133.029 0,,
|
||||
876.071 531.984 112.125,98,crouch,9.6679 -43.6091 0,,
|
||||
1259.22 484.584 112.125,100,crouch,4.66363 -163.772 0,,
|
||||
816.378 534.319 -7.875,107 114,stand,37.6391 72.2528 0,,
|
||||
951.472 530.797 -7.875,113 115 124,stand,14.848 -75.0355 0,,
|
||||
1171.17 387.431 -7.875,114 116 123,stand,12.431 -88.8453 0,,
|
||||
1162.67 244.137 -7.875,115 117 119,stand,27.279 101.768 0,,
|
||||
1163.59 66.1069 -7.875,116 118 121,stand,18.3032 -168.271 0,,
|
||||
1009.17 84.2364 -7.875,117 119 120,stand,20.5444 89.8529 0,,
|
||||
1035.14 238.347 -7.875,118 116 122,stand,31.2505 53.2519 0,,
|
||||
949.916 43.6078 -7.875,118,crouch,6.04241 43.4081 0,,
|
||||
1262.33 39.7411 -7.875,117,crouch,5.69634 131.293 0,,
|
||||
945.125 272.875 -7.875,119,crouch,6.21819 -4.07477 0,,
|
||||
1262.88 487.593 -7.875,115,crouch,5.0042 -169.133 0,,
|
||||
938.828 321.298 -7.875,114,crouch,-7.94316 120.071 0,,
|
||||
579.125 335.547 61.96,29,crouch,7.94304 68.4515 0,,
|
||||
444.996 813.111 49.125,35,crouch,3.97149 12.1685 0,,
|
||||
528.305 957.345 49.125,35,crouch,6.04241 -33.9356 0,,
|
||||
529.413 1430.79 57.3276,37,crouch,7.08062 58.9593 0,,
|
||||
958.662 2266.31 59.9619,43 46,stand,18.8195 94.8736 0,,
|
||||
407.491 2603.23 64.125,45,crouch,4.66363 -35.4792 0,,
|
||||
1080.75 2637.27 48.0458,47 7 6,stand,40.0561 -49.1242 0,,
|
||||
853.172 2925.02 48.0251,6,crouch,5.69634 -28.2337 0,,
|
||||
1394.91 2711.82 47.4564,5 134,stand,34.876 178.095 0,,
|
||||
1233.42 2661.8 118.125,133 135,stand,63.7151 -166.892 0,,
|
||||
1219.2 2726.65 118.125,134 136,stand,51.2786 101.421 0,,
|
||||
1396.52 2784.92 200.125,135 137 138,stand,52.3168 3.00592 0,,
|
||||
1489.57 2841.92 200.125,136,crouch,17.4407 10.603 0,,
|
||||
1476.54 2773.26 200.125,136 139,stand,28.8335 -43.6146 0,,
|
||||
1619.69 2381.51 200.125,138 140,stand,40.5779 -59.8469 0,,
|
||||
1624.04 2476.04 200.125,139,crouch,16.7486 30.631 0,,
|
||||
1826.85 3288.65 46.3117,1,crouch,6.04241 -117.849 0,,
|
||||
1890.18 2519.43 48.0139,14 143,stand,54.5635 24.0887 0,,
|
||||
1986.16 2548.99 48.0001,142 144 147,stand,22.7911 -70.3608 0,,
|
||||
2035.59 2411.14 48.0203,143 145 146,stand,24.6917 -68.6359 0,,
|
||||
2063.87 2342.6 48.0271,144 53 150,stand,34.7057 -62.934 0,,
|
||||
1985.63 2342.12 48.125,144,crouch,8.63518 67.5891 0,,
|
||||
2042.3 2624.27 48.125,143,crouch,8.80547 -113.01 0,,
|
||||
1930.14 2262.65 48.125,13 149,stand,22.445 -147.369 0,,
|
||||
1972.94 2279.27 48.125,148,climb,10.36 17.5244 0,,
|
||||
2021.86 2294.01 66.125,145 53,climb,17.7813 -163.256 0,,
|
||||
2366.95 2415.52 48.0149,53 51 58,stand,22.9614 23.9184 0,,
|
||||
2396.03 2925.77 48.125,71 153 60,stand,66.3025 -155.362 0,,
|
||||
2289.69 2842.54 48.125,152 50 51,stand,24.516 -138.783 0,,
|
||||
2982.53 3314.45 44.9166,74,crouch,6.90491 -114.597 0,,
|
||||
3331.15 3052.92 49.8067,75,crouch,6.38855 -139.975 0,,
|
||||
2950.37 2725.18 48.125,73,crouch,5.52612 115.737 0,,
|
||||
2901.37 2036.54 48.9315,62,crouch,7.08069 73.0882 0,,
|
||||
3036.15 2081.71 55.1824,62,crouch,10.014 127.652 0,,
|
||||
2732.94 2254.07 48.0258,58 61 160,stand,25.3839 -150.16 0,,
|
||||
2772.69 2091.46 48.125,159 161,stand,12.9474 -76.2654 0,,
|
||||
2738.01 2003.28 48.125,160,crouch,6.73462 89.8368 0,,
|
||||
2848.45 1677.01 57.6701,57,crouch,8.63525 151.47 0,,
|
||||
2404.81 1525.48 54.3341,56,crouch,8.28918 79.8118 0,,
|
||||
1301.11 1044.74 48.125,21 81 165,stand,35.5682 99.318 0,,
|
||||
1299.36 1104.24 56.125,164 167,climb,11.9147 83.6076 0,,
|
||||
1328.04 1268.42 56.125,167 85 86,stand,21.7584 -91.1299 0,,
|
||||
1305.25 1146.11 56.125,165 166,climb,10.8765 -94.5851 0,,
|
||||
1249.85 1557.53 58.3684,16 169 171 173,stand,18.1274 151.431 0,,
|
||||
1323.65 1721.47 52.1055,168 170,stand,43.5114 115.863 0,,
|
||||
1273.5 1849.7 52.3302,169 10,stand,33.1512 125.185 0,,
|
||||
1243.54 1506.63 56.125,168 172,climb,11.7389 -95.9973 0,,
|
||||
1240.92 1464.17 56.125,171 85,climb,9.15161 84.9475 0,,
|
||||
1418.15 1545.38 60.1048,168 174,stand,24.516 -1.5652 0,,
|
||||
1540.88 1558.42 62.043,173 175 176,stand,25.0378 13.4586 0,,
|
||||
1630.62 1467.86 53.1559,174,crouch,7.08069 146.064 0,,
|
||||
1591.16 1683.22 50.0567,174,crouch,4.14185 -135.203 0,,
|
||||
|
@@ -0,0 +1,158 @@
|
||||
157
|
||||
-822.026 1464.92 -287.875,1 99,stand,,,
|
||||
-807.557 1208.11 -287.875,0 2 98,stand,,,
|
||||
-633.393 1175.46 -287.875,1 3 4 19,stand,,,
|
||||
-618.753 1423.69 -281.817,2 100,stand,,,
|
||||
-413.421 1177.76 -287.875,2 5 16 17,stand,,,
|
||||
-412.043 1388.66 -279.875,4 8 103 102,stand,,,
|
||||
-59.4128 1398.99 -279.875,7 102 109 116,stand,,,
|
||||
-59.5178 1502.88 -279.875,6 110 111 113 116,stand,,,
|
||||
-336.931 1544.3 -279.875,5 102 104 105,stand,,,
|
||||
193.373 1490.52 -279.875,10 13 113 116 117 118,stand,,,
|
||||
317.11 1528.68 -279.875,9 119,stand,,,
|
||||
514.47 1434.1 -274.875,12 119,stand,,,
|
||||
544.192 1170.3 -279.875,11 13 118 120 121,stand,,,
|
||||
218.613 1165.59 -279.875,12 9 14,stand,,,
|
||||
206.395 922.298 -287.875,13 15 76,stand,,,
|
||||
-42.9216 887.362 -286.875,14 16 74,stand,,,
|
||||
-121.647 1092.64 -287.875,15 4 101,stand,,,
|
||||
-396.971 699.427 -287.875,4 18 27,stand,,,
|
||||
-765.391 681.307 -287.875,17 19 21 20,stand,,,
|
||||
-706.78 959.375 -287.875,18 20 2 97,stand,,,
|
||||
-870.255 976.447 -287.875,19 18 97,stand,,,
|
||||
-762.346 386.723 -287.875,18 22 24,stand,,,
|
||||
-666.46 388.308 -287.875,21 23,stand,,,
|
||||
-662.546 79.4598 -287.875,22 24 25,stand,,,
|
||||
-789.253 82.9664 -287.875,23 21 96,stand,,,
|
||||
-429.809 40.5011 -287.875,23 26 27 28,stand,,,
|
||||
-490.843 -183.312 -287.875,25 28 95,stand,,,
|
||||
-370.469 339.632 -287.875,25 17 30,stand,,,
|
||||
-365.774 -61.9152 -286.875,25 29 26,stand,,,
|
||||
-84.0733 -50.8349 -287.875,28 38 41,stand,,,
|
||||
-86.1229 341.97 -286.875,27 31 33 41,stand,,,
|
||||
-77.7785 505.018 -281.875,30 32 73,stand,,,
|
||||
128.436 515.361 -281.875,31 33 72,stand,,,
|
||||
131.953 343.54 -286.875,32 30 72 153,stand,,,
|
||||
533.465 367.281 -287.875,35 37 70 156 155,stand,,,
|
||||
794.653 430.852 -287.875,34 36,stand,,,
|
||||
798.088 -3.39992 -287.875,35 37 42 60,stand,,,
|
||||
558.847 20.4708 -287.875,36 34 38 40,stand,,,
|
||||
190.889 -73.634 -287.875,37 39 29,stand,,,
|
||||
168.666 -173.142 -287.875,38,stand,,,
|
||||
313.625 181.391 -287.875,37 41 155 154,stand,,,
|
||||
-56.1528 118.003 -287.875,40 29 30,stand,,,
|
||||
912.637 32.2351 -287.875,36 43 60 61,stand,,,
|
||||
1104.28 7.5762 -287.875,42 44 50,stand,,,
|
||||
1106.99 -61.6543 -287.875,43 45 60,stand,,,
|
||||
1375.07 -62.9017 -287.875,44 46 48 49,stand,,,
|
||||
1761.68 -76.9641 -287.875,45 47,stand,,,
|
||||
1770.3 236.221 -287.875,46,stand,,,
|
||||
1389.55 11.1926 -287.875,45,stand,,,
|
||||
1352.95 -170.147 -287.875,45,stand,,,
|
||||
1398.28 19.3083 -119.875,43 51,stand,,,
|
||||
1402.31 186.216 -87.875,50 52 59,stand,,,
|
||||
1406.26 556.278 -87.875,51 53 56 57,stand,,,
|
||||
1407.12 786.845 -87.875,52 54 55 58,stand,,,
|
||||
1404.89 927.201 -87.875,53,stand,,,
|
||||
1263.7 777.867 -87.875,53 56,stand,,,
|
||||
1262.11 524.681 -87.875,55 52,stand,,,
|
||||
1584.45 563.578 -87.875,52 58 59,stand,,,
|
||||
1602.14 803.507 -87.875,57 53,stand,,,
|
||||
1594.99 244.26 -87.875,57 51,stand,,,
|
||||
922.266 -68.2416 -287.875,42 44 36,stand,,,
|
||||
921.03 394.481 -287.875,42 62 63,stand,,,
|
||||
1091.15 380.363 -287.875,61,stand,,,
|
||||
918.837 781.016 -287.875,61 64 66,stand,,,
|
||||
930.8 958.611 -287.875,63 65,stand,,,
|
||||
1108.1 958.624 -287.875,64,stand,,,
|
||||
754.225 780.571 -287.875,63 67 68,stand,,,
|
||||
727.501 930.129 -287.875,66 76,stand,,,
|
||||
754.518 686.766 -287.875,66 69,stand,,,
|
||||
520.347 702.355 -286.875,68 70 75 76,stand,,,
|
||||
537.371 584.193 -287.875,69 34 71,stand,,,
|
||||
222.777 594.506 -286.875,70 72 73 75,stand,,,
|
||||
222.779 466.427 -281.875,71 32 33 153,stand,,,
|
||||
-80.4735 590.314 -286.875,71 31 74,stand,,,
|
||||
-34.9286 724.084 -286.875,73 15 75,stand,,,
|
||||
220.997 700.756 -286.875,74 71 69,stand,,,
|
||||
464.972 921.021 -287.875,69 67 14,stand,,,
|
||||
690.868 1568.34 -279.375,126 128 127,stand,,,
|
||||
813.084 1490.26 -279.875,79 124 125,stand,,,
|
||||
944.774 1486.77 -287.875,78 80 81,stand,,,
|
||||
979.596 1235.68 -287.875,79 89 131 133 132 136 135,stand,,,
|
||||
958.313 1594.94 -287.875,79 147 150,stand,,,
|
||||
1186.98 1731.85 -287.875,146 152 151,stand,,,
|
||||
1515.39 1601.26 -287.875,84 85 138 140 139 141,stand,,,
|
||||
1722.41 1589.57 -287.875,83 86 90 85 141,stand,,,
|
||||
1492.46 1752.42 -287.875,83 139 140 84 141,stand,,,
|
||||
1811.79 1464.34 -287.875,84 87,stand,,,
|
||||
1805.57 1117.71 -287.875,86 88 138,stand,,,
|
||||
1454.08 1148.82 -287.875,87 134 138 137,stand,,,
|
||||
1040.99 1051.08 -287.875,80 135 134 148,stand,,,
|
||||
1891.35 1591.54 -238.875,84 142,stand,,,
|
||||
1894.12 1801.08 -203.875,92 94 93 142 145 144,stand,,,
|
||||
1611.59 2160.18 -203.875,91 93 94 143 144,stand,,,
|
||||
1892.79 2481.04 -203.875,92 94 91,stand,,,
|
||||
2229.65 2209.06 -203.875,93 91 92,stand,,,
|
||||
-549.009 -211.935 -277.505,26,crouch,2.76733 32.8491 0,,
|
||||
-787.779 -5.44992 -287.875,24,crouch,2.76733 70.8344 0,,
|
||||
-937.875 817.035 -287.875,20 19,crouch,2.25098 39.4189 0,,
|
||||
-919.56 1196.54 -287.875,1,crouch,4.49768 10.7556 0,,
|
||||
-896.053 1470.49 -287.875,0,crouch,3.63525 -35.0024 0,,
|
||||
-610.599 1490.87 -272.065,3,crouch,3.45947 -96.9873 0,,
|
||||
-42.0148 1158.96 -287.875,16,crouch,0.872192 -140.328 0,,
|
||||
-199.85 1398.21 -279.875,5 8 6 108,stand,13.3032 5.92163 0,,
|
||||
-548.875 1303.13 -279.875,5,crouch,3.1134 23.5382 0,,
|
||||
-319.197 1636.68 -279.875,8,crouch,0.526123 -93.3508 0,,
|
||||
-487.24 1595.45 -279.875,8 106,stand,49.5636 -6.84998 0,,
|
||||
-516.9 1596.7 -279.875,105 107,stand,49.5636 -2.53235 0,,
|
||||
-535.13 1640.87 -279.875,106,crouch,1.04248 -55.3711 0,,
|
||||
-206.539 1524.46 -279.875,102,crouch,4.3219 -94.2188 0,,
|
||||
-134.875 1303.13 -279.875,6,crouch,0.180054 44.4342 0,,
|
||||
-134.875 1611.07 -279.875,7 111,crouch,-0.336304 -31.1957 0,,
|
||||
-33.0874 1624.78 -279.875,110 7 112,stand,14.5117 -33.4369 0,,
|
||||
99.8169 1609.29 -279.875,113 111 114,stand,20.9003 -79.1949 0,,
|
||||
104.509 1499.26 -279.875,7 9 112,stand,24.5258 -17.8967 0,,
|
||||
122.875 1625.38 -279.875,112,crouch,4.49768 -127.024 0,,
|
||||
122.875 1303.13 -279.875,116,crouch,3.63525 89.5001 0,,
|
||||
121.62 1405.7 -279.875,9 7 6 115,stand,73.5632 34.0741 0,,
|
||||
161.125 1604.2 -279.875,9,crouch,4.3219 -59.8535 0,,
|
||||
333.497 1362.26 -275.875,12 9 119,stand,12.9572 -29.1193 0,,
|
||||
403.633 1484.38 -278.875,118 11 10,stand,44.8999 119.196 0,,
|
||||
531.492 1047.03 -279.875,12,crouch,1.90491 78.4534 0,,
|
||||
691.482 1167.78 -278.875,124 12 122 130,stand,30.7385 -178.638 0,,
|
||||
755.894 1107.58 -278.875,121 123 129 130,stand,31.7767 87.7863 0,,
|
||||
824.034 1206.57 -279.875,122 124,stand,30.7385 119.037 0,,
|
||||
749.115 1296.97 -278.875,121 123 78 126,stand,25.7343 -105.595 0,,
|
||||
795.423 1607.08 -279.875,78,crouch,3.80554 -88.8519 0,,
|
||||
699.139 1350.18 -279.875,124 77,stand,25.9045 94.1693 0,,
|
||||
641.125 1620.88 -279.875,77,crouch,4.49768 -70.2026 0,,
|
||||
732.875 1615.88 -279.875,77,crouch,3.1134 -111.473 0,,
|
||||
827.875 1031.13 -279.875,122 130,crouch,2.42126 131.808 0,,
|
||||
641.125 1031.13 -245.875,122 121 129,crouch,7.60132 65.6763 0,,
|
||||
895.816 1020.82 -163.875,132 80,crouch,20.2466 -101.118 0,,
|
||||
929.689 1019.72 -163.875,133 131 80,crouch,22.6636 -93.6969 0,,
|
||||
983.423 1018.35 -163.875,132 80,crouch,18.692 -125.634 0,,
|
||||
1261.43 1131.81 -287.875,137 135 88 89 138,stand,24.5642 179.451 0,,
|
||||
1085.1 1134.05 -287.875,134 89 136 80,stand,31.123 73.2623 0,,
|
||||
1080.04 1290.27 -287.875,135 80 137,stand,28.0194 0.22522 0,,
|
||||
1255.03 1285.83 -287.875,134 136 138 88,stand,32.337 -97.3334 0,,
|
||||
1457.23 1278.98 -287.875,137 88 83 140 87 141 134,stand,30.6067 -26.8835 0,,
|
||||
1390.5 1774.31 -287.875,140 85 83,stand,18.3459 -80.4034 0,,
|
||||
1403.15 1610.3 -287.875,83 139 85 138 149,stand,24.0479 -95.4218 0,,
|
||||
1728.9 1649.52 -287.875,142 84 85 83 138,stand,17.3132 -1.15356 0,,
|
||||
1878.04 1649.34 -239.375,91 90 141,stand,36.1328 -68.6646 0,,
|
||||
1552.99 1935.91 -203.875,92 144,prone,5.56885 -142.399 0,,
|
||||
1624.2 1873.67 -203.875,145 92 143 91,prone,6.0907 -139.812 0,,
|
||||
1682.47 1810.47 -203.875,144 91,prone,7.46948 -148.101 0,,
|
||||
1102.13 1795.88 -287.875,82,crouch,5.39856 -122.042 0,,
|
||||
873.125 1659.88 -287.875,81,crouch,8.33191 -52.63 0,,
|
||||
906.088 1031.92 -287.875,89,crouch,2.98157 -141.031 0,,
|
||||
1256.4 1585.28 -287.875,150 152 140,stand,30.2179 161.878 0,,
|
||||
1135.89 1571.9 -287.875,151 149 81,stand,32.8052 95.0537 0,,
|
||||
1132.12 1721.67 -287.875,82 150,stand,41.4404 1.64246 0,,
|
||||
1252.75 1716.05 -287.875,82 149,stand,39.8859 -105.062 0,,
|
||||
268.105 382.819 -281.875,154 72 33 156,stand,31.7725 -92.9718 0,,
|
||||
263.003 250.245 -286.875,155 40 153,stand,30.2179 4.06494 0,,
|
||||
424.348 268.933 -285.875,34 40 154 156,stand,28.3173 12.7002 0,,
|
||||
418.899 395.865 -286.875,34 153 155,stand,32.2888 3.20251 0,,
|
||||
|
@@ -0,0 +1,387 @@
|
||||
386
|
||||
368 -304 8,1 41 47 54,stand,,,
|
||||
189 -75 8,0 2 31 36 37,stand,,,
|
||||
287 185 8,1 3 34 48 54 55,stand,,,
|
||||
302 404 8,2 4 51 55 6,stand,,,
|
||||
142 412 8,3 5,stand,,,
|
||||
147 713 8,4 6,stand,,,
|
||||
314 720 8,5 7 51 3 56,stand,,,
|
||||
334 908 8,6 8 57 56 52 53,stand,,,
|
||||
218 903 8,7 9 15,stand,,,
|
||||
97 868 8,8 10 15,stand,,,
|
||||
-32 820 8,9 11 13,stand,,,
|
||||
-165 665 8,10 12 13,stand,,,
|
||||
-181 357 8,11,stand,,,
|
||||
-46 616 8,10 14 11,stand,,,
|
||||
-24 407 8,13,stand,,,
|
||||
131 933 8,8 9 16,stand,,,
|
||||
-244 944 128,15 17,stand,,,
|
||||
-231 708 224,16 18,stand,,,
|
||||
-177 657 224,17 19 26 30,stand,,,
|
||||
1 648 224,18 20 29 24,stand,,,
|
||||
204 647 224,19 21 28,stand,,,
|
||||
192 505 224,20 22 24,stand,,,
|
||||
220 339 224,21 23,stand,,,
|
||||
24 345 224,22 24,stand,,,
|
||||
12 486 224,23 25 21 19,stand,,,
|
||||
-70 461 224,24 26 27,stand,,,
|
||||
-175 550 224,25 18,stand,,,
|
||||
-162 370 224,25,stand,,,
|
||||
206 888 224,20 29,stand,,,
|
||||
19 845 224,28 30 19,stand,,,
|
||||
-149 849 224,29 18,stand,,,
|
||||
-106 -45 8,1 32 36,stand,,,
|
||||
-225 0 8,31 33 35,stand,,,
|
||||
-188 205 8,32 34,stand,,,
|
||||
83 216 8,33 2,stand,,,
|
||||
-185 -323 8,32 36,stand,,,
|
||||
-56 -191 8,31 35 1 37,stand,,,
|
||||
132 -296 8,1 36 38 40,stand,,,
|
||||
182 -522 8,37 39 40,stand,,,
|
||||
-7 -597 8,38,stand,,,
|
||||
348 -470 8,38 41 37,stand,,,
|
||||
493 -508 8,40 42 45 0 47,stand,,,
|
||||
639 -623 8,41 43,stand,,,
|
||||
955 -614 8,42 44,stand,,,
|
||||
971 -299 8,43 45,stand,,,
|
||||
642 -268 8,44 46 41 47,stand,,,
|
||||
655 -60 112,45,crouch,,,
|
||||
487 -293 8,0 45 48 41,stand,,,
|
||||
557 32 8,47 49 2 54 55,stand,,,
|
||||
678 287 8,48 50 51 55,stand,,,
|
||||
918 308 8,49,stand,,,
|
||||
625 580 8,49 52 3 6 56 55,stand,,,
|
||||
538 942 8,51 53 56 57 7 58,stand,,,
|
||||
649 1160 8,52 7 58 99,stand,,,
|
||||
390 -9 8,0 2 48 55,stand,,,
|
||||
448 307 8,54 56 51 2 48 3 49,stand,,,
|
||||
451 754 8,55 52 7 51 6,stand,,,
|
||||
281 1090 8,52 7 58 67,stand,,,
|
||||
432 1189 8,53 59 57 52 76,stand,,,
|
||||
506 1508 8,58 60 66 61 76,stand,,,
|
||||
236 1697 8,59 61,stand,,,
|
||||
413 1908 8,60 62 66 65 74 59 76,stand,,,
|
||||
580 2249 8,61 63 65 74 75,stand,,,
|
||||
340 2483 8,62 64 65 74 75,stand,,,
|
||||
433 2789 8,63 75 77 334,stand,,,
|
||||
237 2272 8,63 62 61 74,stand,,,
|
||||
600 1729 8,61 59 76,stand,,,
|
||||
-16 1095 8,57 68,stand,,,
|
||||
-311 1094 8,67 69,stand,,,
|
||||
-365 880 8,68 70,stand,,,
|
||||
-390 882 40,69 71,stand,,,
|
||||
-445 887 1,70 72,stand,,,
|
||||
-480 1146 -124,71 73,stand,,,
|
||||
-467 1278 -167,72 121 122,stand,,,
|
||||
406 2145 8,63 61 62 75 65,stand,,,
|
||||
504 2528 8,62 64 63 74,stand,,,
|
||||
335 1448 8,58 66 61 59,stand,,,
|
||||
322 2894 8,64 78 336 335 348 334,stand,,,
|
||||
52 2876 8,77 79,stand,,,
|
||||
-329 2878 8,78 80 144,stand,,,
|
||||
-350 2716 -38,79 81,stand,,,
|
||||
-18 2716 -150,80 82 128,stand,,,
|
||||
199 2703 -150,81 83,stand,,,
|
||||
389 2642 -167,82 84 129 141,stand,,,
|
||||
691 2689 -150,83 85 141,stand,,,
|
||||
1125 2691 -150,84 86 287,stand,,,
|
||||
1388 2543 -167,85 87 88,stand,,,
|
||||
1413 2702 -167,86,stand,,,
|
||||
1464 2317 -167,86 89,stand,,,
|
||||
1529 2025 -167,88 90 142,stand,,,
|
||||
1409 1662 -167,89 91,stand,,,
|
||||
1333 1388 -167,90 92,stand,,,
|
||||
1133 1397 -167,91 93,stand,,,
|
||||
1122 1259 -150,92 94 118,stand,,,
|
||||
1326 1253 -87,93 95,stand,,,
|
||||
1316 938 8,94 96,stand,,,
|
||||
1087 954 8,95 97 101 98,stand,,,
|
||||
1110 1089 8,96 98,stand,,,
|
||||
898 1101 8,97 99 100 101 96,stand,,,
|
||||
783 1150 8,98 53 100,stand,,,
|
||||
735 1011 8,99 101 98 102,stand,,,
|
||||
903 953 8,100 96 98,stand,,,
|
||||
733 827 32,100 103,stand,,,
|
||||
1103 822 144,102 104 115,stand,,,
|
||||
1018 946 144,103 105 109 110,stand,,,
|
||||
927 1156 144,104 106 109 110,stand,,,
|
||||
745 1164 144,105 107,stand,,,
|
||||
730 983 144,106 108,stand,,,
|
||||
723 834 144,107,stand,,,
|
||||
899 1003 144,105 104,stand,,,
|
||||
1052 1180 144,104 111 105,stand,,,
|
||||
1211 1157 144,110 112 117,stand,,,
|
||||
1404 1145 144,111 113,stand,,,
|
||||
1377 995 144,112 114,stand,,,
|
||||
1391 840 144,113 115,stand,,,
|
||||
1245 841 144,114 103 116,stand,,,
|
||||
1208 953 144,115 117,stand,,,
|
||||
1231 1081 144,116 111,stand,,,
|
||||
722 1273 -150,93 119,stand,,,
|
||||
423 1360 -167,118 120 135 136,stand,,,
|
||||
119 1277 -167,119 121,stand,,,
|
||||
-176 1296 -167,120 73,stand,,,
|
||||
-690 1327 -167,73 123,stand,,,
|
||||
-772 1618 -167,122 124,stand,,,
|
||||
-894 1921 -167,123 125 143,stand,,,
|
||||
-753 2317 -167,124 126,stand,,,
|
||||
-696 2600 -167,125 127,stand,,,
|
||||
-357 2608 -167,126 128,stand,,,
|
||||
-61 2609 -167,127 81,stand,,,
|
||||
376 2516 -167,83 130 141,stand,,,
|
||||
117 2358 -167,129 131,stand,,,
|
||||
105 2181 -167,130 132 143,stand,,,
|
||||
425 2026 -167,131 133 138 139,stand,,,
|
||||
637 1859 -167,132 134,stand,,,
|
||||
761 1679 -167,133 135 142,stand,,,
|
||||
548 1504 -167,134 119,stand,,,
|
||||
242 1520 -167,119 137,stand,,,
|
||||
86 1744 -167,136 138 143,stand,,,
|
||||
266 1915 -167,137 132,stand,,,
|
||||
675 2158 -167,132 140 142,stand,,,
|
||||
753 2327 -167,139 141,stand,,,
|
||||
566 2508 -167,140 129 83 84,stand,,,
|
||||
1080 2009 -167,139 134 89,stand,,,
|
||||
-396 1906 -167,131 137 124,stand,,,
|
||||
-474 2889 8,79 145,stand,,,
|
||||
-631 2887 8,144 146 385,stand,,,
|
||||
-667 3105 8,145 147,stand,,,
|
||||
-639 3350 8,146 148 154 150,stand,,,
|
||||
-775 3353 8,147 149,stand,,,
|
||||
-774 3607 8,148 150,stand,,,
|
||||
-618 3641 8,149 151 154 147,stand,,,
|
||||
-490 4058 8,150 152 153,stand,,,
|
||||
-312 4035 16,151 155 161 160,stand,,,
|
||||
-452 3784 8,151 154,stand,,,
|
||||
-458 3540 24,153 147 150,stand,,,
|
||||
-84 4026 16,152 156 159 157 160,stand,,,
|
||||
100 4044 16,155 157 216,stand,,,
|
||||
92 3853 16,156 158 155,stand,,,
|
||||
4 3746 16,157 159,stand,,,
|
||||
-53 3875 16,158 155 160,stand,,,
|
||||
-200 3931 16,159 161 152 155,stand,,,
|
||||
-344 3906 16,160 152 162,stand,,,
|
||||
-344 3742 40,161 163,stand,,,
|
||||
0 3742 152,162 164 166,stand,,,
|
||||
44 3888 152,163 165 166,stand,,,
|
||||
43 4051 152,164 166 169,stand,,,
|
||||
-145 3943 152,165 167 164 163,stand,,,
|
||||
-319 4055 152,166 168,stand,,,
|
||||
-325 3862 152,167,stand,,,
|
||||
63 4163 152,165 170,stand,,,
|
||||
-163 4153 152,169 171,stand,,,
|
||||
-162 4397 152,170 172,stand,,,
|
||||
-316 4370 152,171 173 174 173 176,stand,,,
|
||||
-359 4158 152,172 172 176 177 174,stand,,,
|
||||
-514 4391 152,172 175 173 179,stand,,,
|
||||
-640 4424 152,174,stand,,,
|
||||
-227 4192 152,173 172,stand,,,
|
||||
-654 4159 88,173 178,stand,,,
|
||||
-643 4538 -39,177 201 194 209 321,stand,,,
|
||||
-505 4768 152,174 180,stand,,,
|
||||
-500 4957 152,179 181 183,stand,,,
|
||||
-508 5284 104,180 182,stand,,,
|
||||
-228 5281 8,181 190 305 338,stand,,,
|
||||
-241 4958 208,180 184,stand,,,
|
||||
-236 5176 208,183 185 186,stand,,,
|
||||
-265 5320 208,184,stand,,,
|
||||
17 5157 304,184 187 188,stand,,,
|
||||
-41 5016 304,186 188,stand,,,
|
||||
158 5045 304,187 186 189,stand,,,
|
||||
264 5035 304,188,stand,,,
|
||||
-272 5426 8,182 191 306 217 307,stand,,,
|
||||
-519 5427 8,190 192 217 307,stand,,,
|
||||
-821 5388 8,191 193,stand,,,
|
||||
-819 5116 8,192 194,stand,,,
|
||||
-823 4752 -39,193 195 201 178 321,stand,,,
|
||||
-1033 4765 -39,194 196 200 202 203,stand,,,
|
||||
-1385 4751 -39,195 197 201 203 208,stand,,,
|
||||
-1637 4705 -39,196 198 199 200 207 208,stand,,,
|
||||
-1835 4573 -39,197 199 206,stand,,,
|
||||
-1664 4569 -39,198 200 197 206,stand,,,
|
||||
-1431 4500 -39,199 201 195 205 197,stand,,,
|
||||
-1064 4502 -39,200 178 196 194 204,stand,,,
|
||||
-1022 5032 19,203 195,stand,,,
|
||||
-1297 4975 14,202 196 208 195,stand,,,
|
||||
-1099 4278 14,201 205,stand,,,
|
||||
-1388 4309 20,204 200 206,stand,,,
|
||||
-1739 4340 -9,198 205 199,stand,,,
|
||||
-1863 4871 -13,197 208,stand,,,
|
||||
-1565 4969 12,207 203 197 196,stand,,,
|
||||
-392 4522 -39,178 210 321 320,stand,,,
|
||||
-8 4505 8,209 211 318 320 319,stand,,,
|
||||
-13 4460 40,210 212,stand,,,
|
||||
-17 4440 8,211 213,stand,,,
|
||||
-104 4440 8,212 214,stand,,,
|
||||
-80 4237 8,213 215,stand,,,
|
||||
225 4198 8,214 216 317 251,stand,,,
|
||||
222 4036 16,215 156 316,stand,,,
|
||||
-440 5704 8,191 218 307 190,stand,,,
|
||||
-168 5824 8,217 219 307,stand,,,
|
||||
112 5847 8,218 220 308,stand,,,
|
||||
361 5830 8,219 221,crouch,,,
|
||||
620 5829 8,220 222 224 225,stand,,,
|
||||
953 5820 8,221 223,stand,,,
|
||||
936 5624 8,222 224,stand,,,
|
||||
615 5605 8,223 221 225 227 308,stand,,,
|
||||
650 5735 8,221 226 224,stand,,,
|
||||
711 5732 45,225,stand,,,
|
||||
609 5287 8,224 228 231 327,stand,,,
|
||||
615 5144 48,227 229,crouch,,,
|
||||
707 5134 48,228 230,crouch,,,
|
||||
704 5477 48,229,crouch,,,
|
||||
538 5212 8,227 232 337,stand,,,
|
||||
605 4847 8,231 233 237 326,stand,,,
|
||||
590 4662 8,232 234 237 251 322,stand,,,
|
||||
760 4685 8,233 235,stand,,,
|
||||
878 4672 8,236 234 238,stand,,,
|
||||
896 4798 8,235 237 237,stand,,,
|
||||
747 4808 8,236 233 232 236,stand,,,
|
||||
1048 4625 8,235 239,stand,,,
|
||||
1200 4613 8,238 240 244,stand,,,
|
||||
1209 4408 8,239 241 244 347,stand,,,
|
||||
1195 4282 8,240 242 243,stand,,,
|
||||
975 4306 8,241,stand,,,
|
||||
1346 4256 8,241 244 245,stand,,,
|
||||
1358 4483 8,240 239 243,stand,,,
|
||||
1400 3847 8,243 246,crouch,,,
|
||||
1211 3770 8,245 247,stand,,,
|
||||
913 3778 8,246 248 277,stand,,,
|
||||
650 3790 8,247 249 329,stand,,,
|
||||
545 4036 8,248 250 251 317 329,stand,,,
|
||||
694 4062 40,249 252 262,stand,,,
|
||||
573 4376 8,249 233 215 322,stand,,,
|
||||
930 4058 40,250 253,stand,,,
|
||||
1105 4055 40,252 254 261,stand,,,
|
||||
1139 3913 40,253 255 260,stand,,,
|
||||
1272 3895 40,254 256 260,stand,,,
|
||||
1272 4065 40,255 257 346,stand,,,
|
||||
1265 4208 40,256 258,stand,,,
|
||||
1195 4208 40,257 259 261,stand,,,
|
||||
1190 4057 112,258 260,stand,,,
|
||||
1190 3946 40,259 255 254,stand,,,
|
||||
1102 4176 40,253 258,stand,,,
|
||||
733 4249 40,250 263 266 267,stand,,,
|
||||
760 4480 40,262 264 266 265,stand,,,
|
||||
889 4393 40,263 265,stand,,,
|
||||
909 4566 40,264 266 263,stand,,,
|
||||
680 4560 40,265 263 262,stand,,,
|
||||
920 4262 104,262 268,stand,,,
|
||||
910 4558 232,267 269,stand,,,
|
||||
677 4531 232,268 270,stand,,,
|
||||
676 4354 232,269 271,stand,,,
|
||||
733 4254 232,270 272 273,stand,,,
|
||||
711 4055 232,271,stand,,,
|
||||
907 4255 288,271 274,stand,,,
|
||||
912 4552 392,273 275,stand,,,
|
||||
690 4540 488,274 276,stand,,,
|
||||
800 4340 488,275,stand,,,
|
||||
922 3714 40,247 278,stand,,,
|
||||
952 3545 8,277 279 309 310,stand,,,
|
||||
919 3364 40,278 280,stand,,,
|
||||
905 3232 8,279 281 283 331,stand,,,
|
||||
896 3087 8,280 282 332,stand,,,
|
||||
1119 3084 88,281,stand,,,
|
||||
1191 3221 8,280 284,stand,,,
|
||||
1392 3249 8,283 285,stand,,,
|
||||
1355 2900 -143,284 286,stand,,,
|
||||
1215 2908 -143,285 287 293,stand,,,
|
||||
1141 2785 -143,286 85 288 293,stand,,,
|
||||
1074 2805 -143,287 289 293,stand,,,
|
||||
870 2818 -143,288 290,stand,,,
|
||||
875 3067 -143,289 291 294,stand,,,
|
||||
910 3149 -143,290 292 295,stand,,,
|
||||
1083 3126 -143,291 293 294,stand,,,
|
||||
1100 2955 -143,286 287 292 288 294,stand,,,
|
||||
1024 3028 -143,293 290 292,stand,,,
|
||||
914 3454 -167,291 296,stand,,,
|
||||
649 3445 -167,295 297,stand,,,
|
||||
472 3479 -182,296 298 299,stand,,,
|
||||
370 3308 -182,297,stand,,,
|
||||
408 3799 -182,297 300,stand,,,
|
||||
482 4199 -182,299 301 340,stand,,,
|
||||
382 4519 -182,300 302,stand,,,
|
||||
470 4841 -182,301 303,stand,,,
|
||||
373 5269 -182,302 304 305,stand,,,
|
||||
461 5509 -182,303,stand,,,
|
||||
-63 5283 8,303 182,stand,,,
|
||||
-32 5485 8,190 307 328,stand,,,
|
||||
-259 5614 8,306 218 217 190 191,stand,,,
|
||||
290 5675 8,219 328 224,stand,,,
|
||||
1259 3549 -39,278,stand,,,
|
||||
662 3557 8,278 311 330,stand,,,
|
||||
445 3567 8,310 312 329 329 330,stand,,,
|
||||
356 3644 8,311 313,stand,,,
|
||||
245 3619 8,312 314 315,stand,,,
|
||||
239 3378 8,313,stand,,,
|
||||
248 3688 32,313 316,stand,,,
|
||||
235 3826 8,315 216,stand,,,
|
||||
384 4163 8,215 249,stand,,,
|
||||
231 4633 8,210 319 322,stand,,,
|
||||
-49 4762 8,318 320 210 323,stand,,,
|
||||
-337 4758 -39,319 321 209 210,stand,,,
|
||||
-574 4760 -39,320 194 178 209,stand,,,
|
||||
442 4624 8,233 318 326 251,crouch,,,
|
||||
-58 4813 40,319 324,stand,,,
|
||||
-77 4872 8,323 325,stand,,,
|
||||
90 4850 8,324 326,stand,,,
|
||||
361 4863 8,325 232 337 322,stand,,,
|
||||
348 5368 8,328 227 337,stand,,,
|
||||
230 5379 8,308 327 306,stand,,,
|
||||
491 3728 8,249 248 311 311,stand,,,
|
||||
477 3324 8,331 335 310 311 336,stand,,,
|
||||
697 3281 8,330 280,stand,,,
|
||||
804 3113 8,281 335 333,stand,,,
|
||||
811 2799 8,334 332,stand,,,
|
||||
577 2804 8,333 64 335 77,stand,,,
|
||||
599 3086 8,334 332 330 77 336,stand,,,
|
||||
408 3088 8,330 77 335,stand,,,
|
||||
368 5238 8,327 326 339 231,stand,,,
|
||||
-149 5243 40,182 339,stand,,,
|
||||
277 5239 40,338 337,stand,,,
|
||||
727 4201 -167,300 341 347,stand,,,
|
||||
770 4056 -167,340 342,stand,,,
|
||||
882 4031 -167,341 343 344,stand,,,
|
||||
883 4199 -167,342,stand,,,
|
||||
1130 4055 -167,342 345,stand,,,
|
||||
1232 4051 -140,344 346,climb,,,
|
||||
1232 4051 18,345 256,climb,,,
|
||||
741 4437 -167,340 240,stand,,,
|
||||
232 3030 16,77 349,stand,,,
|
||||
139 3166 16,348 351 352,stand,,,
|
||||
-19 3033 16,351,stand,,,
|
||||
98 3054 16,349 350,stand,,,
|
||||
-201 3163 152,349 353,stand,,,
|
||||
-207 3081 152,352 354,stand,,,
|
||||
145 3091 152,353 355,stand,,,
|
||||
176 3240 152,354 356,stand,,,
|
||||
-199 3230 288,355 357,stand,,,
|
||||
-202 3143 288,356 358,stand,,,
|
||||
173 3160 384,357 359,stand,,,
|
||||
166 3044 384,358 360,stand,,,
|
||||
85 3066 384,359 361 364,stand,,,
|
||||
77 2993 384,360 362,stand,,,
|
||||
6 2895 384,361 363,stand,,,
|
||||
77 2802 384,362,stand,,,
|
||||
-162 3065 384,360 365 367,stand,,,
|
||||
-182 2953 384,364 366,stand,,,
|
||||
-275 2821 384,365,stand,,,
|
||||
-307 3066 384,364 368,stand,,,
|
||||
-384 3132 384,367 369,stand,,,
|
||||
-548 3140 329,368 370,stand,,,
|
||||
-556 2838 265,369 371,stand,,,
|
||||
-645 2841 265,370 372 374,stand,,,
|
||||
-646 2744 265,371 373,stand,,,
|
||||
-477 2750 265,372,stand,,,
|
||||
-640 3109 265,371 375,stand,,,
|
||||
-749 3128 265,374 376,stand,,,
|
||||
-749 2761 145,375 377,stand,,,
|
||||
-659 2756 145,376 378,stand,,,
|
||||
-650 2851 145,377 379 380,stand,,,
|
||||
-488 2839 145,378,stand,,,
|
||||
-641 3005 145,378 381 382,stand,,,
|
||||
-485 2999 145,380,stand,,,
|
||||
-674 3126 145,380 383,stand,,,
|
||||
-754 3117 145,382 384,stand,,,
|
||||
-752 2725 8,383 385,stand,,,
|
||||
-624 2729 8,384 145,stand,,,
|
||||
|
@@ -0,0 +1,119 @@
|
||||
118
|
||||
-15931.9 5340.53 180.125,1 17 18 46,stand,15.4565 -96.5302 0.0,,
|
||||
-16360.5 5078.33 180.125,0 2 46,stand,25.4266 -46.9214 0.0,,
|
||||
-16356.6 4607.71 180.125,1 3 8,stand,44.9109 79.8444 0.0,,
|
||||
-16385.4 4147.11 180.125,2 4 56 92,stand,29.3433 -112.658 0.0,,
|
||||
-16734.6 3430.33 180.125,3 5,stand,35.166 -95.1898 0.0,,
|
||||
-16735.4 3075.05 180.125,4 7,stand,25.8716 -173.693 0.0,,
|
||||
-17102.0 3062.31 220.125,7 60,stand,35.166 -2.69043 0.0,,
|
||||
-16898.6 3060.26 196.047,5 6 60,stand,50.1733 2.3523 0.0,,
|
||||
-16071.9 4626.19 192.125,2 20 51,stand,29.5685 -144.568 0.0,,
|
||||
-15175.1 6403.65 180.125,16 21,stand,35.6165 -126.951 0.0,,
|
||||
-15206.9 6449.46 180.125,11 16,stand,37.182 52.1918 0.0,,
|
||||
-15345.9 6315.39 180.125,10 12,stand,36.0614 -125.605 0.0,,
|
||||
-15488.6 6116.08 180.125,11 13 42,stand,42.3346 -122.249 0.0,,
|
||||
-15534.6 6014.95 180.125,12 14,stand,46.3666 -114.745 0.0,,
|
||||
-15560.7 5925.45 180.125,13 17,stand,49.613 -106.901 0.0,,
|
||||
-15465.8 5971.98 180.125,17 22,stand,41.9995 54.4714 0.0,,
|
||||
-15130.7 6519.24 180.125,9 10 23 41,stand,31.4691 -133.076 0.0,,
|
||||
-15580.3 5838.83 180.125,0 14 15 45,stand,42.8949 55.4767 0.0,,
|
||||
-15937.0 4939.08 180.125,0 19,stand,30.799 -94.9976 0.0,,
|
||||
-15942.9 4834.12 192.125,18 20,stand,42.6697 -175.967 0.0,,
|
||||
-16092.8 4830.99 192.125,8 19,stand,30.9088 -90.1855 0.0,,
|
||||
-15248.9 6268.15 180.125,9 22,stand,38.9728 -127.55 0.0,,
|
||||
-15412.0 6046.72 180.125,15 21,stand,44.4604 -122.062 0.0,,
|
||||
-14525.5 7414.72 180.125,16 24,stand,15.6818 -118.365 0.0,,
|
||||
-14042.2 7419.4 180.125,23 25,stand,29.6783 4.59351 0.0,,
|
||||
-13940.5 7426.24 221.65,24 26,stand,25.2014 6.27442 0.0,,
|
||||
-13783.8 7447.75 236.125,25 27 28,stand,30.4639 2.01722 0.0,,
|
||||
-13419.9 7440.57 236.125,26,stand,34.3805 5.60425 0.0,,
|
||||
-13802.6 7721.61 236.125,26 37 40,stand,30.799 3.69812 0.0,,
|
||||
-13102.2 7675.54 236.125,30 38,stand,30.1288 147.828 0.0,,
|
||||
-13110.0 7872.25 236.125,29 31 33,stand,26.9922 85.5627 0.0,,
|
||||
-12924.9 7855.58 236.125,30 32,stand,33.4851 -90.4822 0.0,,
|
||||
-12917.4 7583.93 236.125,31,stand,33.6005 -76.0352 0.0,,
|
||||
-13097.8 7957.13 236.125,30 34,stand,26.9922 -178.582 0.0,,
|
||||
-13309.0 7950.92 236.125,33 35 38 39,stand,27.2174 -177.236 0.0,,
|
||||
-13493.3 7926.93 236.125,34 36 37,stand,37.7423 -144.057 0.0,,
|
||||
-13629.6 7915.46 236.125,35,stand,44.5758 -2.87719 0.0,,
|
||||
-13467.3 7749.82 236.125,28 35 38,stand,36.7371 119.071 0.0,,
|
||||
-13324.6 7755.72 236.125,29 34 37,stand,43.4552 85.2551 0.0,,
|
||||
-13306.2 8011.13 236.125,34,stand,51.5192 -83.028 0.0,,
|
||||
-13687.1 7872.88 236.125,28,stand,36.9568 -120.766 0.0,,
|
||||
-15191.3 7386.34 180.125,16,stand,20.719 -78.3203 0.0,,
|
||||
-15685.1 6224.53 181.05,12,stand,31.9196 -17.8571 0.0,,
|
||||
-16572.2 6602.45 180.125,44 45,stand,28.4479 -42.1863 0.0,,
|
||||
-16378.9 6961.86 180.125,43,stand,31.5845 39.8981 0.0,,
|
||||
-16500.6 6543.84 180.125,17 43 46,stand,43.9001 144.01 0.0,,
|
||||
-16879.1 5816.74 180.125,0 1 45,stand,33.2654 82.3822 0.0,,
|
||||
-15935.3 4640.6 216.125,48,stand,73.5754 -88.3588 0.0,,
|
||||
-15932.4 4476.35 216.125,47 49 50,stand,51.1798 0.114155 0.0,,
|
||||
-15813.1 4499.62 216.125,48,stand,43.3411 -177.831 0.0,,
|
||||
-15996.1 4485.55 216.125,48 51 52,stand,37.738 -92.2754 0.0,,
|
||||
-16076.5 4479.23 216.125,8 50,stand,43.786 91.6797 0.0,,
|
||||
-16010.1 4405.95 218.125,50 53 55,stand,33.4863 -115.797 0.0,,
|
||||
-16199.7 4349.97 216.125,52 54,stand,34.6014 -157.007 0.0,,
|
||||
-16170.9 4218.75 216.125,53,stand,28.4436 -98.3234 0.0,,
|
||||
-15959.3 4255.57 226.125,52,stand,27.9987 141.063 0.0,,
|
||||
-16819.5 4320.98 195.625,3,stand,20.6049 -22.6221 0.0,,
|
||||
-16462.4 2582.28 180.125,58,stand,14.1119 -147.902 0.0,,
|
||||
-16687.0 2565.33 180.125,57 59,stand,22.7307 68.7537 0.0,,
|
||||
-16687.8 2884.08 180.125,58,stand,33.0359 75.4773 0.0,,
|
||||
-17048.3 3188.85 236.119,6 7 61,stand,35.1617 53.2629 0.0,,
|
||||
-17140.9 3216.85 280.441,60 62,stand,33.1458 -12.3309 0.0,,
|
||||
-17231.0 3187.25 369.685,61 63 65,stand,20.2698 133.364 0.0,,
|
||||
-17260.3 3363.56 376.125,62 64,stand,26.6528 101.559 0.0,,
|
||||
-17382.8 3338.39 376.125,63 65 66,stand,20.9399 104.25 0.0,,
|
||||
-17376.9 3222.66 376.125,62 64,stand,25.1971 60.7227 0.0,,
|
||||
-17381.4 3592.28 376.125,64 67 68,stand,19.5996 -81.9843 0.0,,
|
||||
-17237.8 3594.39 376.125,66,stand,24.4116 15.1074 0.0,,
|
||||
-17419.2 3824.87 376.125,66 69,stand,22.2858 95.401 0.0,,
|
||||
-17420.6 3871.23 376.125,68 70 86,stand,39.5288 174.014 0.0,,
|
||||
-17589.3 3874.63 315.366,69 71,stand,36.1725 176.03 0.0,,
|
||||
-17706.9 3869.39 376.125,70 72,stand,45.802 19.6997 0.0,,
|
||||
-17701.1 3932.91 376.125,71 73,stand,36.1725 2.4512 0.0,,
|
||||
-17415.1 3931.06 504.125,72 74,stand,31.355 -98.3374 0.0,,
|
||||
-17431.3 3876.34 504.125,73 75,stand,43.0005 175.101 0.0,,
|
||||
-17706.9 3877.85 504.125,74 76,stand,45.0165 137.808 0.0,,
|
||||
-17706.7 3941.84 504.125,75 77,stand,39.3091 -5.08545 0.0,,
|
||||
-17419.5 3932.79 632.125,76 78,stand,31.1298 -65.6696 0.0,,
|
||||
-17416.1 3865.54 632.125,77 79,stand,35.387 169.355 0.0,,
|
||||
-17695.2 3879.43 632.125,78 80,stand,43.8959 149.421 0.0,,
|
||||
-17691.8 3936.6 632.125,79 81,stand,35.722 -3.77807 0.0,,
|
||||
-17425.7 3942.59 760.125,80 82,stand,45.5768 -10.0513 0.0,,
|
||||
-17421.6 3863.13 760.125,81 83 84,stand,38.2983 -170.303 0.0,,
|
||||
-17718.9 3876.71 760.125,82,stand,41.3251 161.588 0.0,,
|
||||
-17424.4 3824.87 760.125,82 85,stand,30.7947 87.0404 0.0,,
|
||||
-17295.1 3780.44 760.125,84,stand,13.4363 -10.9082 0.0,,
|
||||
-17430.9 3936.8 376.125,69 87,stand,38.7488 -173.676 0.0,,
|
||||
-17707.6 3938.98 240.125,86 88 101,stand,47.4829 -177.933 0.0,,
|
||||
-17824.3 4121.82 240.125,87 89 96 97 100,stand,14.2218 1.35806 0.0,,
|
||||
-17438.5 3984.42 240.125,88 90 95 96,stand,21.5002 -11.7432 0.0,,
|
||||
-17295.3 3990.33 336.125,89 91,stand,38.5236 -3.90442 0.0,,
|
||||
-17267.5 3992.72 337.81,90,stand,55.6567 -1.99829 0.0,,
|
||||
-17154.2 3948.42 178.487,3,stand,38.9685 -0.5426 0.0,,
|
||||
-17305.2 4149.98 240.125,94,stand,43.2257 -91.5149 0.0,,
|
||||
-17305.6 3882.43 240.125,93 95,stand,33.1458 176.656 0.0,,
|
||||
-17457.6 3886.7 240.125,89 94,stand,38.0731 81.4703 0.0,,
|
||||
-17384.7 4208.73 240.125,88 89,stand,31.4703 -130.851 0.0,,
|
||||
-18335.7 4168.35 233.848,88 101,stand,22.2638 179.93 0.0,,
|
||||
-19187.7 4897.41 260.925,99,stand,13.8318 10.257 0.0,,
|
||||
-18733.6 5030.28 249.508,98 100,stand,19.5392 -11.5784 0.0,,
|
||||
-18152.4 4645.52 240.125,88 99,stand,20.885 -36.781 0.0,,
|
||||
-18202.9 3668.93 255.725,87 97,stand,22.8076 70.3137 0.0,,
|
||||
-20298.3 3994.99 233.355,103 105 115 117,stand,9.46472 -179.296 0.0,,
|
||||
-21487.6 4296.29 249.486,102 104 106 107 116,stand,14.7272 -164.294 0.0,,
|
||||
-21044.4 3757.58 287.896,103 105,stand,29.6082 140.253 0.0,,
|
||||
-20611.5 2891.73 337.241,102 104 109 115,stand,49.0979 127.338 0.0,,
|
||||
-21427.5 5036.98 245.01,103 108 113,stand,4.44946 177.469 0.0,,
|
||||
-22065.3 3972.99 245.227,103 108,stand,22.088 -140.915 0.0,,
|
||||
-23021.2 3633.16 245.16,106 107 109 110 113,stand,22.1979 -125.457 0.0,,
|
||||
-23469.3 3060.96 244.114,105 108,stand,16.0181 43.4796 0.0,,
|
||||
-23683.6 3999.01 184.956,108 111,stand,23.0713 -168.721 0.0,,
|
||||
-23959.7 3861.63 196.879,110 112,stand,23.1866 83.5742 0.0,,
|
||||
-24350.7 4232.42 226.15,111,stand,40.3198 18.8483 0.0,,
|
||||
-23263.2 4872.87 200.55,106 108 114,stand,14.5624 -84.0332 0.0,,
|
||||
-23654.4 4825.16 199.365,113,stand,14.6283 -31.5955 0.0,,
|
||||
-19582.6 3416.71 242.522,102 105,stand,14.48 148.893 0.0,,
|
||||
-20412.8 4708.35 224.699,103 117,stand,17.6166 -140.256 0.0,,
|
||||
-20555.8 4258.92 236.786,102 116,stand,20.929 70.0171 0.0,,
|
||||
|
@@ -0,0 +1,294 @@
|
||||
293
|
||||
-1662.29 1835.52 1093.86,1,stand,25.5322 -90.3521 0,,
|
||||
-1651.62 1564.72 1095.82,0 14 47 110,stand,23.9667 -102.108 0,,
|
||||
-84.1973 -326.624 841.057,157 162 163 199 201 202,stand,26.0925 -90.3521 0,,
|
||||
1283.4 -684.269 825.961,4 204,stand,23.9667 -28.9825 0,,
|
||||
1415.4 -775.491 767.368,3 5,stand,30.2344 -32.6794 0,,
|
||||
1579.45 -855.696 696.204,4 6 215,stand,30.6848 -27.752 0,,
|
||||
1820.02 -879.535 700.889,5 7,stand,24.3018 -5.46628 0,,
|
||||
1856.12 -1294.13 708.879,6 8 206,stand,20.8301 -90.6872 0,,
|
||||
2303.85 -1602.02 702.219,7 9 211 212 213,stand,21.7255 -46.2256 0,,
|
||||
2636.43 -1300.11 699.826,8 10 213 214,stand,16.908 45.3784 0,,
|
||||
2501.09 -438.685 841.902,9 216 218,stand,17.3584 100.585 0,,
|
||||
3841.95 54.7929 1039.12,12 220 221 250 251 280,stand,13.6615 9.20596 0,,
|
||||
4483.64 191.068 1042.98,11 235 245 247 259 268,stand,13.6615 22.6422 0,,
|
||||
6150.79 826.75 1055.49,257 271 274,stand,15.9027 99.1291 0,,
|
||||
-1826.95 1241.84 1095.79,1 15 16 47,stand,31.4703 -103.321 0,,
|
||||
-1806.97 976.705 1067.64,14 16 18,stand,37.5128 -107.128 0,,
|
||||
-2059.21 852.031 1065.17,14 15 39 40 44 45 46,stand,29.0039 -146.322 0,,
|
||||
-1731.8 616.437 1056.57,18 20 39 50,stand,29.339 2.50983 0,,
|
||||
-1698.06 921.835 1071.46,15 17 19,stand,28.4436 98.2557 0,,
|
||||
-1702.08 1147.81 1085.24,18,stand,25.4224 72.273 0,,
|
||||
-1782.84 233.333 1054.49,17 21,stand,29.0039 114.345 0,,
|
||||
-1904.96 215.495 1056.68,20 22,stand,25.8673 -90.2148 0,,
|
||||
-1885.83 -237.299 1060.34,21 23 29,stand,25.9827 -88.2043 0,,
|
||||
-2270.7 -274.066 1060.9,22 24 29 30 61,stand,19.259 -168.157 0,,
|
||||
-2361.41 -386.049 1060.03,23 25 26 27,stand,26.7627 -79.7228 0,,
|
||||
-2458.11 -182.45 1060.22,24 26,stand,28.7787 85.2314 0,,
|
||||
-2513.38 -351.522 1060.19,24 25 59,stand,24.527 -111.495 0,,
|
||||
-2228.15 -441.648 1063.9,24 28,stand,23.9667 -11.4923 0,,
|
||||
-1987.27 -443.872 1065.32,27 29 62,stand,25.8673 94.3336 0,,
|
||||
-1995.98 -260.637 1062.42,22 23 28,stand,26.2024 91.5375 0,,
|
||||
-2347.88 -40.4495 1060.11,23 31 33 60 61,stand,20.495 145.068 0,,
|
||||
-2582.79 -29.1096 1060.3,30 32,stand,37.738 132.077 0,,
|
||||
-2596.41 88.6593 1062.72,31 33 57,stand,30.575 31.1786 0,,
|
||||
-2330.3 89.7279 1060.12,30 32 34 57 58 60,stand,32.2504 24.2353 0,,
|
||||
-2316.56 409.941 1056.13,33 35 54,stand,27.9987 73.509 0,,
|
||||
-2204.95 426.819 1056.63,34 38 58,stand,26.7627 10.9089 0,,
|
||||
-2054.82 506.67 1062.27,37 38,stand,18.8141 -160.621 0,,
|
||||
-2094.21 621.643 1063.06,36 38 41,stand,20.7202 135.884 0,,
|
||||
-2175.22 528.643 1062.37,35 36 37 43 53,stand,41.4349 -178.089 0,,
|
||||
-1918.69 601.393 1059.04,16 17,stand,20.8301 5.4212 0,,
|
||||
-2124.22 761.429 1065.14,16 41 44 46,stand,25.1971 -118.851 0,,
|
||||
-2131.11 681.937 1063.76,37 40,stand,43.9014 -71.1425 0,,
|
||||
-2269.7 659.299 1070.13,43 44,stand,35.387 -85.4797 0,,
|
||||
-2267.66 530.567 1070.13,38 42,stand,36.8427 -85.3643 0,,
|
||||
-2271.71 750.625 1065.02,16 40 42 46,stand,47.2577 -87.1551 0,,
|
||||
-2092.94 1039.46 1085.11,16,stand,38.6334 -143.004 0,,
|
||||
-2212.7 893.035 1065.8,16 40 44,stand,38.5236 -108.738 0,,
|
||||
-1983.07 1291.91 1097.85,1 14 48 49,stand,31.1298 93.5096 0,,
|
||||
-2017.41 1421.36 1100.81,47 49,stand,29.2291 40.3962 0,,
|
||||
-1965.02 1558.37 1101.01,47 48,stand,30.91 76.1182 0,,
|
||||
-1641.74 422.233 1074.64,17 51 52,stand,33.0359 80.5952 0,,
|
||||
-1633.66 669.217 1092.13,50,stand,28.4436 86.8683 0,,
|
||||
-1807.43 422.401 1055.15,50 53,stand,23.291 2.28461 0,,
|
||||
-2002.95 419.846 1060.5,38 52,stand,30.2344 169.48 0,,
|
||||
-2425.46 425.02 1056.72,34 55,stand,21.7255 -103.058 0,,
|
||||
-2459.16 237.427 1059.64,54 56,stand,16.1279 66.0383 0,,
|
||||
-2428.11 171.336 1056.82,55 57,stand,30.4596 -83.7988 0,,
|
||||
-2417.06 103.683 1060.13,32 33 56,stand,30.3497 -160.06 0,,
|
||||
-2207.88 142.915 1061.18,33 35,stand,34.3817 -96.5649 0,,
|
||||
-2488.12 -40.9596 1060.33,26,stand,59.6887 -19.4079 0,,
|
||||
-2251.59 8.84294 1062.43,30 33,stand,26.543 -2.82953 0,,
|
||||
-2258.28 -105.16 1061.95,23 30,stand,31.8054 20.7966 0,,
|
||||
-2005.16 -799.266 1074.68,28 63,stand,28.3337 -94.472 0,,
|
||||
-2015.85 -950.103 1038.66,62 66,stand,28.3337 -94.2467 0,,
|
||||
-2219.17 -1091.27 1034.45,65 66 68 69,stand,24.8621 178.181 0,,
|
||||
-2199.01 -1269.01 1036.39,64 67 68,stand,24.8621 93.7787 0,,
|
||||
-2051.73 -1087.16 1035.13,63 64 67,stand,33.8214 71.3776 0,,
|
||||
-2047.47 -1249.3 1034.52,65 66,stand,24.4116 -110.561 0,,
|
||||
-2419.29 -1294.13 1034.06,64 65 71 72 73 74,stand,20.495 -176.331 0,,
|
||||
-2352.26 -1078.46 1034.13,64 70 71,stand,24.527 -5.55414 0,,
|
||||
-2368.15 -945.152 1039.14,69,stand,30.1245 82.8803 0,,
|
||||
-2453.22 -1103.92 1034.13,68 69,stand,27.8833 -1.85724 0,,
|
||||
-2934.87 -1353.51 1039.37,68,stand,18.5889 11.579 0,,
|
||||
-2726.3 -1232.94 1034.13,68,stand,13.7769 161.976 0,,
|
||||
-2511.71 -1500.13 1037.63,68 75,stand,22.8461 -99.5092 0,,
|
||||
-2477.07 -1954.43 1036.13,74 76,stand,57.8979 -88.6492 0,,
|
||||
-2530.52 -2330.37 1037.13,75 77,stand,24.7467 -92.011 0,,
|
||||
-2517.32 -2841.37 1037.13,76 78,stand,12.5409 108.187 0,,
|
||||
-2913.38 -2871.79 1037.13,77 79 80,stand,16.463 -163.79 0,,
|
||||
-2930.51 -2645.03 1037.13,78,stand,15.7928 98.1074 0,,
|
||||
-3116.33 -2906.97 1037.13,78 81,stand,16.908 96.2067 0,,
|
||||
-3155.32 -2642.28 1038.13,80 82 98 107,stand,20.7202 102.925 0,,
|
||||
-3532.1 -2571.33 1039.95,81 83,stand,33.8214 88.1757 0,,
|
||||
-3557.38 -2168.04 1036.6,82 84 85 99,stand,18.0286 152.907 0,,
|
||||
-3850.38 -2331.74 1036.8,83,stand,28.4436 -157.709 0,,
|
||||
-3667.28 -1983.99 1038.13,83 86 88 90,stand,25.8673 104.639 0,,
|
||||
-3793.96 -1961.79 1044.13,85 87,stand,21.0553 -176.523 0,,
|
||||
-3849.71 -2090.1 1044.13,86,stand,40.3143 68.8727 0,,
|
||||
-3714.82 -1913.95 1041.49,85 89,stand,36.2823 114.675 0,,
|
||||
-3723.39 -1763.66 1038.08,88 90 91 92,stand,38.974 -70.6262 0,,
|
||||
-3514.72 -1782.34 1034.92,85 89 91 96,stand,30.2344 -126.25 0,,
|
||||
-3487.83 -1649.53 1038.13,89 90 93 97,stand,50.8447 57.9304 0,,
|
||||
-3843.2 -1688.43 1038.09,89,stand,29.8993 -37.7056 0,,
|
||||
-3485.96 -1576.97 1038.13,91 94,stand,35.5023 77.7167 0,,
|
||||
-3395.21 -1565.21 1038.13,93 95,stand,43.9014 4.36652 0,,
|
||||
-3382.81 -1422.47 1038.13,94,stand,38.4137 81.9684 0,,
|
||||
-3639.94 -1595.66 1038.64,90,stand,30.6848 118.141 0,,
|
||||
-3447.88 -1800.45 1036.82,91 100,stand,78.0524 139.196 0,,
|
||||
-3206.9 -2478.12 1037.03,81 99,stand,34.7168 100.706 0,,
|
||||
-3168.17 -2146.53 1032.74,83 98 100 102 103 107,stand,23.8513 19.4782 0,,
|
||||
-3151.02 -1773.82 1034.52,97 99 101 102,stand,14.892 179.313 0,,
|
||||
-3236.05 -1551.04 1038.13,100,stand,21.7255 -77.1356 0,,
|
||||
-2858.33 -1796.38 1034.13,99 100 103 105,stand,30.7947 165.953 0,,
|
||||
-2867.67 -2174.21 1031.36,99 102 104 107,stand,15.6775 97.2285 0,,
|
||||
-2745.66 -2158.52 1034.13,103 106 109,stand,15.6775 97.1131 0,,
|
||||
-2877.04 -1540.53 1034.11,102 106,stand,28.894 39.1437 0,,
|
||||
-2746.33 -1560.64 1035.89,104 105,stand,23.0713 -8.44904 0,,
|
||||
-2773.31 -2464.74 1034.41,81 99 103 108 109,stand,68.537 76.6456 0,,
|
||||
-2727.81 -2647.52 1040.95,107,stand,34.7156 -57.1734 0,,
|
||||
-2603.52 -2372.67 1038.13,104 107,stand,54.8755 167.239 0,,
|
||||
-1248.43 1550.61 1101.89,1 111 117 119,stand,37.2919 112.708 0,,
|
||||
-1385.25 1901.1 1098.17,110 112,stand,17.4725 1.24091 0,,
|
||||
-971.865 2026.75 1095.82,111 113 119,stand,22.8448 -0.549866 0,,
|
||||
-847.87 1878.59 1095.61,112 114,stand,24.6356 -53.5205 0,,
|
||||
-682.107 2034.12 1096.89,113 115 116 117,stand,17.8076 17.3633 0,,
|
||||
-326.234 2054.42 1097.05,114 116 117 118,stand,24.5258 -91.5991 0,,
|
||||
-53.939 2031.15 1091.7,114 115 118,stand,18.3679 -10.6298 0,,
|
||||
-495.765 1867.23 1095.08,110 114 115 118,stand,27.6624 -34.4921 0,,
|
||||
-231.457 1793.39 1096.66,115 116 117 120 121,stand,32.0294 -56.1077 0,,
|
||||
-941.978 1547.92 1101.9,110 112 120 142,stand,12.2046 -81.3049 0,,
|
||||
-316.397 1579.8 1101.12,118 119 121 122,stand,7.83753 -58.5797 0,,
|
||||
-111.922 1553.47 1096.13,118 120 122 125 126,stand,17.3572 -10.3167 0,,
|
||||
-302.099 1422.21 1101.75,120 121 123 124,stand,19.7083 -63.963 0,,
|
||||
-321.873 1218.63 1099.13,122,stand,36.2811 -68.33 0,,
|
||||
-227.32 1235.35 1090.78,122 125,stand,27.547 -80.5358 0,,
|
||||
8.09189 1263.06 1084.49,121 124,stand,19.2633 -73.9276 0,,
|
||||
-67.06 684.098 1041.88,121 127 128,stand,19.3732 -77.2949 0,,
|
||||
-44.048 470.586 1012.42,126 129 144 163,stand,30.1233 -103.53 0,,
|
||||
-307.272 678.029 1069.77,126 129,crouch,49.8328 177.852 0,,
|
||||
-361.787 523.057 1007.43,127 128 130 135,stand,26.2067 83.4846 0,,
|
||||
-360.913 418.647 1010.13,129 131 134,stand,23.4052 -73.0761 0,,
|
||||
-312.231 310.975 1010.13,130 132,stand,20.9442 -82.5958 0,,
|
||||
-305.637 151.366 1010.13,131 133,stand,40.4285 -155.951 0,,
|
||||
-384.953 181.882 1010.13,132 134,stand,36.8414 125.216 0,,
|
||||
-392.557 340.079 1010.13,130 133,stand,33.7103 88.3735 0,,
|
||||
-831.957 533.067 1007.75,129 136 141,stand,16.1267 -178.303 0,,
|
||||
-1027.06 518.818 1034.13,135 137 138,stand,33.8202 -176.957 0,,
|
||||
-1035.43 640.155 1034.13,136 140,stand,35.166 92.334 0,,
|
||||
-1093.94 477.439 1034.13,136 139,stand,28.783 162.888 0,,
|
||||
-1156.87 488.623 1034.13,138,stand,29.6783 161.762 0,,
|
||||
-1180.18 635.787 1034.13,137,stand,28.1073 -5.29047 0,,
|
||||
-911.522 814.256 1053.59,135 142,stand,26.0913 104.897 0,,
|
||||
-901.608 1071.3 1070.64,119 141 143,stand,23.4052 88.2087 0,,
|
||||
-473.748 994.737 1068.13,142,stand,20.1587 157.192 0,,
|
||||
178.334 476.38 1012.13,127 145,stand,28.1128 22.3951 0,,
|
||||
185.352 354.263 1012.12,144 146 147,stand,31.9196 -8.58637 0,,
|
||||
164.397 -188.185 1018.13,145 152,stand,24.8663 -93.3569 0,,
|
||||
407.943 420.15 1012.13,145 148,stand,22.9602 29.8273 0,,
|
||||
403.021 502.956 1077.35,147 149,stand,16.687 91.4167 0,,
|
||||
404.873 599.68 1140.13,148 150,stand,46.2512 -165.554 0,,
|
||||
307.423 569.296 1140.13,149 151,stand,30.6891 -99.0313 0,,
|
||||
325.41 385.901 1140.13,150,stand,35.3912 -55.921 0,,
|
||||
428.487 -151.855 1018.13,146 153,stand,29.9036 13.0897 0,,
|
||||
460.738 86.689 978.125,152 154,stand,36.5118 89.582 0,,
|
||||
320.576 93.7881 922.125,153 155,stand,54.5404 -179.155 0,,
|
||||
176.824 85.3173 850.125,154 156,stand,31.8042 -101.102 0,,
|
||||
209.16 -89.8216 850.125,155 157 158 159,stand,28.2227 -81.2774 0,,
|
||||
143.697 -174.199 851.125,2 156 162,stand,36.7316 -113.863 0,,
|
||||
521.983 -45.2187 850.125,156,stand,34.2706 7.30536 0,,
|
||||
318.018 -189.847 850.125,156 160 161,stand,25.3113 -45.7751 0,,
|
||||
544.724 -199.648 850.125,159,stand,35.9515 -88.4734 0,,
|
||||
226.479 -256.824 851.125,159 162,stand,44.1254 -160.703 0,,
|
||||
158.604 -240.612 850.125,2 157 161,stand,27.3273 -117.703 0,,
|
||||
-50.8866 -7.39195 912.481,2 127 164,stand,30.2386 92.7131 0,,
|
||||
-216.227 9.24829 920.523,163 165,stand,15.2313 163.037 0,,
|
||||
-295.426 45.7996 928.125,164 166,stand,55.661 -28.2025 0,,
|
||||
-484.889 -93.052 928.125,165 167,stand,29.3433 -110.853 0,,
|
||||
-496.493 -185.618 928.125,166 168 169,stand,24.751 -96.9659 0,,
|
||||
-316.974 -182.294 928.125,167,stand,35.8362 -7.93817 0,,
|
||||
-494.589 -323.738 956.022,167 170,stand,56.5564 -78.9428 0,,
|
||||
-484.857 -418.445 968.125,169 171,stand,30.0134 -85.4357 0,,
|
||||
-334.956 -624.062 968.125,170 174 176,stand,24.751 -57.3327 0,,
|
||||
-620.699 -445.668 968.125,173 174,stand,24.4159 77.6948 0,,
|
||||
-717.817 -418.883 968.125,172 175,stand,45.6909 -77.1575 0,,
|
||||
-629.134 -616.587 968.125,171 172 175,stand,68.3118 -2.02203 0,,
|
||||
-719.012 -596.197 968.125,173 174,stand,50.6183 92.6087 0,,
|
||||
-308.644 -714.331 972.125,171 177,stand,33.9355 -88.9568 0,,
|
||||
-341.933 -834.248 972.125,176 178 180,stand,24.9762 163.904 0,,
|
||||
-481.48 -884.188 972.125,177 179,stand,29.9036 -160.709 0,,
|
||||
-520.86 -700.035 972.125,178,stand,31.9196 -76.3391 0,,
|
||||
-295.149 -986.606 972.125,177 181 182,stand,33.4851 -77.5695 0,,
|
||||
-207.126 -1037.35 972.125,180,stand,37.8522 24.7846 0,,
|
||||
-490.053 -1145.68 972.125,180 183 186,stand,25.7617 -109.902 0,,
|
||||
-404.658 -1161.98 972.125,182 184,stand,37.4072 -9.67401 0,,
|
||||
-267.486 -1169.33 886.835,183 185,stand,41.9995 2.42194 0,,
|
||||
-149.699 -1163.88 820.06,184 196 198,stand,41.9995 2.42194 0,,
|
||||
-490.062 -1239.13 980.125,182 187 188,stand,47.3718 -38.6779 0,,
|
||||
-323.125 -1322.9 980.125,186,stand,28.8928 -10.1245 0,,
|
||||
-492.534 -1349.16 908.125,186 189,stand,42.3346 -86.5014 0,,
|
||||
-473.423 -1439.68 868.125,188 190 192 193,stand,47.7069 -16.2933 0,,
|
||||
-387.588 -1299.51 868.125,189 191,stand,42.5598 85.2753 0,,
|
||||
-282.289 -1266.32 868.125,190,stand,35.2759 -3.9776 0,,
|
||||
-286.451 -1373.75 868.125,189,stand,17.2473 9.34882 0,,
|
||||
-310.291 -1440.95 868.125,189 194,stand,44.9109 -1.51117 0,,
|
||||
-259.298 -1440.93 852.125,193 195,stand,45.8063 0.279602 0,,
|
||||
-205.269 -1440.82 825.166,194 196,stand,45.6909 0.724548 0,,
|
||||
-59.5188 -1489.87 815.464,185 195 197,stand,23.1854 84.1547 0,,
|
||||
663.997 -1539.99 814.125,196 203 210,stand,19.4885 -5.72992 0,,
|
||||
-48.1863 -953.435 815.779,185 199,stand,22.29 62.4677 0,,
|
||||
-193.362 -420.515 839.345,2 198,stand,18.1427 12.1833 0,,
|
||||
-517.912 -267.336 850.001,201,stand,34.6057 -15.4363 0,,
|
||||
-348.21 -323.543 826.579,2 200,stand,28.338 149.633 0,,
|
||||
337.677 -413.249 827.946,2 203,stand,14.0009 -4.25775 0,,
|
||||
631.338 -403.222 823.329,197 202 204,stand,10.9796 -102.695 0,,
|
||||
1316.83 -374.262 825.595,3 203 205,stand,28.338 -117.966 0,,
|
||||
1490.09 -177.722 879.165,204,stand,27.4371 -105.173 0,,
|
||||
1899.09 -1524.42 690.448,7 207 214 215,stand,24.306 -110.864 0,,
|
||||
1535.25 -2018.85 702.125,206 208 211,stand,16.8024 173.88 0,,
|
||||
1173.03 -1851.96 708.201,207 209 210,stand,18.9282 136.812 0,,
|
||||
1084.08 -1693.1 779.476,208 210,stand,15.3467 114.191 0,,
|
||||
953.113 -1580.5 810.475,197 208 209,stand,16.3519 150.479 0,,
|
||||
1912.49 -2080.34 698.521,8 207 212,stand,25.4266 -4.89496 0,,
|
||||
2298.52 -2024.81 702.613,8 211 213,stand,22.0648 26.2348 0,,
|
||||
2562 -1766.42 702.137,8 9 212,stand,18.0328 61.1768 0,,
|
||||
2179.35 -1141.86 703.122,9 206,stand,26.767 30.3712 0,,
|
||||
2008.95 -1021.63 713.125,5 206,stand,20.6091 -169.294 0,,
|
||||
2563.23 -382.029 851.842,10 217 218,stand,27.4426 -2.73065 0,,
|
||||
2696.45 -381.555 897.125,216 279,stand,30.354 3.08661 0,,
|
||||
2430.3 41.8152 924.543,10 216 219 279,stand,35.0562 -17.5237 0,,
|
||||
2417.31 311.525 945.771,218,stand,26.9922 75.3052 0,,
|
||||
3497.94 4.83604 995.297,11 221 277 278,stand,15.7916 88.7635 0,,
|
||||
3513.42 112.043 994.644,11 220 222 277,stand,31.5845 90.1093 0,,
|
||||
3509.55 202.575 1019.13,221 223,stand,30.1288 92.0154 0,,
|
||||
3554.05 357.016 1019.13,222 224,stand,32.4799 -60.3924 0,,
|
||||
3657.23 369.776 1019.13,223 225,stand,31.6943 4.784 0,,
|
||||
3667.96 464.421 1043.13,224 226 229,stand,19.5984 92.5757 0,,
|
||||
3602.71 568.47 1043.13,225 227,stand,35.5011 112.846 0,,
|
||||
3664.33 636.63 1043.13,226 228,stand,36.8469 31.9861 0,,
|
||||
3762.69 597.943 1043.13,227 229,stand,33.0402 -40.2435 0,,
|
||||
3724.18 455.28 1043.13,225 228 230,stand,30.6891 -67.3412 0,,
|
||||
3790.48 448.826 1043.13,229 232,stand,45.9161 -17.1777 0,,
|
||||
4200.7 361.413 1032.01,232,stand,31.0242 -47.6373 0,,
|
||||
3895.68 429.287 1031.38,230 231 233 234 280,stand,62.489 60.7758 0,,
|
||||
4071.52 722.857 1036.83,232 236 245,stand,30.2386 71.5259 0,,
|
||||
4269.66 559.065 1035.13,232 235,stand,35.7263 -35.2996 0,,
|
||||
4276.54 372.629 1051.66,12 234,stand,33.7103 -66.9842 0,,
|
||||
4035.12 1075.87 1051.36,233 237,stand,26.2067 -13.7939 0,,
|
||||
4143.69 1074.14 1048.13,236 238 239,stand,24.306 18.4565 0,,
|
||||
4370.55 1053.36 1048.13,237,stand,30.799 94.7126 0,,
|
||||
4282.08 1167.95 1048.13,237 240,stand,43.0048 49.6027 0,,
|
||||
4286.66 1251.53 1048.13,239 241,stand,39.198 92.9438 0,,
|
||||
4429.6 1263.75 1047.21,240 242,stand,27.3273 9.73334 0,,
|
||||
4833.29 1360.85 1046.13,241 243,stand,32.1448 9.73883 0,,
|
||||
4946.37 1264.5 1046.13,242 244,stand,28.1128 -31.2512 0,,
|
||||
5116.37 1244.61 1046.3,243 275,stand,26.0968 -6.60883 0,,
|
||||
4441 729.756 1050.38,12 233 246 268,stand,28.1128 -1.57159 0,,
|
||||
4507.81 978.344 1057.08,245 275,stand,23.4106 -105.261 0,,
|
||||
4295.04 -240.857 1053.83,12 248 252 253 254,stand,20.274 179.483 0,,
|
||||
4214.58 -237.297 1050.13,247 249,stand,29.3433 148.584 0,,
|
||||
4133.42 -159.491 1050.13,248 250,stand,26.767 152.616 0,,
|
||||
3955.59 -134.046 1049.36,11 249 251,stand,29.6783 173.215 0,,
|
||||
3938.2 -320.959 1058.22,11 250 252,stand,26.8823 -48.0602 0,,
|
||||
4292.13 -387.762 1062.91,247 251,stand,24.6411 29.8823 0,,
|
||||
4778.77 -236.523 1050.13,247,stand,11.875 19.0278 0,,
|
||||
4876.74 -118.327 1044.67,247 255 259,stand,24.0808 23.5981 0,,
|
||||
5096.84 -420.114 1057.52,254 256,stand,23.6304 22.0325 0,,
|
||||
5695.33 -343.502 1050.13,255 258,stand,8.29346 172.765 0,,
|
||||
6208.47 33.6388 1056.21,13 258 260 281,stand,33.4851 24.5704 0,,
|
||||
5763.49 -135.307 1047.97,256 257 259,stand,15.907 19.9891 0,,
|
||||
5007.84 -6.60115 1047.98,12 254 258 264 265 268,stand,75.9308 179.977 0,,
|
||||
6060.43 49.1794 1058.23,257 261,stand,45.4712 146.151 0,,
|
||||
5938.73 148.033 1092.49,260 262 273,stand,26.6571 145.041 0,,
|
||||
5259.45 116.178 1109.79,261 263,stand,26.8823 93.8611 0,,
|
||||
5183.08 363.102 1108.9,262 264 266,stand,27.6624 178.077 0,,
|
||||
5156.12 249.928 1110.13,259 263 265,stand,31.6943 -97.3724 0,,
|
||||
5141.7 47.2424 1053.04,259 264 268,stand,34.9408 -92.4395 0,,
|
||||
5218.74 742.968 1108.27,263 267 269,stand,20.0488 -102.959 0,,
|
||||
4858.75 729.071 1111.18,266 268,stand,21.7297 -125.129 0,,
|
||||
4815.1 472.753 1082.1,12 245 259 265 267,stand,22.735 121.085 0,,
|
||||
5335.85 692.384 1109.36,266 270,stand,33.0402 -9.14667 0,,
|
||||
5736.37 764.391 1108.54,269 272 274,stand,33.15 10.9089 0,,
|
||||
6077.31 708.816 1048.44,13 272,stand,43.4552 -3.54364 0,,
|
||||
5883.8 718.356 1111.25,270 271 273,stand,29.118 -10.5529 0,,
|
||||
5974.81 460.55 1108.43,261 272,stand,44.3506 -75.8337 0,,
|
||||
5732.69 910.692 1048.28,13 270 275,stand,14.7864 -96.5264 0,,
|
||||
5302.73 1024.11 1048.16,244 246 274,stand,32.4799 138.158 0,,
|
||||
2866.04 162.514 938.125,277,stand,27.9974 131.737 0,,
|
||||
3207.26 160.847 965.213,220 221 276 278,stand,22.735 -36.7993 0,,
|
||||
3189.41 -0.36888 963.963,220 277 279,stand,24.0808 107.061 0,,
|
||||
2655.8 9.76327 923.869,217 218 278,stand,50.1733 -168.086 0,,
|
||||
3902.85 260.692 1047.8,11 232,stand,23.6304 91.4661 0,,
|
||||
6440.96 10.7283 1024.86,257 282,stand,27.2174 -11.8713 0,,
|
||||
7585.38 -336.287 769.531,281 283,stand,26.2067 -13.3325 0,,
|
||||
8082.16 -368.269 687.685,282 284,stand,17.3627 3.0152 0,,
|
||||
8283.03 -538.603 671.185,283 285,stand,28.4479 -32.8167 0,,
|
||||
8536.74 -538.222 646.519,284,stand,20.1587 -38.6395 0,,
|
||||
2412.8 649.358 984.529,287 288 292,stand,19.0436 -6.66928 0,,
|
||||
2626.79 605.895 1012.13,286,stand,27.2174 167.321 0,,
|
||||
2268.61 959.036 1036.49,286 289,stand,24.9762 133.275 0,,
|
||||
1849.24 922.508 1026.69,288 290,stand,19.3787 -129.518 0,,
|
||||
1572.77 55.1622 920.862,289 291,stand,29.118 -108.353 0,,
|
||||
1474.11 -23.0391 900.329,290,stand,21.0596 -121.905 0,,
|
||||
2434.28 442.916 957.243,286,stand,25.3113 -93.1262 0,,
|
||||
|
@@ -0,0 +1,121 @@
|
||||
120
|
||||
-3530.65 2529.11 -192.274,1 24,stand,42.1051 167.883 0,,
|
||||
-3579.92 2109.92 -191.875,0 2,stand,40.2045 143.582 0,,
|
||||
-3727.23 2136.38 -190.356,1 3,stand,30.4596 119.73 0,,
|
||||
-3749.72 2277.76 -191.878,2 4 11,stand,23.291 179.979 0,,
|
||||
-4105.17 2179.13 -190.238,3 5 10,stand,25.1971 -161.992 0,,
|
||||
-4304.07 2314.57 -190.793,4 6 9 11,stand,30.91 177.513 0,,
|
||||
-4659.7 2420.73 -189.247,5 7 109 107,stand,29.6741 -171.957 0,,
|
||||
-4922.74 2217.94 -189.125,6 8 9,stand,31.5802 -179.911 0,,
|
||||
-5312.29 2106.11 -191.875,7 12 107 108,stand,27.5482 -163.783 0,,
|
||||
-4663.77 2057.57 -191.412,7 5 10 107,stand,32.1405 134.513 0,,
|
||||
-4315.29 2057.44 -191.388,4 9,stand,36.3977 163.258 0,,
|
||||
-4091.84 2386.77 -191.875,3 5,stand,30.91 -24.7343 0,,
|
||||
-5397.46 2103.46 -183.875,8 13 110 111,stand,30.3497 105.135 0,,
|
||||
-5721.24 2297.66 -183.875,12 14 110 111,stand,9.4043 98.5652 0,,
|
||||
-5731.24 2523.87 -47.875,13 15 16 112,stand,41.77 -74.5628 0,,
|
||||
-5459.5 2701.55 -47.875,14 16 17 113,stand,27.7734 33.3889 0,,
|
||||
-5544.94 2995.07 -47.875,14 15 17 112,stand,25.5322 -76.804 0,,
|
||||
-5371.79 2794.97 -47.875,16 15 18,stand,25.5322 -170.281 0,,
|
||||
-5086 2811.17 -191.875,17 19 21 114 117,stand,29.2291 137.721 0,,
|
||||
-4941.31 2945.33 -191.875,18 20 118,stand,35.387 -115.932 0,,
|
||||
-4801.58 2720.25 -189.647,19 21 22,stand,23.291 26.5169 0,,
|
||||
-4972.6 2664.17 -191.431,20 18,stand,31.5802 121.032 0,,
|
||||
-4464.97 2935.98 -191.875,20 23,stand,27.323 -136.537 0,,
|
||||
-4281.42 2908.7 -190.875,22 24 119,stand,60.5841 -45.0425 0,,
|
||||
-3570.77 2905.39 -191.875,23 0,stand,24.9719 -84.8021 0,,
|
||||
-3399.98 2513.02 -193.133,26,stand,47.5928 96.0604 0,,
|
||||
-2744.97 2534.25 -63.875,25 27 34 35 36,stand,20.3796 178.112 0,,
|
||||
-2754.5 3627.17 -63.875,26 28 29,stand,14.1119 88.1832 0,,
|
||||
-2226.42 3831.92 -54.8521,27 29 34,stand,9.4043 -158.707 0,,
|
||||
-2759.81 4067.65 -63.875,28 27 30,stand,26.7627 91.545 0,,
|
||||
-2586.24 4636.43 -62.7794,29 31,stand,15.3424 -98.3482 0,,
|
||||
-2568.15 4947.49 -55.975,30 32,stand,18.5889 82.5087 0,,
|
||||
-2501.63 5153.61 -55.975,31 33,stand,48.0432 143.093 0,,
|
||||
-2572.18 5196.64 -55.975,32,stand,29.0039 -118.92 0,,
|
||||
-1489.15 3207.71 -66.9851,28 26,stand,21.0553 175.343 0,,
|
||||
-2741.22 1773.76 -58.9761,26 36 37 39,stand,9.51965 -63.181 0,,
|
||||
-2114.27 1944.9 -63.875,26 35 105,stand,18.5889 -65.8726 0,,
|
||||
-3942.49 1769.4 -59.875,35 38 41 40,stand,25.7574 -1.84979 0,,
|
||||
-4301.74 1768.29 -59.875,37 57 58,stand,24.1864 165.758 0,,
|
||||
-3007.75 231.482 -63.875,35 40 105,stand,15.4523 97.593 0,,
|
||||
-3990.99 254.32 -63.875,39 41 42 37,stand,14.2218 0.75946 0,,
|
||||
-4400.77 763.126 -63.875,40 37,stand,23.5162 81.9484 0,,
|
||||
-4412.49 -474.238 -63.875,40 43 67,stand,27.2131 103.976 0,,
|
||||
-4764.74 -497.636 -63.875,42 44 66 68,stand,18.7042 157.957 0,,
|
||||
-5194.97 -506.525 -63.875,43 45 71 65,stand,16.6882 178.672 0,,
|
||||
-5616.91 -502.573 -63.875,44 46 60 64,stand,16.908 -177.966 0,,
|
||||
-6053.07 -501.377 -63.875,45 47 63 72,stand,16.2378 -175.28 0,,
|
||||
-6490.64 -511.307 -63.875,46 48 75 62,stand,19.1492 177.107 0,,
|
||||
-6980.75 -530.123 -63.875,47 49 61,stand,13.6615 2.55573 0,,
|
||||
-7008.15 159.453 -63.875,48 50,stand,23.1812 3.11603 0,,
|
||||
-7018.45 767.801 -63.875,49 51 74,stand,20.3796 3.33575 0,,
|
||||
-7035.98 1370.94 -63.875,50 52 58,stand,19.3744 7.48309 0,,
|
||||
-6518.28 1424.21 -63.875,51 53 58 74,stand,25.7574 -97.2276 0,,
|
||||
-6071.69 1443.62 -63.875,52 54 58 73,stand,21.0553 -26.7888 0,,
|
||||
-5687.64 1454.26 -63.875,53 55 58 59,stand,14.6722 -1.25653 0,,
|
||||
-5149.39 1468.17 -63.875,54 56 70,stand,17.2485 -92.3002 0,,
|
||||
-4764.28 1473.07 -63.875,55 57 69,stand,17.5836 -56.9133 0,,
|
||||
-4300.87 1472.54 -63.875,56 38,stand,16.1279 -177.483 0,,
|
||||
-5904.03 1850.8 -63.875,38 53 54 51 52 76,stand,21.8353 89.7872 0,,
|
||||
-5648.27 767.917 -63.875,54 60,stand,25.9827 -14.7642 0,,
|
||||
-5641.56 158.035 -63.875,59 45,stand,30.2344 -80.7206 0,,
|
||||
-6966.79 -1162.46 -63.875,48 62,stand,22.511 6.18121 0,,
|
||||
-6500.56 -1160.43 -63.875,61 63 47,stand,15.0073 88.6006 0,,
|
||||
-6157.31 -1147.29 -63.875,62 64 46,stand,19.1492 -1.21259 0,,
|
||||
-5676.31 -1153.92 -63.875,63 65 45,stand,19.1492 -0.762146 0,,
|
||||
-5210.83 -1138.5 -63.875,64 66 44,stand,18.0286 4.83539 0,,
|
||||
-4762.33 -1105.67 -63.875,65 67 43,stand,19.3744 2.37445 0,,
|
||||
-4293.97 -1064.62 -63.875,66 42,stand,18.924 166.318 0,,
|
||||
-4759.22 158.686 -63.875,43 69,stand,11.3104 174.942 0,,
|
||||
-4762.41 784.834 -63.875,68 56,stand,20.0446 98.5707 0,,
|
||||
-5188.39 808.463 -63.875,55 71,stand,27.8833 -73.184 0,,
|
||||
-5191.65 203.2 -63.875,70 44,stand,19.8193 -90.8775 0,,
|
||||
-6099.57 147.178 -63.875,46 73,stand,42.3346 28.6867 0,,
|
||||
-6096.32 771.923 -63.875,72 53 74,stand,21.0541 93.8631 0,,
|
||||
-6499.31 771.818 -63.875,73 50 52 75,stand,26.9922 -129.099 0,,
|
||||
-6524.65 136.794 -63.875,74 47,stand,14.0009 -1.32245 0,,
|
||||
-5943.36 3184.84 -63.875,58 77 78,stand,23.9655 -70.3715 0,,
|
||||
-5713.73 4035.76 -63.875,76 78 80 81,stand,19.2633 -22.4437 0,,
|
||||
-5463.85 3305.92 -63.875,77 79 76,stand,21.8396 47.325 0,,
|
||||
-3886.67 3319.06 -63.875,78,stand,15.5664 1.29779 0,,
|
||||
-5767.05 4708.15 -63.875,77 82,stand,17.6978 -30.1726 0,,
|
||||
-3130.17 4094.57 -57.2122,77,stand,15.6818 24.9239 0,,
|
||||
-5204.72 5071.33 -63.875,80 83 92,stand,21.2793 -5.08527 0,,
|
||||
-4907.73 4992.21 -55.975,82 84,stand,23.8556 140.05 0,,
|
||||
-4187.06 4994.66 -55.975,83 85 89,stand,25.9814 173.866 0,,
|
||||
-4032.25 5053.82 -55.975,84 86 89,stand,27.8876 15.9645 0,,
|
||||
-3191 4984.23 -55.975,85 87 97,stand,26.767 -4.75018 0,,
|
||||
-3446.84 4915.91 -55.975,86 88,stand,35.9515 -112.109 0,,
|
||||
-3359.84 4728.4 -63.875,87,stand,31.579 5.02765 0,,
|
||||
-4112.32 4993.42 -63.875,84 90 91 85,stand,38.4125 81.7397 0,,
|
||||
-4119.06 5355.45 -63.8747,89 92 96,stand,38.3026 67.6277 0,,
|
||||
-4098.1 4706.61 -63.875,89,stand,21.9495 15.3328 0,,
|
||||
-5178.77 5351.4 -63.875,90 82 93,stand,13.6658 -31.5568 0,,
|
||||
-4769.99 7059.55 -7.3455,92 94,stand,20.3839 107.085 0,,
|
||||
-4894.62 7406.93 26.7023,93 95,stand,30.799 -179.12 0,,
|
||||
-5218.49 7417.23 23.9075,94,stand,35.3912 161.396 0,,
|
||||
-3101.23 5346.23 -63.7976,90 97 98,stand,19.8236 -159.635 0,,
|
||||
-3070.14 5027.71 -63.875,96 86,stand,29.3433 -119.876 0,,
|
||||
-2919.27 5864.61 -87.6835,96 99 104,stand,35.9515 30.2578 0,,
|
||||
-2300.9 5579.3 -76.0448,98 100,stand,42.1094 -41.4116 0,,
|
||||
-1935.47 5329.67 -63.875,99 101,stand,22.0648 -40.5931 0,,
|
||||
-1699.67 5054.53 -57.2322,100 102 103,stand,29.563 -64.4444 0,,
|
||||
-1673.62 4225.05 -59.277,101,stand,25.7562 -74.8594 0,,
|
||||
-1554.94 7746.4 36.0179,101,stand,14.671 -95.6566 0,,
|
||||
-3058.34 7589.36 10.2128,98,stand,20.3839 -73.9311 0,,
|
||||
-1835.42 1633.43 -61.1964,36 106 39,stand,16.4618 12.5258 0,,
|
||||
-1242.29 1889.78 -63.9507,105,stand,14.4458 -162.36 0,,
|
||||
-4919.6 2045.38 -190.61,9 8 108 6,stand,21.275 159.089 0,,
|
||||
-5255 2400.78 -191.817,107 8 109,stand,19.5996 -19.5318 0,,
|
||||
-4950.17 2442.17 -189.19,108 6,stand,22.0605 -172.39 0,,
|
||||
-5653.56 2042.46 -183.875,12 13,stand,24.7467 -2.31627 0,,
|
||||
-5466.98 2451.36 -183.875,12 13,stand,16.5729 -114.267 0,,
|
||||
-5742.51 2946.82 -47.875,14 16,stand,13.5516 -86.7187 0,,
|
||||
-5382.54 2574.11 -47.875,15,stand,-2.68616 114.15 0,,
|
||||
-5279 2972.85 -191.27,18 115,stand,14.7821 -34.2755 0,,
|
||||
-5328.87 2804.45 -158.482,114 116,stand,17.2485 13.0921 0,,
|
||||
-5316.48 2666.53 -151.787,115 117,stand,17.4683 60.4651 0,,
|
||||
-5187.24 2723.92 -190.147,116 18,stand,23.6316 56.7682 0,,
|
||||
-4778.02 2961.73 -191.875,19 119,stand,25.307 -76.6058 0,,
|
||||
-4511.8 2616.96 -185.379,118 23,stand,25.9827 123.175 0,,
|
||||
|
@@ -0,0 +1,108 @@
|
||||
107
|
||||
-3530.65 2529.11 -192.274,1 24,stand,42.1051 167.883 0,,
|
||||
-3579.92 2109.92 -191.875,0 2,stand,40.2045 143.582 0,,
|
||||
-3727.23 2136.38 -190.356,1 3,stand,30.4596 119.73 0,,
|
||||
-3749.72 2277.76 -191.878,2 4 11,stand,23.291 179.979 0,,
|
||||
-4105.17 2179.13 -190.238,3 5 10,stand,25.1971 -161.992 0,,
|
||||
-4304.07 2314.57 -190.793,4 6 9 11,stand,30.91 177.513 0,,
|
||||
-4659.7 2420.73 -189.247,5 7,stand,29.6741 -171.957 0,,
|
||||
-4922.74 2217.94 -189.125,6 8 9,stand,31.5802 -179.911 0,,
|
||||
-5312.29 2106.11 -191.875,7 12,stand,27.5482 -163.783 0,,
|
||||
-4663.77 2057.57 -191.412,7 5 10,stand,32.1405 134.513 0,,
|
||||
-4315.29 2057.44 -191.388,4 9,stand,36.3977 163.258 0,,
|
||||
-4091.84 2386.77 -191.875,3 5,stand,30.91 -24.7343 0,,
|
||||
-5397.46 2103.46 -183.875,8 13,stand,30.3497 105.135 0,,
|
||||
-5721.24 2297.66 -183.875,12 14,stand,9.4043 98.5652 0,,
|
||||
-5731.24 2523.87 -47.875,13 15 16,stand,41.77 -74.5628 0,,
|
||||
-5459.5 2701.55 -47.875,14 16 17,stand,27.7734 33.3889 0,,
|
||||
-5544.94 2995.07 -47.875,14 15 17,stand,25.5322 -76.804 0,,
|
||||
-5371.79 2794.97 -47.875,16 15 18,stand,25.5322 -170.281 0,,
|
||||
-5086 2811.17 -191.875,17 19 21,stand,29.2291 137.721 0,,
|
||||
-4941.31 2945.33 -191.875,18 20,stand,35.387 -115.932 0,,
|
||||
-4801.58 2720.25 -189.647,19 21 22,stand,23.291 26.5169 0,,
|
||||
-4972.6 2664.17 -191.431,20 18,stand,31.5802 121.032 0,,
|
||||
-4464.97 2935.98 -191.875,20 23,stand,27.323 -136.537 0,,
|
||||
-4281.42 2908.7 -190.875,22 24,stand,60.5841 -45.0425 0,,
|
||||
-3570.77 2905.39 -191.875,23 0,stand,24.9719 -84.8021 0,,
|
||||
-3399.98 2513.02 -193.133,26,stand,47.5928 96.0604 0,,
|
||||
-2744.97 2534.25 -63.875,25 27 34 35 36,stand,20.3796 178.112 0,,
|
||||
-2754.5 3627.17 -63.875,26 28 29,stand,14.1119 88.1832 0,,
|
||||
-2226.42 3831.92 -54.8521,27 29 34,stand,9.4043 -158.707 0,,
|
||||
-2759.81 4067.65 -63.875,28 27 30,stand,26.7627 91.545 0,,
|
||||
-2586.24 4636.43 -62.7794,29 31,stand,15.3424 -98.3482 0,,
|
||||
-2568.15 4947.49 -55.975,30 32,stand,18.5889 82.5087 0,,
|
||||
-2501.63 5153.61 -55.975,31 33,stand,48.0432 143.093 0,,
|
||||
-2572.18 5196.64 -55.975,32,stand,29.0039 -118.92 0,,
|
||||
-1489.15 3207.71 -66.9851,28 26,stand,21.0553 175.343 0,,
|
||||
-2741.22 1773.76 -58.9761,26 36 37 39,stand,9.51965 -63.181 0,,
|
||||
-2114.27 1944.9 -63.875,26 35 105,stand,18.5889 -65.8726 0,,
|
||||
-3942.49 1769.4 -59.875,35 38 41 40,stand,25.7574 -1.84979 0,,
|
||||
-4301.74 1768.29 -59.875,37 57 58,stand,24.1864 165.758 0,,
|
||||
-3007.75 231.482 -63.875,35 40 105,stand,15.4523 97.593 0,,
|
||||
-3990.99 254.32 -63.875,39 41 42 37,stand,14.2218 0.75946 0,,
|
||||
-4400.77 763.126 -63.875,40 37,stand,23.5162 81.9484 0,,
|
||||
-4412.49 -474.238 -63.875,40 43 67,stand,27.2131 103.976 0,,
|
||||
-4764.74 -497.636 -63.875,42 44 66 68,stand,18.7042 157.957 0,,
|
||||
-5194.97 -506.525 -63.875,43 45 71 65,stand,16.6882 178.672 0,,
|
||||
-5616.91 -502.573 -63.875,44 46 60 64,stand,16.908 -177.966 0,,
|
||||
-6053.07 -501.377 -63.875,45 47 63 72,stand,16.2378 -175.28 0,,
|
||||
-6490.64 -511.307 -63.875,46 48 75 62,stand,19.1492 177.107 0,,
|
||||
-6980.75 -530.123 -63.875,47 49 61,stand,13.6615 2.55573 0,,
|
||||
-7008.15 159.453 -63.875,48 50,stand,23.1812 3.11603 0,,
|
||||
-7018.45 767.801 -63.875,49 51 74,stand,20.3796 3.33575 0,,
|
||||
-7035.98 1370.94 -63.875,50 52 58,stand,19.3744 7.48309 0,,
|
||||
-6518.28 1424.21 -63.875,51 53 58 74,stand,25.7574 -97.2276 0,,
|
||||
-6071.69 1443.62 -63.875,52 54 58 73,stand,21.0553 -26.7888 0,,
|
||||
-5687.64 1454.26 -63.875,53 55 58 59,stand,14.6722 -1.25653 0,,
|
||||
-5149.39 1468.17 -63.875,54 56 70,stand,17.2485 -92.3002 0,,
|
||||
-4764.28 1473.07 -63.875,55 57 69,stand,17.5836 -56.9133 0,,
|
||||
-4300.87 1472.54 -63.875,56 38,stand,16.1279 -177.483 0,,
|
||||
-5904.03 1850.8 -63.875,38 53 54 51 52 76,stand,21.8353 89.7872 0,,
|
||||
-5648.27 767.917 -63.875,54 60,stand,25.9827 -14.7642 0,,
|
||||
-5641.56 158.035 -63.875,59 45,stand,30.2344 -80.7206 0,,
|
||||
-6966.79 -1162.46 -63.875,48 62,stand,22.511 6.18121 0,,
|
||||
-6500.56 -1160.43 -63.875,61 63 47,stand,15.0073 88.6006 0,,
|
||||
-6157.31 -1147.29 -63.875,62 64 46,stand,19.1492 -1.21259 0,,
|
||||
-5676.31 -1153.92 -63.875,63 65 45,stand,19.1492 -0.762146 0,,
|
||||
-5210.83 -1138.5 -63.875,64 66 44,stand,18.0286 4.83539 0,,
|
||||
-4762.33 -1105.67 -63.875,65 67 43,stand,19.3744 2.37445 0,,
|
||||
-4293.97 -1064.62 -63.875,66 42,stand,18.924 166.318 0,,
|
||||
-4759.22 158.686 -63.875,43 69,stand,11.3104 174.942 0,,
|
||||
-4762.41 784.834 -63.875,68 56,stand,20.0446 98.5707 0,,
|
||||
-5188.39 808.463 -63.875,55 71,stand,27.8833 -73.184 0,,
|
||||
-5191.65 203.2 -63.875,70 44,stand,19.8193 -90.8775 0,,
|
||||
-6099.57 147.178 -63.875,46 73,stand,42.3346 28.6867 0,,
|
||||
-6096.32 771.923 -63.875,72 53 74,stand,21.0541 93.8631 0,,
|
||||
-6499.31 771.818 -63.875,73 50 52 75,stand,26.9922 -129.099 0,,
|
||||
-6524.65 136.794 -63.875,74 47,stand,14.0009 -1.32245 0,,
|
||||
-5943.36 3184.84 -63.875,58 77 78,stand,23.9655 -70.3715 0,,
|
||||
-5713.73 4035.76 -63.875,76 78 80 81,stand,19.2633 -22.4437 0,,
|
||||
-5463.85 3305.92 -63.875,77 79 76,stand,21.8396 47.325 0,,
|
||||
-3886.67 3319.06 -63.875,78,stand,15.5664 1.29779 0,,
|
||||
-5767.05 4708.15 -63.875,77 82,stand,17.6978 -30.1726 0,,
|
||||
-3130.17 4094.57 -57.2122,77,stand,15.6818 24.9239 0,,
|
||||
-5204.72 5071.33 -63.875,80 83 92,stand,21.2793 -5.08527 0,,
|
||||
-4907.73 4992.21 -55.975,82 84,stand,23.8556 140.05 0,,
|
||||
-4187.06 4994.66 -55.975,83 85 89,stand,25.9814 173.866 0,,
|
||||
-4032.25 5053.82 -55.975,84 86 89,stand,27.8876 15.9645 0,,
|
||||
-3191 4984.23 -55.975,85 87 97,stand,26.767 -4.75018 0,,
|
||||
-3446.84 4915.91 -55.975,86 88,stand,35.9515 -112.109 0,,
|
||||
-3359.84 4728.4 -63.875,87,stand,31.579 5.02765 0,,
|
||||
-4112.32 4993.42 -63.875,84 90 91 85,stand,38.4125 81.7397 0,,
|
||||
-4119.06 5355.45 -63.8747,89 92 96,stand,38.3026 67.6277 0,,
|
||||
-4098.1 4706.61 -63.875,89,stand,21.9495 15.3328 0,,
|
||||
-5178.77 5351.4 -63.875,90 82 93,stand,13.6658 -31.5568 0,,
|
||||
-4769.99 7059.55 -7.3455,92 94,stand,20.3839 107.085 0,,
|
||||
-4894.62 7406.93 26.7023,93 95,stand,30.799 -179.12 0,,
|
||||
-5218.49 7417.23 23.9075,94,stand,35.3912 161.396 0,,
|
||||
-3101.23 5346.23 -63.7976,90 97 98,stand,19.8236 -159.635 0,,
|
||||
-3070.14 5027.71 -63.875,96 86,stand,29.3433 -119.876 0,,
|
||||
-2919.27 5864.61 -87.6835,96 99 104,stand,35.9515 30.2578 0,,
|
||||
-2300.9 5579.3 -76.0448,98 100,stand,42.1094 -41.4116 0,,
|
||||
-1935.47 5329.67 -63.875,99 101,stand,22.0648 -40.5931 0,,
|
||||
-1699.67 5054.53 -57.2322,100 102 103,stand,29.563 -64.4444 0,,
|
||||
-1673.62 4225.05 -59.277,101,stand,25.7562 -74.8594 0,,
|
||||
-1554.94 7746.4 36.0179,101,stand,14.671 -95.6566 0,,
|
||||
-3058.34 7589.36 10.2128,98,stand,20.3839 -73.9311 0,,
|
||||
-1835.42 1633.43 -61.1964,36 106 39,stand,16.4618 12.5258 0,,
|
||||
-1242.29 1889.78 -63.9507,105,stand,14.4458 -162.36 0,,
|
||||
|
@@ -0,0 +1,85 @@
|
||||
init()
|
||||
{
|
||||
level.bot_builtins[ "printconsole" ] = ::do_printconsole;
|
||||
level.bot_builtins[ "filewrite" ] = ::do_filewrite;
|
||||
level.bot_builtins[ "fileread" ] = ::do_fileread;
|
||||
level.bot_builtins[ "fileexists" ] = ::do_fileexists;
|
||||
level.bot_builtins[ "openfile" ] = ::do_openfile;
|
||||
level.bot_builtins[ "readstream" ] = ::do_readstream;
|
||||
level.bot_builtins[ "closefile" ] = ::do_closefile;
|
||||
level.bot_builtins[ "botaction" ] = ::do_botaction;
|
||||
level.bot_builtins[ "botstop" ] = ::do_botstop;
|
||||
level.bot_builtins[ "botmovement" ] = ::do_botmovement;
|
||||
level.bot_builtins[ "botmeleeparams" ] = ::do_botmeleeparams;
|
||||
level.bot_builtins[ "botremoteangles" ] = ::do_botremoteangles;
|
||||
level.bot_builtins[ "botangles" ] = ::do_botangles;
|
||||
}
|
||||
|
||||
do_printconsole( s )
|
||||
{
|
||||
printconsole( s + "\n" );
|
||||
}
|
||||
|
||||
do_filewrite( file, contents, mode )
|
||||
{
|
||||
file = "scriptdata/" + file;
|
||||
filewrite( file, contents, mode );
|
||||
}
|
||||
|
||||
do_fileread( file )
|
||||
{
|
||||
file = "scriptdata/" + file;
|
||||
return fileread( file );
|
||||
}
|
||||
|
||||
do_fileexists( file )
|
||||
{
|
||||
file = "scriptdata/" + file;
|
||||
return fileexists( file );
|
||||
}
|
||||
|
||||
do_openfile( file, mode )
|
||||
{
|
||||
file = "scriptdata/" + file;
|
||||
return openfile( file, mode );
|
||||
}
|
||||
|
||||
do_readstream()
|
||||
{
|
||||
return readstream();
|
||||
}
|
||||
|
||||
do_closefile()
|
||||
{
|
||||
return closefile();
|
||||
}
|
||||
|
||||
do_botaction( action )
|
||||
{
|
||||
self botaction( action );
|
||||
}
|
||||
|
||||
do_botstop()
|
||||
{
|
||||
self botstop();
|
||||
}
|
||||
|
||||
do_botmovement( forward, right )
|
||||
{
|
||||
self botmovement( forward, right );
|
||||
}
|
||||
|
||||
do_botmeleeparams( yaw, dist )
|
||||
{
|
||||
self botmeleeparams( yaw, dist );
|
||||
}
|
||||
|
||||
do_botremoteangles( pitch, yaw )
|
||||
{
|
||||
self botremoteangles( pitch, yaw );
|
||||
}
|
||||
|
||||
do_botangles( angles )
|
||||
{
|
||||
self botangles( angles[ 0 ], angles[ 1 ], angles[ 2 ] );
|
||||
}
|
||||
@@ -1,653 +0,0 @@
|
||||
{
|
||||
"_color" "0.5 0.5 .62 1"
|
||||
"ambient" ".116"
|
||||
"sundiffusecolor" "0.75 0.82 0.85"
|
||||
"diffusefraction" ".35"
|
||||
"classname" "worldspawn"
|
||||
"sundirection" "-70 72 0"
|
||||
"suncolor" "0.9 0.95 1"
|
||||
"sunlight" "0.9"
|
||||
}
|
||||
{
|
||||
"origin" "0 -448 -32"
|
||||
"angles" "0 90 0"
|
||||
"classname" "info_player_start"
|
||||
}
|
||||
{
|
||||
"classname" "mp_dm_spawn"
|
||||
"angles" "0 140 0"
|
||||
"origin" "608 -469 -32"
|
||||
}
|
||||
{
|
||||
"classname" "mp_dm_spawn"
|
||||
"angles" "0 180 0"
|
||||
"origin" "696 10 -32"
|
||||
}
|
||||
{
|
||||
"classname" "mp_dm_spawn"
|
||||
"angles" "0 -140 0"
|
||||
"origin" "618 474 -32"
|
||||
}
|
||||
{
|
||||
"classname" "mp_dm_spawn"
|
||||
"angles" "0 -90 0"
|
||||
"origin" "-5 500 -32"
|
||||
}
|
||||
{
|
||||
"classname" "mp_dm_spawn"
|
||||
"angles" "0 -40 0"
|
||||
"origin" "-621 518 -32"
|
||||
}
|
||||
{
|
||||
"classname" "mp_dm_spawn"
|
||||
"angles" "0 0 0"
|
||||
"origin" "-612 -4 -32"
|
||||
}
|
||||
{
|
||||
"classname" "mp_dm_spawn"
|
||||
"angles" "0 40 0"
|
||||
"origin" "-636 -521 -32"
|
||||
}
|
||||
{
|
||||
"classname" "mp_dm_spawn"
|
||||
"angles" "0 -60 0"
|
||||
"origin" "3 -477 -32"
|
||||
}
|
||||
|
||||
{
|
||||
"classname" "mp_tdm_spawn_axis_start"
|
||||
"angles" "0 140 0"
|
||||
"origin" "608 -469 -32"
|
||||
}
|
||||
{
|
||||
"classname" "mp_tdm_spawn_axis_start"
|
||||
"angles" "0 180 0"
|
||||
"origin" "696 10 -32"
|
||||
}
|
||||
{
|
||||
"classname" "mp_tdm_spawn_allies_start"
|
||||
"angles" "0 -140 0"
|
||||
"origin" "618 474 1532"
|
||||
}
|
||||
{
|
||||
"classname" "mp_tdm_spawn_allies_start"
|
||||
"angles" "0 -90 0"
|
||||
"origin" "-5 500 1532"
|
||||
}
|
||||
{
|
||||
"classname" "mp_tdm_spawn"
|
||||
"angles" "0 -40 0"
|
||||
"origin" "-621 518 -32"
|
||||
}
|
||||
{
|
||||
"classname" "mp_tdm_spawn"
|
||||
"angles" "0 0 0"
|
||||
"origin" "-612 -4 -32"
|
||||
}
|
||||
{
|
||||
"classname" "mp_tdm_spawn"
|
||||
"angles" "0 40 0"
|
||||
"origin" "-636 -521 -32"
|
||||
}
|
||||
{
|
||||
"classname" "mp_tdm_spawn"
|
||||
"angles" "0 -60 0"
|
||||
"origin" "3 -477 -32"
|
||||
}
|
||||
{
|
||||
"origin" "-600 -500 1000"
|
||||
"TargetName" "minimap_corner"
|
||||
"classname" "script_origin"
|
||||
}
|
||||
{
|
||||
"origin" "600 500 1000"
|
||||
"TargetName" "minimap_corner"
|
||||
"classname" "script_origin"
|
||||
}
|
||||
|
||||
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"angles" "0 300 0"
|
||||
"_color" ".5 1 1"
|
||||
"origin" "-40 600 600"
|
||||
"script_accel" "20"
|
||||
"script_airspeed" "40"
|
||||
"targetname" "auto481"
|
||||
"target" "auto483"
|
||||
"script_delay" "2"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"angles" "0 335 0"
|
||||
"_color" ".5 1 1"
|
||||
"origin" "-300 500 636"
|
||||
"script_accel" "15"
|
||||
"script_airspeed" "40"
|
||||
"targetname" "auto483"
|
||||
"script_delay" "3"
|
||||
"target" "auto476"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"angles" "0 175 0"
|
||||
"_color" ".5 1 1"
|
||||
"origin" "300 600 536"
|
||||
"script_accel" "20"
|
||||
"script_airspeed" "35"
|
||||
"targetname" "auto480"
|
||||
"target" "auto481"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"angles" "0 205 0"
|
||||
"_color" ".5 1 1"
|
||||
"origin" "530 420 508"
|
||||
"script_accel" "15"
|
||||
"script_airspeed" "30"
|
||||
"targetname" "auto479"
|
||||
"target" "auto480"
|
||||
"script_delay" "3"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"angles" "0 150 0"
|
||||
"_color" ".5 1 1"
|
||||
"origin" "520 51 464"
|
||||
"script_accel" "20"
|
||||
"script_airspeed" "35"
|
||||
"targetname" "auto478"
|
||||
"target" "auto479"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"angles" "0 85 0"
|
||||
"_color" ".5 1 1"
|
||||
"origin" "110 -160 536"
|
||||
"targetname" "auto477"
|
||||
"script_accel" "15"
|
||||
"script_airspeed" "30"
|
||||
"target" "auto478"
|
||||
"script_delay" "3"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"angles" "0 340 0"
|
||||
"_color" ".5 1 1"
|
||||
"origin" "-280 -5 656"
|
||||
"targetname" "auto476"
|
||||
"script_accel" "15"
|
||||
"script_airspeed" "40"
|
||||
"target" "auto477"
|
||||
}
|
||||
{
|
||||
"target" "auto476"
|
||||
"origin" "-250 20 872"
|
||||
"targetname" "heli_loop_start"
|
||||
"_color" ".5 1 1"
|
||||
"angles" "0 1.00179e-005 0"
|
||||
"classname" "script_origin"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"origin" "600 105 803"
|
||||
"_color" "0 1 .5"
|
||||
"angles" "0 170 0"
|
||||
"targetname" "auto474"
|
||||
"script_accel" "15"
|
||||
"script_airspeed" "30"
|
||||
"target" "auto475"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"origin" "900 60 1090"
|
||||
"_color" "0 1 .5"
|
||||
"angles" "0 170 0"
|
||||
"targetname" "auto473"
|
||||
"script_accel" "20"
|
||||
"script_airspeed" "40"
|
||||
"target" "auto474"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"origin" "1600 1100 984"
|
||||
"_color" "0 1 .5"
|
||||
"angles" "0 245 0"
|
||||
"targetname" "auto472"
|
||||
"script_accel" "20"
|
||||
"script_airspeed" "60"
|
||||
"target" "auto473"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"targetname" "heli_start"
|
||||
"origin" "1680 5200 976"
|
||||
"_color" "0 1 .5"
|
||||
"angles" "0 255 0"
|
||||
"target" "auto472"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"origin" "61 820 819"
|
||||
"_color" "0 1 .5"
|
||||
"angles" "0 275 0"
|
||||
"targetname" "auto469"
|
||||
"script_accel" "15"
|
||||
"script_airspeed" "30"
|
||||
"target" "auto470"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"origin" "-184 870 850"
|
||||
"_color" "0 1 .5"
|
||||
"angles" "0 285 0"
|
||||
"targetname" "auto468"
|
||||
"script_accel" "20"
|
||||
"script_airspeed" "40"
|
||||
"target" "auto469"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"origin" "400 360 756"
|
||||
"_color" "0 1 .5"
|
||||
"angles" "0 220 0"
|
||||
"script_accel" "15"
|
||||
"script_airspeed" "30"
|
||||
"targetname" "auto475"
|
||||
"target" "auto467"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"origin" "60 427 796"
|
||||
"_color" "0 1 .5"
|
||||
"angles" "0 270 0"
|
||||
"script_accel" "15"
|
||||
"script_airspeed" "30"
|
||||
"targetname" "auto471"
|
||||
"target" "auto467"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"origin" "-1060 1080 1000"
|
||||
"_color" "0 1 .5"
|
||||
"angles" "0 305 0"
|
||||
"targetname" "auto466"
|
||||
"script_accel" "20"
|
||||
"script_airspeed" "40"
|
||||
"target" "auto468"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"targetname" "heli_start"
|
||||
"origin" "-1050 1200 992"
|
||||
"_color" "0 1 .5"
|
||||
"angles" "0 285 0"
|
||||
"target" "auto466"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"targetname" "auto463"
|
||||
"origin" "-40 90 775"
|
||||
"_color" "0 1 .5"
|
||||
"angles" "0 90 0"
|
||||
"script_accel" "20"
|
||||
"script_airspeed" "60"
|
||||
"target" "auto467"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"targetname" "auto462"
|
||||
"origin" "-80 -170 690"
|
||||
"_color" "0 1 .5"
|
||||
"angles" "0 90 0"
|
||||
"target" "auto463"
|
||||
"script_accel" "20"
|
||||
"script_airspeed" "40"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"targetname" "auto461"
|
||||
"origin" "-290 -400 540"
|
||||
"_color" "0 1 .5"
|
||||
"angles" "0 30 0"
|
||||
"target" "auto462"
|
||||
"script_accel" "20"
|
||||
"script_airspeed" "40"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"targetname" "auto460"
|
||||
"origin" "-620 -1204 432"
|
||||
"_color" "0 1 .5"
|
||||
"angles" "0 90 0"
|
||||
"target" "auto461"
|
||||
"script_accel" "20"
|
||||
"script_airspeed" "60"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"targetname" "auto42"
|
||||
"origin" "520 40 892"
|
||||
"target" "auto44"
|
||||
"script_airspeed" "50"
|
||||
"script_accel" "30"
|
||||
"angles" "0 345 0"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"origin" "1270 -140 408"
|
||||
"targetname" "auto44"
|
||||
"script_airspeed" "50"
|
||||
"script_accel" "30"
|
||||
"angles" "0 345 0"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"targetname" "heli_start"
|
||||
"origin" "-630 -1220 424"
|
||||
"_color" "0 1 .5"
|
||||
"angles" "0 90 0"
|
||||
"target" "auto460"
|
||||
}
|
||||
{
|
||||
"target" "auto471"
|
||||
"script_airspeed" "40"
|
||||
"script_accel" "15"
|
||||
"targetname" "auto470"
|
||||
"angles" "0 50 0"
|
||||
"_color" "0 1 .5"
|
||||
"origin" "130 600 839.5"
|
||||
"classname" "script_origin"
|
||||
}
|
||||
{
|
||||
"target" "auto467"
|
||||
"targetname" "heli_dest"
|
||||
"origin" "110 250 744"
|
||||
"angles" "0 30 0"
|
||||
"_color" "0 1 .5"
|
||||
"classname" "script_origin"
|
||||
}
|
||||
{
|
||||
"script_airspeed" "30"
|
||||
"script_accel" "10"
|
||||
"angles" "0 270 0"
|
||||
"_color" "0 1 .5"
|
||||
"origin" "130 240 759.5"
|
||||
"targetname" "auto467"
|
||||
"classname" "script_origin"
|
||||
}
|
||||
{
|
||||
"angles" "0 345 0"
|
||||
"target" "auto482"
|
||||
"origin" "190 230 952"
|
||||
"targetname" "heli_crash_start"
|
||||
"classname" "script_origin"
|
||||
}
|
||||
{
|
||||
"angles" "0 345 0"
|
||||
"script_accel" "20"
|
||||
"script_airspeed" "40"
|
||||
"target" "auto42"
|
||||
"origin" "195 240 952"
|
||||
"targetname" "auto482"
|
||||
"classname" "script_origin"
|
||||
}
|
||||
{
|
||||
"target" "auto488"
|
||||
"targetname" "heli_attack_start"
|
||||
"_color" "0.000000 0.000000 0.000000"
|
||||
"origin" "285 -6 540"
|
||||
"classname" "script_origin"
|
||||
"radius" "512"
|
||||
"angles" "0 210 0"
|
||||
}
|
||||
{
|
||||
"target" "auto489"
|
||||
"targetname" "auto488"
|
||||
"angles" "0 140 0"
|
||||
"radius" "512"
|
||||
"classname" "script_origin"
|
||||
"origin" "-70 7 556"
|
||||
"_color" "0.000000 0.000000 0.000000"
|
||||
}
|
||||
{
|
||||
"target" "auto490"
|
||||
"targetname" "auto489"
|
||||
"_color" "0.000000 0.000000 0.000000"
|
||||
"origin" "-170 360 572"
|
||||
"classname" "script_origin"
|
||||
"radius" "512"
|
||||
"angles" "0 90 0"
|
||||
}
|
||||
{
|
||||
"target" "auto491"
|
||||
"targetname" "auto490"
|
||||
"angles" "0 35 0"
|
||||
"radius" "512"
|
||||
"classname" "script_origin"
|
||||
"origin" "-27 475 588"
|
||||
"_color" "0.000000 0.000000 0.000000"
|
||||
}
|
||||
{
|
||||
"target" "auto492"
|
||||
"targetname" "auto491"
|
||||
"angles" "0 330 0"
|
||||
"radius" "512"
|
||||
"classname" "script_origin"
|
||||
"origin" "500 450 508"
|
||||
"_color" "0.000000 0.000000 0.000000"
|
||||
}
|
||||
{
|
||||
"target" "heli_attack_start"
|
||||
"angles" "0 270 0"
|
||||
"radius" "512"
|
||||
"classname" "script_origin"
|
||||
"origin" "415 220 492"
|
||||
"_color" "0.000000 0.000000 0.000000"
|
||||
"targetname" "auto492"
|
||||
}
|
||||
{
|
||||
"origin" "-1200 1200 976"
|
||||
"targetname" "heli_leave"
|
||||
"classname" "script_origin"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"targetname" "heli_leave"
|
||||
"origin" "-1300 -800 976"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"targetname" "heli_leave"
|
||||
"origin" "-1300 1180 976"
|
||||
}
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"targetname" "heli_leave"
|
||||
"origin" "1400 1200 976"
|
||||
}
|
||||
|
||||
{
|
||||
"classname" "script_origin"
|
||||
"targetname" "airstrikeheight"
|
||||
"origin" "0 0 600"
|
||||
}
|
||||
|
||||
{
|
||||
"origin" "630.0 0.0 0.0"
|
||||
"angles" "0 180 0"
|
||||
"classname" "mp_dom_spawn"
|
||||
}
|
||||
{
|
||||
"origin" "-630.0 0.0 0.0"
|
||||
"angles" "0 0 0"
|
||||
"classname" "mp_dom_spawn"
|
||||
}
|
||||
{
|
||||
"origin" "0.0 500.0 0.0"
|
||||
"angles" "0 270 0"
|
||||
"classname" "mp_dom_spawn"
|
||||
}
|
||||
{
|
||||
"origin" "0.0 -500.0 0.0"
|
||||
"angles" "0 90 0"
|
||||
"classname" "mp_dom_spawn"
|
||||
}
|
||||
{
|
||||
"origin" "600.0 500.0 0.0"
|
||||
"angles" "0 210 0"
|
||||
"classname" "mp_dom_spawn"
|
||||
}
|
||||
{
|
||||
"origin" "-600.0 -500.0 0.0"
|
||||
"angles" "0 45 0"
|
||||
"classname" "mp_dom_spawn"
|
||||
}
|
||||
|
||||
|
||||
{
|
||||
"classname" "mp_dom_spawn_axis_start"
|
||||
"origin" "630.0 0.0 0.0"
|
||||
"angles" "0 180 0"
|
||||
}
|
||||
{
|
||||
"classname" "mp_dom_spawn_axis_start"
|
||||
"origin" "620.0 0.0 0.0"
|
||||
"angles" "0 180 0"
|
||||
}
|
||||
{
|
||||
"classname" "mp_dom_spawn_axis_start"
|
||||
"origin" "610.0 0.0 0.0"
|
||||
"angles" "0 180 0"
|
||||
}
|
||||
{
|
||||
"classname" "mp_dom_spawn_axis_start"
|
||||
"origin" "600.0 0.0 0.0"
|
||||
"angles" "0 180 0"
|
||||
}
|
||||
{
|
||||
"classname" "mp_dom_spawn_axis_start"
|
||||
"origin" "640.0 0.0 0.0"
|
||||
"angles" "0 180 0"
|
||||
}
|
||||
{
|
||||
"classname" "mp_dom_spawn_axis_start"
|
||||
"origin" "650.0 0.0 0.0"
|
||||
"angles" "0 180 0"
|
||||
}
|
||||
{
|
||||
"classname" "mp_dom_spawn_axis_start"
|
||||
"origin" "660.0 0.0 0.0"
|
||||
"angles" "0 180 0"
|
||||
}
|
||||
{
|
||||
"classname" "mp_dom_spawn_axis_start"
|
||||
"origin" "670.0 0.0 0.0"
|
||||
"angles" "0 180 0"
|
||||
}
|
||||
{
|
||||
"classname" "mp_dom_spawn_axis_start"
|
||||
"origin" "680.0 0.0 0.0"
|
||||
"angles" "0 180 0"
|
||||
}
|
||||
|
||||
{
|
||||
"angles" "0 0 0"
|
||||
"origin" "-630.0 0.0 0.0"
|
||||
"classname" "mp_dom_spawn_allies_start"
|
||||
}
|
||||
{
|
||||
"angles" "0 0 0"
|
||||
"origin" "-620.0 0.0 0.0"
|
||||
"classname" "mp_dom_spawn_allies_start"
|
||||
}
|
||||
{
|
||||
"angles" "0 0 0"
|
||||
"origin" "-610.0 0.0 0.0"
|
||||
"classname" "mp_dom_spawn_allies_start"
|
||||
}
|
||||
{
|
||||
"angles" "0 0 0"
|
||||
"origin" "-600.0 0.0 0.0"
|
||||
"classname" "mp_dom_spawn_allies_start"
|
||||
}
|
||||
{
|
||||
"angles" "0 0 0"
|
||||
"origin" "-640.0 0.0 0.0"
|
||||
"classname" "mp_dom_spawn_allies_start"
|
||||
}
|
||||
{
|
||||
"angles" "0 0 0"
|
||||
"origin" "-650.0 0.0 0.0"
|
||||
"classname" "mp_dom_spawn_allies_start"
|
||||
}
|
||||
{
|
||||
"angles" "0 0 0"
|
||||
"origin" "-660.0 0.0 0.0"
|
||||
"classname" "mp_dom_spawn_allies_start"
|
||||
}
|
||||
{
|
||||
"angles" "0 0 0"
|
||||
"origin" "-670.0 0.0 0.0"
|
||||
"classname" "mp_dom_spawn_allies_start"
|
||||
}
|
||||
{
|
||||
"angles" "0 0 0"
|
||||
"origin" "-680.0 0.0 0.0"
|
||||
"classname" "mp_dom_spawn_allies_start"
|
||||
}
|
||||
|
||||
|
||||
|
||||
{
|
||||
"targetname" "flag_descriptor"
|
||||
"origin" "0.0 0.0 0.0"
|
||||
"script_linkto" "flag1 flag3"
|
||||
"script_linkname" "flag2"
|
||||
"classname" "script_origin"
|
||||
}
|
||||
{
|
||||
"targetname" "flag_descriptor"
|
||||
"origin" "-500.0 400.0 0.0"
|
||||
"script_linkto" "flag2 flag1"
|
||||
"script_linkname" "flag3"
|
||||
"classname" "script_origin"
|
||||
}
|
||||
{
|
||||
"targetname" "flag_descriptor"
|
||||
"origin" "500.0 -400 0.0"
|
||||
"script_linkto" "flag2 flag3"
|
||||
"script_linkname" "flag1"
|
||||
"classname" "script_origin"
|
||||
}
|
||||
{
|
||||
"classname" "trigger_radius"
|
||||
"radius" "160"
|
||||
"height" "128"
|
||||
"targetname" "flag_primary"
|
||||
"origin" "500.0 -400 -50.0"
|
||||
"script_gameobjectname" "dom onslaught"
|
||||
"model" "prop_flag_neutral"
|
||||
"script_label" "_a"
|
||||
}
|
||||
{
|
||||
"script_label" "_b"
|
||||
"model" "prop_flag_neutral"
|
||||
"script_gameobjectname" "dom onslaught"
|
||||
"origin" "0.0 0.0 -50.0"
|
||||
"targetname" "flag_primary"
|
||||
"height" "128"
|
||||
"radius" "160"
|
||||
"classname" "trigger_radius"
|
||||
"angles" "0 270 0"
|
||||
}
|
||||
{
|
||||
"script_label" "_c"
|
||||
"model" "prop_flag_neutral"
|
||||
"script_gameobjectname" "dom onslaught"
|
||||
"origin" "-500.0 400.0 -50.0"
|
||||
"targetname" "flag_primary"
|
||||
"height" "128"
|
||||
"radius" "160"
|
||||
"classname" "trigger_radius"
|
||||
}
|
||||
@@ -1,360 +0,0 @@
|
||||
InitStingerUsage()
|
||||
{
|
||||
self.stingerStage = undefined;
|
||||
self.stingerTarget = undefined;
|
||||
self.stingerLockStartTime = undefined;
|
||||
self.stingerLostSightlineTime = undefined;
|
||||
|
||||
self thread ResetStingerLockingOnDeath();
|
||||
level.stingerTargets = [];
|
||||
}
|
||||
|
||||
|
||||
ResetStingerLocking()
|
||||
{
|
||||
if ( !IsDefined( self.stingerUseEntered ) )
|
||||
return;
|
||||
self.stingerUseEntered = undefined;
|
||||
|
||||
self notify( "stop_javelin_locking_feedback" );
|
||||
self notify( "stop_javelin_locked_feedback" );
|
||||
|
||||
self WeaponLockFree();
|
||||
InitStingerUsage();
|
||||
}
|
||||
|
||||
|
||||
ResetStingerLockingOnDeath()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
|
||||
self notify ( "ResetStingerLockingOnDeath" );
|
||||
self endon ( "ResetStingerLockingOnDeath" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "death" );
|
||||
self ResetStingerLocking();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
StillValidStingerLock( ent )
|
||||
{
|
||||
assert( IsDefined( self ) );
|
||||
|
||||
if ( !IsDefined( ent ) )
|
||||
return false;
|
||||
if ( !(self WorldPointInReticle_Circle( ent.origin, 65, 85 )) )
|
||||
return false;
|
||||
|
||||
if ( self.stingerTarget == level.ac130.planeModel && !isDefined( level.ac130player ) )
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
LoopStingerLockingFeedback()
|
||||
{
|
||||
self endon( "stop_javelin_locking_feedback" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
if ( isDefined( level.chopper ) && isDefined( level.chopper.gunner ) && isDefined( self.stingerTarget ) && self.stingerTarget == level.chopper )
|
||||
level.chopper.gunner playLocalSound( "missile_locking" );
|
||||
|
||||
if ( isDefined( level.ac130player ) && isDefined( self.stingerTarget ) && self.stingerTarget == level.ac130.planeModel )
|
||||
level.ac130player playLocalSound( "missile_locking" );
|
||||
|
||||
self playLocalSound( "stinger_locking" );
|
||||
self PlayRumbleOnEntity( "ac130_25mm_fire" );
|
||||
|
||||
wait 0.6;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
LoopStingerLockedFeedback()
|
||||
{
|
||||
self endon( "stop_javelin_locked_feedback" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
if ( isDefined( level.chopper ) && isDefined( level.chopper.gunner ) && isDefined( self.stingerTarget ) && self.stingerTarget == level.chopper )
|
||||
level.chopper.gunner playLocalSound( "missile_locking" );
|
||||
|
||||
if ( isDefined( level.ac130player ) && isDefined( self.stingerTarget ) && self.stingerTarget == level.ac130.planeModel )
|
||||
level.ac130player playLocalSound( "missile_locking" );
|
||||
|
||||
self playLocalSound( "stinger_locked" );
|
||||
self PlayRumbleOnEntity( "ac130_25mm_fire" );
|
||||
|
||||
wait 0.25;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/#
|
||||
DrawStar( point )
|
||||
{
|
||||
Line( point + (10,0,0), point - (10,0,0) );
|
||||
Line( point + (0,10,0), point - (0,10,0) );
|
||||
Line( point + (0,0,10), point - (0,0,10) );
|
||||
}
|
||||
#/
|
||||
|
||||
|
||||
LockSightTest( target )
|
||||
{
|
||||
eyePos = self GetEye();
|
||||
|
||||
if ( !isDefined( target ) ) //targets can disapear during targeting.
|
||||
return false;
|
||||
|
||||
passed = BulletTracePassed( eyePos, target.origin, false, target );
|
||||
if ( passed )
|
||||
return true;
|
||||
|
||||
front = target GetPointInBounds( 1, 0, 0 );
|
||||
passed = BulletTracePassed( eyePos, front, false, target );
|
||||
if ( passed )
|
||||
return true;
|
||||
|
||||
back = target GetPointInBounds( -1, 0, 0 );
|
||||
passed = BulletTracePassed( eyePos, back, false, target );
|
||||
if ( passed )
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
StingerDebugDraw( target )
|
||||
{
|
||||
/#
|
||||
if ( GetDVar( "missileDebugDraw" ) != "1" )
|
||||
return;
|
||||
if ( !IsDefined( target ) )
|
||||
return;
|
||||
|
||||
org = target.origin;
|
||||
DrawStar( org );
|
||||
org = target GetPointInBounds( 1, 0, 0 );
|
||||
DrawStar( org );
|
||||
org = target GetPointInBounds( -1, 0, 0 );
|
||||
DrawStar( org );
|
||||
#/
|
||||
}
|
||||
|
||||
|
||||
SoftSightTest()
|
||||
{
|
||||
LOST_SIGHT_LIMIT = 500;
|
||||
|
||||
if ( self LockSightTest( self.stingerTarget ) )
|
||||
{
|
||||
self.stingerLostSightlineTime = 0;
|
||||
return true;
|
||||
}
|
||||
|
||||
if ( self.stingerLostSightlineTime == 0 )
|
||||
self.stingerLostSightlineTime = getTime();
|
||||
|
||||
timePassed = GetTime() - self.stingerLostSightlineTime;
|
||||
//PrintLn( "Losing sight of target [", timePassed, "]..." );
|
||||
|
||||
if ( timePassed >= LOST_SIGHT_LIMIT )
|
||||
{
|
||||
//PrintLn( "Lost sight of target." );
|
||||
ResetStingerLocking();
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
GetTargetList()
|
||||
{
|
||||
targets = [];
|
||||
|
||||
if ( level.teamBased )
|
||||
{
|
||||
if ( IsDefined( level.chopper ) && ( level.chopper.team != self.team || level.chopper.owner == self ) )
|
||||
targets[targets.size] = level.chopper;
|
||||
|
||||
if ( isDefined( level.ac130player ) && level.ac130player.team != self.team )
|
||||
targets[targets.size] = level.ac130.planemodel;
|
||||
|
||||
if ( isDefined( level.harriers) )
|
||||
{
|
||||
foreach( harrier in level.harriers )
|
||||
{
|
||||
if ( isDefined( harrier ) && ( harrier.team != self.team || ( isDefined( harrier.owner ) && harrier.owner == self ) ) )
|
||||
targets[targets.size] = harrier;
|
||||
}
|
||||
}
|
||||
|
||||
if ( level.UAVModels[level.otherTeam[self.team]].size )
|
||||
{
|
||||
foreach ( UAV in level.UAVModels[level.otherTeam[self.team]] )
|
||||
targets[targets.size] = UAV;
|
||||
}
|
||||
|
||||
if ( isDefined( level.littleBird ) )
|
||||
{
|
||||
foreach ( bird in level.littleBird )
|
||||
{
|
||||
if ( !isDefined( bird ) )
|
||||
continue;
|
||||
|
||||
if ( self.team != bird.owner.team || self == bird.owner )
|
||||
targets[targets.size] = bird;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
if ( IsDefined( level.chopper ) && ( level.chopper.owner != self ) ) ///check for teams
|
||||
targets[targets.size] = level.chopper;
|
||||
|
||||
if ( isDefined( level.ac130player ) )
|
||||
targets[targets.size] = level.ac130.planemodel;
|
||||
|
||||
if ( isDefined( level.harriers) )
|
||||
{
|
||||
foreach( harrier in level.harriers )
|
||||
{
|
||||
if ( isDefined( harrier ) )
|
||||
targets[targets.size] = harrier;
|
||||
}
|
||||
}
|
||||
|
||||
if ( level.UAVModels.size )
|
||||
{
|
||||
foreach ( ownerGuid, UAV in level.UAVModels )
|
||||
{
|
||||
if ( isDefined( UAV.owner ) && UAV.owner == self )
|
||||
continue;
|
||||
|
||||
targets[targets.size] = UAV;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return targets;
|
||||
}
|
||||
|
||||
|
||||
StingerUsageLoop()
|
||||
{
|
||||
self endon("death");
|
||||
self endon("disconnect");
|
||||
|
||||
LOCK_LENGTH = 1000;
|
||||
|
||||
InitStingerUsage();
|
||||
|
||||
for( ;; )
|
||||
{
|
||||
wait 0.05;
|
||||
|
||||
weapon = self getCurrentWeapon();
|
||||
|
||||
if ( weapon != "stinger_mp" && weapon != "at4_mp" )
|
||||
{
|
||||
ResetStingerLocking();
|
||||
continue;
|
||||
}
|
||||
|
||||
if ( self PlayerADS() < 0.95 )
|
||||
{
|
||||
ResetStingerLocking();
|
||||
continue;
|
||||
}
|
||||
|
||||
self.stingerUseEntered = true;
|
||||
|
||||
if ( !IsDefined( self.stingerStage ) )
|
||||
self.stingerStage = 0;
|
||||
|
||||
StingerDebugDraw( self.stingerTarget );
|
||||
|
||||
if ( self.stingerStage == 0 ) // searching for target
|
||||
{
|
||||
targets = GetTargetList();
|
||||
if ( targets.size == 0 )
|
||||
continue;
|
||||
|
||||
targetsInReticle = [];
|
||||
foreach ( target in targets )
|
||||
{
|
||||
if ( !isDefined( target ) )
|
||||
continue;
|
||||
|
||||
insideReticle = self WorldPointInReticle_Circle( target.origin, 65, 75 );
|
||||
|
||||
if ( insideReticle )
|
||||
targetsInReticle[targetsInReticle.size] = target;
|
||||
}
|
||||
if ( targetsInReticle.size == 0 )
|
||||
continue;
|
||||
|
||||
sortedTargets = SortByDistance( targetsInReticle, self.origin );
|
||||
if ( !( self LockSightTest( sortedTargets[0] ) ) )
|
||||
continue;
|
||||
|
||||
//PrintLn( "Found a target to lock to..." );
|
||||
thread LoopStingerLockingFeedback();
|
||||
self.stingerTarget = sortedTargets[0];
|
||||
self.stingerLockStartTime = GetTime();
|
||||
self.stingerStage = 1;
|
||||
self.stingerLostSightlineTime = 0;
|
||||
}
|
||||
|
||||
if ( self.stingerStage == 1 ) // locking on to a target
|
||||
{
|
||||
if ( !(self StillValidStingerLock( self.stingerTarget )) )
|
||||
{
|
||||
//PrintLn( "Failed to get lock." );
|
||||
ResetStingerLocking();
|
||||
continue;
|
||||
}
|
||||
|
||||
passed = SoftSightTest();
|
||||
if ( !passed )
|
||||
continue;
|
||||
|
||||
timePassed = getTime() - self.stingerLockStartTime;
|
||||
//PrintLn( "Locking [", timePassed, "]..." );
|
||||
if ( timePassed < LOCK_LENGTH )
|
||||
continue;
|
||||
|
||||
self notify( "stop_javelin_locking_feedback" );
|
||||
thread LoopStingerLockedFeedback();
|
||||
|
||||
//PrintLn( "Locked!");
|
||||
if ( self.stingerTarget.model == "vehicle_av8b_harrier_jet_mp" || self.stingerTarget.model == "vehicle_little_bird_armed" )
|
||||
self WeaponLockFinalize( self.stingerTarget );
|
||||
else
|
||||
self WeaponLockFinalize( self.stingerTarget, (100,0,-32) );
|
||||
|
||||
self.stingerStage = 2;
|
||||
}
|
||||
|
||||
if ( self.stingerStage == 2 ) // target locked
|
||||
{
|
||||
passed = SoftSightTest();
|
||||
if ( !passed )
|
||||
continue;
|
||||
|
||||
if ( !(self StillValidStingerLock( self.stingerTarget )) )
|
||||
{
|
||||
//PrintLn( "Gave up lock." );
|
||||
ResetStingerLocking();
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,127 +0,0 @@
|
||||
/*
|
||||
_bot_http
|
||||
Author: INeedGames
|
||||
Date: 09/26/2020
|
||||
The HTTP module to use with IW4X's gsc funcs
|
||||
*/
|
||||
|
||||
#include maps\mp\bots\_bot_utility;
|
||||
|
||||
/*
|
||||
Does the version check, if we are up too date
|
||||
*/
|
||||
doVersionCheck()
|
||||
{
|
||||
remoteVersion = getRemoteVersion();
|
||||
|
||||
if ( !isDefined( remoteVersion ) )
|
||||
{
|
||||
PrintConsole( "Error getting remote version of Bot Warfare.\n" );
|
||||
return false;
|
||||
}
|
||||
|
||||
if ( level.bw_VERSION != remoteVersion )
|
||||
{
|
||||
PrintConsole( "There is a new version of Bot Warfare!\n" );
|
||||
PrintConsole( "You are on version " + level.bw_VERSION + " but " + remoteVersion + " is available!\n" );
|
||||
return false;
|
||||
}
|
||||
|
||||
PrintConsole( "You are on the latest version of Bot Warfare!\n" );
|
||||
return true;
|
||||
}
|
||||
|
||||
/*
|
||||
Will attempt to retreive waypoints from the internet
|
||||
*/
|
||||
getRemoteWaypoints( mapname )
|
||||
{
|
||||
url = "https://raw.githubusercontent.com/ineedbots/iw4x_waypoints/master/" + mapname + "_wp.csv";
|
||||
filename = "waypoints/" + mapname + "_wp.csv";
|
||||
|
||||
PrintConsole( "Attempting to get remote waypoints from " + url + "\n" );
|
||||
res = getLinesFromUrl( url, filename );
|
||||
|
||||
if ( !res.lines.size )
|
||||
return;
|
||||
|
||||
waypointCount = int( res.lines[0] );
|
||||
|
||||
waypoints = [];
|
||||
PrintConsole( "Loading remote waypoints...\n" );
|
||||
|
||||
for ( i = 1; i <= waypointCount; i++ )
|
||||
{
|
||||
tokens = tokenizeLine( res.lines[i], "," );
|
||||
|
||||
waypoint = parseTokensIntoWaypoint( tokens );
|
||||
|
||||
waypoints[i - 1] = waypoint;
|
||||
}
|
||||
|
||||
if ( waypoints.size )
|
||||
{
|
||||
level.waypoints = waypoints;
|
||||
PrintConsole( "Loaded " + waypoints.size + " waypoints from remote.\n" );
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Returns the version of bot warfare found on the internet
|
||||
*/
|
||||
getRemoteVersion()
|
||||
{
|
||||
request = httpGet( "https://raw.githubusercontent.com/ineedbots/iw4x_waypoints/master/version.txt" );
|
||||
|
||||
if ( !isDefined( request ) )
|
||||
return undefined;
|
||||
|
||||
request waittill( "done", success, data );
|
||||
|
||||
if ( !success )
|
||||
return undefined;
|
||||
|
||||
return strtok( data, "\n" )[0];
|
||||
}
|
||||
|
||||
/*
|
||||
Returns an array of each line from the response of the http url request
|
||||
*/
|
||||
getLinesFromUrl( url, filename )
|
||||
{
|
||||
result = spawnStruct();
|
||||
result.lines = [];
|
||||
|
||||
request = httpGet( url );
|
||||
|
||||
if ( !isDefined( request ) )
|
||||
return result;
|
||||
|
||||
request waittill( "done", success, data );
|
||||
|
||||
if ( !success )
|
||||
return result;
|
||||
|
||||
fileWrite( filename, data, "write" );
|
||||
|
||||
line = "";
|
||||
|
||||
for ( i = 0; i < data.size; i++ )
|
||||
{
|
||||
c = data[i];
|
||||
|
||||
if ( c == "\n" )
|
||||
{
|
||||
result.lines[result.lines.size] = line;
|
||||
|
||||
line = "";
|
||||
continue;
|
||||
}
|
||||
|
||||
line += c;
|
||||
}
|
||||
|
||||
result.lines[result.lines.size] = line;
|
||||
|
||||
return result;
|
||||
}
|
||||
@@ -1,821 +0,0 @@
|
||||
/*
|
||||
_wp_editor
|
||||
Author: INeedGames
|
||||
Date: 09/26/2020
|
||||
The ingame waypoint editor.
|
||||
*/
|
||||
|
||||
#include common_scripts\utility;
|
||||
#include maps\mp\_utility;
|
||||
#include maps\mp\gametypes\_hud_util;
|
||||
#include maps\mp\bots\_bot_utility;
|
||||
|
||||
init()
|
||||
{
|
||||
if ( getDvar( "bots_main_debug" ) == "" )
|
||||
setDvar( "bots_main_debug", 0 );
|
||||
|
||||
if ( !getDVarint( "bots_main_debug" ) )
|
||||
return;
|
||||
|
||||
if ( !getDVarint( "developer" ) )
|
||||
{
|
||||
setdvar( "developer_script", 1 );
|
||||
setdvar( "developer", 1 );
|
||||
|
||||
setdvar( "sv_mapRotation", "map " + getDvar( "mapname" ) );
|
||||
exitLevel( false );
|
||||
}
|
||||
|
||||
setDvar( "bots_main", 0 );
|
||||
setdvar( "bots_main_menu", 0 );
|
||||
setdvar( "bots_manage_fill_mode", 0 );
|
||||
setdvar( "bots_manage_fill", 0 );
|
||||
setdvar( "bots_manage_add", 0 );
|
||||
setdvar( "bots_manage_fill_kick", 1 );
|
||||
setDvar( "bots_manage_fill_spec", 1 );
|
||||
|
||||
if ( getDvar( "bots_main_debug_distance" ) == "" )
|
||||
setDvar( "bots_main_debug_distance", 512.0 );
|
||||
|
||||
if ( getDvar( "bots_main_debug_cone" ) == "" )
|
||||
setDvar( "bots_main_debug_cone", 0.65 );
|
||||
|
||||
if ( getDvar( "bots_main_debug_minDist" ) == "" )
|
||||
setDvar( "bots_main_debug_minDist", 32.0 );
|
||||
|
||||
if ( getDvar( "bots_main_debug_drawThrough" ) == "" )
|
||||
setDvar( "bots_main_debug_drawThrough", false );
|
||||
|
||||
setDvar( "player_sustainAmmo", 1 );
|
||||
|
||||
level.waypoints = [];
|
||||
level.waypointCount = 0;
|
||||
|
||||
level waittill( "connected", player );
|
||||
player thread onPlayerSpawned();
|
||||
}
|
||||
|
||||
onPlayerSpawned()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "spawned_player" );
|
||||
self thread startDev();
|
||||
}
|
||||
}
|
||||
|
||||
StartDev()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
level.wpToLink = -1;
|
||||
level.autoLink = false;
|
||||
self.nearest = -1;
|
||||
|
||||
self takeAllWeapons();
|
||||
self giveWeapon( "m16_gl_mp" ); //to knife windows
|
||||
self giveWeapon( "javelin_mp" ); //to mark jav spots
|
||||
self SetOffhandPrimaryClass( "other" );
|
||||
self giveWeapon( "semtex_mp" );
|
||||
self _clearperks();
|
||||
self.specialty = [];
|
||||
self maps\mp\perks\_perks::givePerk( "specialty_fastmantle" );
|
||||
self maps\mp\perks\_perks::givePerk( "specialty_falldamage" );
|
||||
self maps\mp\perks\_perks::givePerk( "specialty_marathon" );
|
||||
self maps\mp\perks\_perks::givePerk( "specialty_lightweight" );
|
||||
self freezecontrols( false );
|
||||
|
||||
self thread watchAddWaypointCommand();
|
||||
self thread watchDeleteAllWaypointsCommand();
|
||||
self thread watchDeleteWaypointCommand();
|
||||
self thread watchLinkWaypointCommand();
|
||||
self thread watchLoadWaypointsCommand();
|
||||
self thread watchSaveWaypointsCommand();
|
||||
self thread watchUnlinkWaypointCommand();
|
||||
self thread watchAutoLinkCommand();
|
||||
self thread updateWaypointsStats();
|
||||
self thread watchAstarCommand();
|
||||
|
||||
self thread sayExtras();
|
||||
}
|
||||
|
||||
sayExtras()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
self iprintln( "Before adding waypoints, holding buttons:" );
|
||||
wait 4;
|
||||
self iprintln( "ADS - climb" );
|
||||
self iprintln( "Use + Attack - tube" );
|
||||
self iprintln( "Attack - grenade" );
|
||||
self iprintln( "Use - claymore" );
|
||||
wait 4;
|
||||
self iprintln( "Else the waypoint will be your stance." );
|
||||
self iprintln( "Making a crouch waypoint with only one link..." );
|
||||
self iprintln( "Makes a camping waypoint." );
|
||||
}
|
||||
|
||||
watchAstarCommand()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self notifyOnPlayerCommand( "astar", "+gostand" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "astar" );
|
||||
|
||||
if ( 1 )
|
||||
continue;
|
||||
|
||||
self iprintln( "Start AStar" );
|
||||
self.astar = undefined;
|
||||
astar = spawnStruct();
|
||||
astar.start = self.origin;
|
||||
|
||||
self waittill( "astar" );
|
||||
self iprintln( "End AStar" );
|
||||
astar.goal = self.origin;
|
||||
|
||||
astar.nodes = AStarSearch( astar.start, astar.goal, undefined, true );
|
||||
self iprintln( "AStar size: " + astar.nodes.size );
|
||||
|
||||
self.astar = astar;
|
||||
}
|
||||
}
|
||||
|
||||
updateWaypointsStats()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self initHudElem( "TotalWps:", 102, 5 );
|
||||
totalWpsHud = self initHudElem( "", 180, 5 );
|
||||
self initHudElem( "NearestWP:", 102, 15 );
|
||||
nearestWP = self initHudElem( "", 180, 15 );
|
||||
self initHudElem( "Childs:", 102, 25 );
|
||||
children = self initHudElem( "", 160, 25 );
|
||||
self initHudElem( "Type:", 102, 35 );
|
||||
type = self initHudElem( "", 160, 35 );
|
||||
self initHudElem( "ToLink:", 102, 45 );
|
||||
wpToLink = self initHudElem( "", 160, 45 );
|
||||
|
||||
infotext = self initHudElem2();
|
||||
self initHudElem3();
|
||||
self initHudElem4();
|
||||
|
||||
for ( time = 0;; time += 0.05 )
|
||||
{
|
||||
wait 0.05;
|
||||
|
||||
totalWpsHud setText( level.waypointCount );
|
||||
|
||||
closest = -1;
|
||||
myEye = self getEye();
|
||||
myAngles = self GetPlayerAngles();
|
||||
|
||||
for ( i = 0; i < level.waypointCount; i++ )
|
||||
{
|
||||
if ( closest == -1 || closer( self.origin, level.waypoints[i].origin, level.waypoints[closest].origin ) )
|
||||
closest = i;
|
||||
|
||||
wpOrg = level.waypoints[i].origin + ( 0, 0, 25 );
|
||||
|
||||
if ( distance( level.waypoints[i].origin, self.origin ) < getDvarFloat( "bots_main_debug_distance" ) && ( bulletTracePassed( myEye, wpOrg, false, self ) || getDVarint( "bots_main_debug_drawThrough" ) ) )
|
||||
{
|
||||
for ( h = level.waypoints[i].children.size - 1; h >= 0; h-- )
|
||||
line( wpOrg, level.waypoints[level.waypoints[i].children[h]].origin + ( 0, 0, 25 ), ( 1, 0, 1 ) );
|
||||
|
||||
if ( getConeDot( wpOrg, myEye, myAngles ) > getDvarFloat( "bots_main_debug_cone" ) )
|
||||
print3d( wpOrg, i, ( 1, 0, 0 ), 2 );
|
||||
|
||||
if ( isDefined( level.waypoints[i].angles ) && level.waypoints[i].type != "stand" )
|
||||
line( wpOrg, wpOrg + AnglesToForward( level.waypoints[i].angles ) * 64, ( 1, 1, 1 ) );
|
||||
|
||||
if ( isDefined( level.waypoints[i].jav_point ) )
|
||||
line( wpOrg, level.waypoints[i].jav_point, ( 0, 0, 0 ) );
|
||||
}
|
||||
}
|
||||
|
||||
self.nearest = closest;
|
||||
|
||||
nearestWP setText( self.nearest );
|
||||
|
||||
children setText( buildChildCountString( self.nearest ) );
|
||||
|
||||
type setText( buildTypeString( self.nearest ) );
|
||||
|
||||
wpToLink setText( level.wpToLink );
|
||||
|
||||
infotext.x = infotext.x - 2;
|
||||
|
||||
if ( infotext.x <= -800 )
|
||||
infotext.x = 800;
|
||||
|
||||
if ( self UseButtonPressed() && time > 2 )
|
||||
{
|
||||
time = 0;
|
||||
self iPrintLnBold( self.nearest + " children: " + buildChildString( self.nearest ) );
|
||||
}
|
||||
|
||||
if ( isDefined( self.astar ) )
|
||||
{
|
||||
print3d( self.astar.start + ( 0, 0, 35 ), "start", ( 0, 0, 1 ), 2 );
|
||||
print3d( self.astar.goal + ( 0, 0, 35 ), "goal", ( 0, 0, 1 ), 2 );
|
||||
|
||||
prev = self.astar.start + ( 0, 0, 35 );
|
||||
|
||||
for ( i = self.astar.nodes.size - 1; i >= 0; i-- )
|
||||
{
|
||||
node = self.astar.nodes[i];
|
||||
|
||||
line( prev, level.waypoints[node].origin + ( 0, 0, 35 ), ( 0, 1, 1 ) );
|
||||
|
||||
prev = level.waypoints[node].origin + ( 0, 0, 35 );
|
||||
}
|
||||
|
||||
line( prev, self.astar.goal + ( 0, 0, 35 ), ( 0, 1, 1 ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
watchLoadWaypointsCommand()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self notifyOnPlayerCommand( "[{+actionslot 2}]", "+actionslot 2" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "[{+actionslot 2}]" );
|
||||
self LoadWaypoints();
|
||||
}
|
||||
}
|
||||
|
||||
watchAddWaypointCommand()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self notifyOnPlayerCommand( "[{+smoke}]", "+smoke" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "[{+smoke}]" );
|
||||
self AddWaypoint();
|
||||
}
|
||||
}
|
||||
|
||||
watchAutoLinkCommand()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self notifyOnPlayerCommand( "[{+frag}]", "+frag" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "[{+frag}]" );
|
||||
|
||||
if ( level.autoLink )
|
||||
{
|
||||
self iPrintlnBold( "Auto link disabled" );
|
||||
level.autoLink = false;
|
||||
level.wpToLink = -1;
|
||||
}
|
||||
else
|
||||
{
|
||||
self iPrintlnBold( "Auto link enabled" );
|
||||
level.autoLink = true;
|
||||
level.wpToLink = self.nearest;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
watchLinkWaypointCommand()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self notifyOnPlayerCommand( "[{+melee}]", "+melee" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "[{+melee}]" );
|
||||
self LinkWaypoint( self.nearest );
|
||||
}
|
||||
}
|
||||
|
||||
watchUnlinkWaypointCommand()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self notifyOnPlayerCommand( "[{+reload}]", "+reload" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "[{+reload}]" );
|
||||
self UnLinkWaypoint( self.nearest );
|
||||
}
|
||||
}
|
||||
|
||||
watchDeleteWaypointCommand()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self notifyOnPlayerCommand( "[{+actionslot 3}]", "+actionslot 3" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "[{+actionslot 3}]" );
|
||||
self DeleteWaypoint( self.nearest );
|
||||
}
|
||||
}
|
||||
|
||||
watchDeleteAllWaypointsCommand()
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
self endon( "death" );
|
||||
|
||||
self notifyOnPlayerCommand( "[{+actionslot 4}]", "+actionslot 4" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "[{+actionslot 4}]" );
|
||||
self DeleteAllWaypoints();
|
||||
}
|
||||
}
|
||||
|
||||
watchSaveWaypointsCommand()
|
||||
{
|
||||
self endon( "death" );
|
||||
self endon( "disconnect" );
|
||||
|
||||
self notifyOnPlayerCommand( "[{+actionslot 1}]", "+actionslot 1" );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
self waittill( "[{+actionslot 1}]" );
|
||||
|
||||
self checkForWarnings();
|
||||
wait 1;
|
||||
|
||||
logprint( "***********ABiliTy's WPDump**************\n\n" );
|
||||
logprint( "\n\n\n\n" );
|
||||
mpnm = getMapName( getdvar( "mapname" ) );
|
||||
logprint( "\n\n" + mpnm + "()\n{\n/*" );
|
||||
logprint( "*/waypoints = [];\n/*" );
|
||||
|
||||
for ( i = 0; i < level.waypointCount; i++ )
|
||||
{
|
||||
logprint( "*/waypoints[" + i + "] = spawnstruct();\n/*" );
|
||||
logprint( "*/waypoints[" + i + "].origin = " + level.waypoints[i].origin + ";\n/*" );
|
||||
logprint( "*/waypoints[" + i + "].type = \"" + level.waypoints[i].type + "\";\n/*" );
|
||||
|
||||
for ( c = 0; c < level.waypoints[i].children.size; c++ )
|
||||
{
|
||||
logprint( "*/waypoints[" + i + "].children[" + c + "] = " + level.waypoints[i].children[c] + ";\n/*" );
|
||||
}
|
||||
|
||||
if ( isDefined( level.waypoints[i].angles ) && ( level.waypoints[i].type == "claymore" || level.waypoints[i].type == "tube" || ( level.waypoints[i].type == "crouch" && level.waypoints[i].children.size == 1 ) || level.waypoints[i].type == "climb" || level.waypoints[i].type == "grenade" ) )
|
||||
logprint( "*/waypoints[" + i + "].angles = " + level.waypoints[i].angles + ";\n/*" );
|
||||
|
||||
if ( isDefined( level.waypoints[i].jav_point ) && level.waypoints[i].type == "javelin" )
|
||||
logprint( "*/waypoints[" + i + "].jav_point = " + level.waypoints[i].jav_point + ";\n/*" );
|
||||
}
|
||||
|
||||
logprint( "*/return waypoints;\n}\n\n\n\n" );
|
||||
|
||||
filename = "waypoints/" + getdvar( "mapname" ) + "_wp.csv";
|
||||
|
||||
PrintLn( "********* Start Bot Warfare WPDump *********" );
|
||||
PrintLn( level.waypointCount );
|
||||
|
||||
fileWrite( filename, level.waypointCount + "\n", "write" );
|
||||
|
||||
for ( i = 0; i < level.waypointCount; i++ )
|
||||
{
|
||||
str = "";
|
||||
wp = level.waypoints[i];
|
||||
|
||||
str += wp.origin[0] + " " + wp.origin[1] + " " + wp.origin[2] + ",";
|
||||
|
||||
for ( h = 0; h < wp.children.size; h++ )
|
||||
{
|
||||
str += wp.children[h];
|
||||
|
||||
if ( h < wp.children.size - 1 )
|
||||
str += " ";
|
||||
}
|
||||
|
||||
str += "," + wp.type + ",";
|
||||
|
||||
if ( isDefined( wp.angles ) )
|
||||
str += wp.angles[0] + " " + wp.angles[1] + " " + wp.angles[2] + ",";
|
||||
else
|
||||
str += ",";
|
||||
|
||||
if ( isDefined( wp.jav_point ) )
|
||||
str += wp.jav_point[0] + " " + wp.jav_point[1] + " " + wp.jav_point[2] + ",";
|
||||
else
|
||||
str += ",";
|
||||
|
||||
PrintLn( str );
|
||||
fileWrite( filename, str + "\n", "append" );
|
||||
}
|
||||
|
||||
PrintLn( "\n\n\n\n\n\n" );
|
||||
|
||||
self iprintln( "Saved!!! to " + filename );
|
||||
}
|
||||
}
|
||||
|
||||
LoadWaypoints()
|
||||
{
|
||||
self DeleteAllWaypoints();
|
||||
self iPrintlnBold( "Loading WPS..." );
|
||||
load_waypoints();
|
||||
|
||||
wait 1;
|
||||
|
||||
self checkForWarnings();
|
||||
}
|
||||
|
||||
checkForWarnings()
|
||||
{
|
||||
if ( level.waypointCount <= 0 )
|
||||
self iprintln( "WARNING: waypointCount is " + level.waypointCount );
|
||||
|
||||
if ( level.waypointCount != level.waypoints.size )
|
||||
self iprintln( "WARNING: waypointCount is not " + level.waypoints.size );
|
||||
|
||||
for ( i = 0; i < level.waypointCount; i++ )
|
||||
{
|
||||
if ( !isDefined( level.waypoints[i] ) )
|
||||
{
|
||||
self iprintln( "WARNING: waypoint " + i + " is undefined" );
|
||||
continue;
|
||||
}
|
||||
|
||||
if ( level.waypoints[i].children.size <= 0 )
|
||||
self iprintln( "WARNING: waypoint " + i + " childCount is " + level.waypoints[i].children.size );
|
||||
else
|
||||
{
|
||||
if ( !isDefined( level.waypoints[i].children ) || !isDefined( level.waypoints[i].children.size ) )
|
||||
{
|
||||
self iprintln( "WARNING: waypoint " + i + " children is not defined" );
|
||||
}
|
||||
else
|
||||
{
|
||||
for ( h = level.waypoints[i].children.size - 1; h >= 0; h-- )
|
||||
{
|
||||
child = level.waypoints[i].children[h];
|
||||
|
||||
if ( !isDefined( level.waypoints[child] ) )
|
||||
self iprintln( "WARNING: waypoint " + i + " child " + child + " is undefined" );
|
||||
else if ( child == i )
|
||||
self iprintln( "WARNING: waypoint " + i + " child " + child + " is itself" );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ( !isDefined( level.waypoints[i].type ) )
|
||||
{
|
||||
self iprintln( "WARNING: waypoint " + i + " type is undefined" );
|
||||
continue;
|
||||
}
|
||||
|
||||
if ( level.waypoints[i].type == "javelin" && !isDefined( level.waypoints[i].jav_point ) )
|
||||
self iprintln( "WARNING: waypoint " + i + " jav_point is undefined" );
|
||||
|
||||
if ( !isDefined( level.waypoints[i].angles ) && ( level.waypoints[i].type == "claymore" || level.waypoints[i].type == "tube" || ( level.waypoints[i].type == "crouch" && level.waypoints[i].children.size == 1 ) || level.waypoints[i].type == "climb" || level.waypoints[i].type == "grenade" ) )
|
||||
self iprintln( "WARNING: waypoint " + i + " angles is undefined" );
|
||||
}
|
||||
|
||||
// check reachability, assume bidirectional graph
|
||||
|
||||
wpIdx = randomInt( level.waypointCount );
|
||||
|
||||
for ( i = 0; i < level.waypointCount; i++ )
|
||||
{
|
||||
if ( i % 5 == 0 )
|
||||
wait 0.05;
|
||||
|
||||
astar = AStarSearch( level.waypoints[wpIdx].origin, level.waypoints[i].origin, undefined, true );
|
||||
|
||||
if ( astar.size <= 0 )
|
||||
self iprintln( "WARNING: waypoint " + wpIdx + " has no path to waypoint " + i );
|
||||
}
|
||||
|
||||
self iprintln( "Waypoint warnings check completed." );
|
||||
}
|
||||
|
||||
UnLinkWaypoint( nwp )
|
||||
{
|
||||
if ( nwp == -1 || distance( self.origin, level.waypoints[nwp].origin ) > getDvarFloat( "bots_main_debug_minDist" ) )
|
||||
{
|
||||
self iprintln( "Waypoint Unlink Cancelled " + level.wpToLink );
|
||||
level.wpToLink = -1;
|
||||
return;
|
||||
}
|
||||
|
||||
if ( level.wpToLink == -1 || nwp == level.wpToLink )
|
||||
{
|
||||
level.wpToLink = nwp;
|
||||
self iprintln( "Waypoint Unlink Started " + nwp );
|
||||
return;
|
||||
}
|
||||
|
||||
level.waypoints[nwp].children = array_remove( level.waypoints[nwp].children, level.wpToLink );
|
||||
level.waypoints[level.wpToLink].children = array_remove( level.waypoints[level.wpToLink].children, nwp );
|
||||
|
||||
self iprintln( "Waypoint " + nwp + " Broken to " + level.wpToLink );
|
||||
level.wpToLink = -1;
|
||||
}
|
||||
|
||||
LinkWaypoint( nwp )
|
||||
{
|
||||
if ( nwp == -1 || distance( self.origin, level.waypoints[nwp].origin ) > getDvarFloat( "bots_main_debug_minDist" ) )
|
||||
{
|
||||
self iprintln( "Waypoint Link Cancelled " + level.wpToLink );
|
||||
level.wpToLink = -1;
|
||||
return;
|
||||
}
|
||||
|
||||
if ( level.wpToLink == -1 || nwp == level.wpToLink )
|
||||
{
|
||||
level.wpToLink = nwp;
|
||||
self iprintln( "Waypoint Link Started " + nwp );
|
||||
return;
|
||||
}
|
||||
|
||||
weGood = true;
|
||||
|
||||
for ( i = level.waypoints[level.wpToLink].children.size - 1; i >= 0; i-- )
|
||||
{
|
||||
child = level.waypoints[level.wpToLink].children[i];
|
||||
|
||||
if ( child == nwp )
|
||||
{
|
||||
weGood = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if ( weGood )
|
||||
{
|
||||
for ( i = level.waypoints[nwp].children.size - 1; i >= 0; i-- )
|
||||
{
|
||||
child = level.waypoints[nwp].children[i];
|
||||
|
||||
if ( child == level.wpToLink )
|
||||
{
|
||||
weGood = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ( !weGood )
|
||||
{
|
||||
self iprintln( "Waypoint Link Cancelled " + nwp + " and " + level.wpToLink + " already linked." );
|
||||
level.wpToLink = -1;
|
||||
return;
|
||||
}
|
||||
|
||||
level.waypoints[level.wpToLink].children[level.waypoints[level.wpToLink].children.size] = nwp;
|
||||
level.waypoints[nwp].children[level.waypoints[nwp].children.size] = level.wpToLink;
|
||||
|
||||
self iprintln( "Waypoint " + nwp + " Linked to " + level.wpToLink );
|
||||
level.wpToLink = -1;
|
||||
}
|
||||
|
||||
DeleteWaypoint( nwp )
|
||||
{
|
||||
if ( nwp == -1 || distance( self.origin, level.waypoints[nwp].origin ) > getDvarFloat( "bots_main_debug_minDist" ) )
|
||||
{
|
||||
self iprintln( "No close enough waypoint to delete." );
|
||||
return;
|
||||
}
|
||||
|
||||
level.wpToLink = -1;
|
||||
|
||||
for ( i = level.waypoints[nwp].children.size - 1; i >= 0; i-- )
|
||||
{
|
||||
child = level.waypoints[nwp].children[i];
|
||||
|
||||
level.waypoints[child].children = array_remove( level.waypoints[child].children, nwp );
|
||||
}
|
||||
|
||||
for ( i = 0; i < level.waypointCount; i++ )
|
||||
{
|
||||
for ( h = level.waypoints[i].children.size - 1; h >= 0; h-- )
|
||||
{
|
||||
if ( level.waypoints[i].children[h] > nwp )
|
||||
level.waypoints[i].children[h]--;
|
||||
}
|
||||
}
|
||||
|
||||
for ( entry = 0; entry < level.waypointCount; entry++ )
|
||||
{
|
||||
if ( entry == nwp )
|
||||
{
|
||||
while ( entry < level.waypointCount - 1 )
|
||||
{
|
||||
level.waypoints[entry] = level.waypoints[entry + 1];
|
||||
entry++;
|
||||
}
|
||||
|
||||
level.waypoints[entry] = undefined;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
level.waypointCount--;
|
||||
|
||||
self iprintln( "DelWp " + nwp );
|
||||
}
|
||||
|
||||
AddWaypoint()
|
||||
{
|
||||
level.waypoints[level.waypointCount] = spawnstruct();
|
||||
|
||||
pos = self getOrigin();
|
||||
level.waypoints[level.waypointCount].origin = pos;
|
||||
|
||||
if ( isDefined( self.javelinTargetPoint ) )
|
||||
level.waypoints[level.waypointCount].type = "javelin";
|
||||
else if ( self AdsButtonPressed() )
|
||||
level.waypoints[level.waypointCount].type = "climb";
|
||||
else if ( self AttackButtonPressed() && self UseButtonPressed() )
|
||||
level.waypoints[level.waypointCount].type = "tube";
|
||||
else if ( self AttackButtonPressed() )
|
||||
level.waypoints[level.waypointCount].type = "grenade";
|
||||
else if ( self UseButtonPressed() )
|
||||
level.waypoints[level.waypointCount].type = "claymore";
|
||||
else
|
||||
level.waypoints[level.waypointCount].type = self getStance();
|
||||
|
||||
level.waypoints[level.waypointCount].angles = self getPlayerAngles();
|
||||
|
||||
level.waypoints[level.waypointCount].children = [];
|
||||
|
||||
if ( level.waypoints[level.waypointCount].type == "javelin" )
|
||||
{
|
||||
level.waypoints[level.waypointCount].jav_point = self.javelinTargetPoint;
|
||||
}
|
||||
|
||||
self iprintln( level.waypoints[level.waypointCount].type + " Waypoint " + level.waypointCount + " Added at " + pos );
|
||||
|
||||
if ( level.autoLink )
|
||||
{
|
||||
if ( level.wpToLink == -1 )
|
||||
level.wpToLink = level.waypointCount - 1;
|
||||
|
||||
level.waypointCount++;
|
||||
self LinkWaypoint( level.waypointCount - 1 );
|
||||
}
|
||||
else
|
||||
{
|
||||
level.waypointCount++;
|
||||
}
|
||||
}
|
||||
|
||||
DeleteAllWaypoints()
|
||||
{
|
||||
level.waypoints = [];
|
||||
level.waypointCount = 0;
|
||||
|
||||
self iprintln( "DelAllWps" );
|
||||
}
|
||||
|
||||
buildChildCountString ( wp )
|
||||
{
|
||||
if ( wp == -1 )
|
||||
return "";
|
||||
|
||||
wpstr = level.waypoints[wp].children.size + "";
|
||||
|
||||
return wpstr;
|
||||
}
|
||||
|
||||
buildChildString( wp )
|
||||
{
|
||||
if ( wp == -1 )
|
||||
return "";
|
||||
|
||||
wpstr = "";
|
||||
|
||||
for ( i = 0; i < level.waypoints[wp].children.size; i++ )
|
||||
{
|
||||
if ( i != 0 )
|
||||
wpstr = wpstr + "," + level.waypoints[wp].children[i];
|
||||
else
|
||||
wpstr = wpstr + level.waypoints[wp].children[i];
|
||||
}
|
||||
|
||||
return wpstr;
|
||||
}
|
||||
|
||||
buildTypeString( wp )
|
||||
{
|
||||
if ( wp == -1 )
|
||||
return "";
|
||||
|
||||
return level.waypoints[wp].type;
|
||||
}
|
||||
|
||||
destroyOnDeath( hud )
|
||||
{
|
||||
hud endon( "death" );
|
||||
self waittill_either( "death", "disconnect" );
|
||||
hud destroy();
|
||||
}
|
||||
|
||||
initHudElem( txt, xl, yl )
|
||||
{
|
||||
hud = NewClientHudElem( self );
|
||||
hud setText( txt );
|
||||
hud.alignX = "left";
|
||||
hud.alignY = "top";
|
||||
hud.horzAlign = "left";
|
||||
hud.vertAlign = "top";
|
||||
hud.x = xl;
|
||||
hud.y = yl;
|
||||
hud.foreground = true;
|
||||
hud.fontScale = 1;
|
||||
hud.font = "objective";
|
||||
hud.alpha = 1;
|
||||
hud.glow = 0;
|
||||
hud.glowColor = ( 0, 0, 0 );
|
||||
hud.glowAlpha = 1;
|
||||
hud.color = ( 1.0, 1.0, 1.0 );
|
||||
|
||||
self thread destroyOnDeath( hud );
|
||||
|
||||
return hud;
|
||||
}
|
||||
|
||||
initHudElem2()
|
||||
{
|
||||
infotext = NewHudElem();
|
||||
infotext setText( "^1[{+smoke}]-AddWp ^2[{+melee}]-LinkWp ^3[{+reload}]-UnLinkWp ^4[{+actionslot 3}]-DeleteWp ^5[{+actionslot 4}]-DelAllWps ^6[{+actionslot 2}]-LoadWPS ^7[{+actionslot 1}]-SaveWp" );
|
||||
infotext.alignX = "center";
|
||||
infotext.alignY = "bottom";
|
||||
infotext.horzAlign = "center";
|
||||
infotext.vertAlign = "bottom";
|
||||
infotext.x = -800;
|
||||
infotext.y = 25;
|
||||
infotext.foreground = true;
|
||||
infotext.fontScale = 1.35;
|
||||
infotext.font = "objective";
|
||||
infotext.alpha = 1;
|
||||
infotext.glow = 0;
|
||||
infotext.glowColor = ( 0, 0, 0 );
|
||||
infotext.glowAlpha = 1;
|
||||
infotext.color = ( 1.0, 1.0, 1.0 );
|
||||
|
||||
self thread destroyOnDeath( infotext );
|
||||
|
||||
return infotext;
|
||||
}
|
||||
|
||||
initHudElem3()
|
||||
{
|
||||
bar = level createServerBar( ( 0.5, 0.5, 0.5 ), 1000, 25 );
|
||||
bar.alignX = "center";
|
||||
bar.alignY = "bottom";
|
||||
bar.horzAlign = "center";
|
||||
bar.vertAlign = "bottom";
|
||||
bar.y = 30;
|
||||
bar.foreground = true;
|
||||
|
||||
self thread destroyOnDeath( bar );
|
||||
|
||||
return bar;
|
||||
}
|
||||
|
||||
initHudElem4()
|
||||
{
|
||||
OptionsBG = NewClientHudElem( self );
|
||||
OptionsBG.x = 100;
|
||||
OptionsBG.y = 2;
|
||||
OptionsBG.alignX = "left";
|
||||
OptionsBG.alignY = "top";
|
||||
OptionsBG.horzAlign = "left";
|
||||
OptionsBG.vertAlign = "top";
|
||||
OptionsBG setshader( "black", 200, 60 );
|
||||
OptionsBG.alpha = 0.4;
|
||||
|
||||
self thread destroyOnDeath( OptionsBG );
|
||||
|
||||
return OptionsBG;
|
||||
}
|
||||